Name is required.
Email address is required.
Invalid email address
Answer is required.
Exceeding max length of 5KB

How To Add Autoplay


How do I add code ...How do I add code to Autoplay the following:

<object
classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"
codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"
height="360" width="480"><param name="flashvars"
value="file=http://www.mydftv.com/test.flv"><param
name="flashvars"
value="file=http://www.mydftv.com/test.flv&amp;autostart=true"> <param
name="movie"
value="http://walkernewsdownload.googlepages.com/mediaplayer.swf">
<embed
src="http://walkernewsdownload.googlepages.com/mediaplayer.swf"
type="application/x-shockwave-flash"
pluginspage="http://www.macromedia.com/go/getflashplayer"
flashvars="file=http://www.mydftv.com/test.flv" height="360"
width="480"></object>

75 Community Answers

JW Player

User  
-2 rated :

Add *&autostart=true* to your flashvars in two places (you already have it in one place).

JW Player

User  
-1 rated :

Thanks but where?

JW Player

User  
0 rated :

wow... just figured it out.

Thanks!

JW Player

User  
0 rated :

(how do i autoplay this code) <p style="visibility:visible"><object type="application/x-shockwave-flash" allowScriptAccess="never" allowNetworking="internal" height="350" width="175" style="width:175px;height:350px" align="middle" data="http://embed.snapvine.com/flash/starboard.swf?url=http://www.snapvine.com&urn=/api%2Fget_voice_drop%2F93c9209a747111ddb81c0030485b0e2a%3Fview_type%3Dtp%26inst_sz%3Dtp%26inst_ts%3D080827125808%26inst_rf%3Dwww.snapvine.com%26inst_fl%3Dstandard&site=ms&type=photo">
<param name="allowScriptAccess" value="never" />
<param name="allowNetworking" value="internal" />
<param name="movie" value="http://embed.snapvine.com/flash/starboard.swf?url=http://www.snapvine.com&urn=/api%2Fget_voice_drop%2F93c9209a747111ddb81c0030485b0e2a%3Fview_type%3Dtp%26inst_sz%3Dtp%26inst_ts%3D080827125808%26inst_rf%3Dwww.snapvine.com%26inst_fl%3Dstandard&site=ms&type=photo" />
<param name="quality" value="high" />
<param name="scale" value="noscale" />
<param name="salign" value="l" />
<param name="wmode" value="transparent" />
</object>..<br style="font-size:0;" /><a href="http://www.msplinks.com/MDFodHRwOi8vd3d3LnNuYXB2aW5lLmNvbS92b2ljZWRyb3A/c3Z0YV9kcm9wPTEmcmVmPV9McE9zRW40RWQyTURBQXdTRnNPS2cmaW5zdF9zej10cCZpbnN0X3RzPTA4MDgyNzEyNTgwOCZpbnN0X3JmPXd3dy5zbmFwdmluZS5jb20maW5zdF9mbD1zdGFuZGFyZA==" target="_blank">Make on Snapvine</a> | <a href="http://www.msplinks.com/MDFodHRwOi8vd3d3LnNuYXB2aW5lLmNvbS92b2ljZWRyb3AvZ2V0X2NvZGVzLzkzYzkyMDlhNzQ3MTExZGRiODFjMDAzMDQ4NWIwZTJhP3NpdGU9bXMmdmlld190eXBlPXRwJnN2dGFfZHJvcD0x" target="_blank">Copy This</a></p

JW Player

User  
0 rated :

disregard

JW Player

User  
0 rated :

Where Does This Code Go?>>>>>>>&autostart=true

Can Some1 Give An Example Please

JW Player

User  
0 rated :

hi, i tried the code, but i can't get it to work. can anyone please help me with it:

<script language="JavaScript" src="audio/audio-player.js"></script>
<object type="application/x-shockwave-flash" data="audio/player.swf" id="audioplayer1" width="290" height="24">
<param name="movie" value="audio/player.swf">
<param name="FlashVars" value="playerID=1&soundFile=audio/dirtysouth/anyone.mp3">
<param name="quality" value="high">
<param name="menu" value="false">
<param name="wmode" value="transparent">
</object>

this is my code.
i tried to put the autostart=true in te flashvars code, but it won't work. maybe i'm putting it on the wrong place..

JW Player

User  
0 rated :

How can I add autoplay to this embedd code?

<object width="400" height="310">
<param name="movie" value="http://current.com/e/89596851/en_US"></param><param name="wmode" value="transparent"></param><param name="allowfullscreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://current.com/e/89596851/en_US" type="application/x-shockwave-flash" width="400" height="310" wmode="transparent" allowfullscreen="true" allowscriptaccess="always"></embed></object>

JW Player

User  
0 rated :

Anyone able to acheive this?

JW Player

User  
0 rated :

Sorry about above post. But cant anyone achieve my autoplay option?

JW Player

User  
0 rated :

This website sucks. Close it down

JW Player

User  
0 rated :

YAY! Thanks KLink! :]

You guys just add &autostart=true to the website in your code, if you guys see &autostart=false, just change the false to true! : ]

JW Player

User  
0 rated :

(how can i auto start this, please help)

startstop_pb.enabled = false;

// set starting volume level.
vol_slide.value = 70;

// event handler for volume control.
vol_slide.changeHandler = onVolChange;



connect_pb.onRelease = function(){
if(this.label == "Play"){
status_txt.text += "Connecting..." + newline;
this.label = "Disconnect";
please_standby.gotoAndStop(2); // show
nc.connect("rtmp://flashmedia.umassd.edu/livewumd");
} else {
status_txt.text += "Disconnecting." + newline;
this.label = "Play";
nc.close();
audio_only_notice.gotoAndStop(1);
}
}

nc = new NetConnection();
nc.onStatus = function(info) {
status_txt.text += "NC.onStatus> info.code: " + info.code + newline;
if (info.code == "NetConnection.Connect.Success") {
status_txt.text = "Connected to " + this.uri + newline;
startstop_pb.enabled = true;
createNetStream(this);
}

}

createNetStream = function(nc){
ns = new NetStream(nc);
ns.onStatus = function(info) {
status_txt.text += "NS.onStatus> info.code: " + info.code + newline;

if(info.code == "NetStream.Play.UnpublishNotify") {
// if the broadcaster stopped the stream
please_standby.gotoAndStop(2); // show
audio_only_notice.gotoAndStop(1); // hide the audio notice
}
if(info.code == "NetStream.Play.PublishNotify") {
// if the broadcaster restarted the stream
please_standby.gotoAndStop(1); // hide
audio_only_notice.gotoAndStop(2); // show the audio notice
}

}
myvid.attachVideo(ns);
live_sound = new Sound();
live_sound.attachSound(nc);
live_sound.setVolume(vol_slide.value);
ns.play("wdd_umd_live", -1);
//ns.play(streamname_txt.text, -1)
audio_only_notice.gotoAndStop(2); // show
please_standby.gotoAndStop(1); // hide
}


function onVolChange() {
live_sound.setVolume(vol_slide.value);
}


JW Player

User  
0 rated :

How could i made,that this:

<embed src="http://media.entertonement.com/embed/PlayerText.swf" id="1_1dc0cc44_437f_11de_8f3e_0015c5f4d4ea" name="PlayerText" flashvars="auto_play=0&id=1_1dc0cc44_437f_11de_8f3e_0015c5f4d4ea&meta_url=http%3A%2F%2Fwww.entertonement.com%2Fclips%2Fyjybzwwkqf.query%3Fimage_size%3Dflash" width="304" height="30" style="float: left; margin-right: 10px;" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" quality="high" bgcolor="#ffffff" wmode="transparent" align="middle" allowScriptAccess="sameDomain" allowFullScreen="false"></embed><a href="http://www.entertonement.com/clips/yjybzwwkqf--Wolf-Howl"><img alt="Blank" border="0" height="0" src="http://www.entertonement.com/widgets/img/clip/yjybzwwkqf/1/1_1dc0cc44_437f_11de_8f3e_0015c5f4d4ea/blank.gif" style="visibility: hidden; width: 0px; height: 0px; margin:0; padding:0; float:right" width="0" /></a>

Start from itself when i go on the Page where it placed?
(Im a German so sorry for mistakes and i hope you understand what i mean...)

Could anyone copy it and past it in the form that i would like,so that i only need to copy it too?
Thanks.

JW Player

User  
0 rated :

@Zeren,

This doesn't seem to be a JW Player that you are trying to use.

You could try: flashvars="auto_play=1

JW Player

User  
0 rated :

Can someone fix it to autoplay?

<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,0,0" width="300" height="450" id="videoplayer.prt1" align="middle"><param name="allowScriptAccess" value="sameDomain" /><param name="allowFullScreen" value="true" /><param name="movie" value="http://thehorrors.co.uk/albumwidget/thehorrorsembedplayer.swf" /><param name="quality" value="high" /><param name="bgcolor" value="#231f20" /> <embed src="http://thehorrors.co.uk/albumwidget/thehorrorsembedplayer.swf" quality="high" bgcolor="#231f20" width="300" height="450" name="videoplayer.prt1" align="middle" allowScriptAccess="sameDomain" allowFullScreen="true" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" /></object>

JW Player

User  
0 rated :

Can anyone help me with the question above? I would really appreciate it.

JW Player

User  
0 rated :

If you are using the AS3 video player tutorial which i think you are, then do this:

In the ActionScript code of the fla file, go to the very last line in the script, where it says: initVideoPlayer():

Put this line of code in after it
playClicked(null);

JW Player

User  
0 rated :

worked for me with &autostart=true thanks

JW Player

User  
0 rated :

This worked for me

<object id='player' classid='clsid:D27CDB6E-AE6D-11cf-96B8-444553540000' name='player' width='640' height='520'>
<param name='movie' value='player.swf' /><param name='allowfullscreen' value='true' /><param name='allowscriptaccess' value='always' /><param name='flashvars' value='filevideo.flv*&autostart=true*' />
<embed type='application/x-shockwave-flash' id='player2' name='player2' src='media/player.swf' width='640' height='520' allowscriptaccess='always' allowfullscreen='true' flashvars='file=video.flv*&autostart=true*'/>
</object>

JW Player

User  
0 rated :

The (&) ampersand you have to put it in html
&amp;autostart=true

JW Player

User  
0 rated :

<div align="center"> <style type="text/css"> @import url(http://static.kohit.net/KOmp3Player/embed.css); </style> <table cellpadding="0" cellspacing="0"> <TR> <TD WIDTH="16" style="background-image: url(http://static.kohit.net/KOmp3Player/left-dkrow3.gif);background-repeat: repeat-y;border: 0;margin:0;"><IMG style="padding:0;border:0;" SRC="http://static.kohit.net/KOmp3Player/corner-topleft2.gif"/></TD> <TD style="background-image: url(http://static.kohit.net/KOmp3Player/bkgnd-top2.gif);background-repeat: repeat-x;font-family: Arial, Helvetica, sans-serif;font-size: 11px;vertical-align: bottom;padding: 0;border: 0;margin:0;">Lady Gaga - Bad Romance</TD> <TD WIDTH="16" style="background-image: url(http://static.kohit.net/KOmp3Player/right-dkrow3.gif);background-repeat: repeat;border: 0; margin:0;"><IMG style="padding:0;border:0;" SRC="http://static.kohit.net/KOmp3Player/corner-topright2.gif"/></TD> </tr> <TR VALIGN="MIDDLE"> <TD WIDTH="16" style="width: 16px;background-image:url(http://static.kohit.net/KOmp3Player/left-ltrow2.gif);"/> <TD style="background-image: url(http://static.kohit.net/KOmp3Player/light2.gif);background-repeat: repeat;font-family: Arial, Helvetica, sans-serif;font-size: 11px;vertical-align: bottom;"> <embed class="beeplayer" wmode="transparent" style="height:24px;width:290px;" src="http://static.kohit.net/KOmp3Player/MP3-player.swf" quality="high" bgcolor="#ffffff" width="290" height="24" align="middle" allowScriptAccess="sameDomain" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" flashvars="playerID=1&bg=0xCDDFF3&leftbg=0x357DCE&lefticon=0xF2F2F2&rightbg=0x64F051&rightbghover=0x1BAD07&righticon=0xF2F2F2&righticonhover=0xFFFFFF&text=0x357DCE&slider=0x357DCE&track=0xFFFFFF&border=0xFFFFFF&loader=0xAF2910&soundFile=http%3A%2F%2Fmblog%2Ecom%2Emy%2Fphotos%2F86%2F7b%2F01fb41ac0deb%2Emp3"></embed> <a href="http://www.kohit.net/" title="free mp3 downloads"><img style="padding:0;border:0;vertical-align:bottom" src="http://static.kohit.net/KOmp3Player/logo_small.jpg"/></a></td> <TD WIDTH="16" style="width: 16px;background-image:url(http://static.kohit.net/KOmp3Player/right-ltrow2.gif);"/> </TR> <TR> <TD WIDTH="16"><IMG style="padding:0;border:0;" SRC="http://static.kohit.net/KOmp3Player/corner-bottomleft2.gif"></TD> <TD style="background-image: url(http://static.kohit.net/KOmp3Player/bkgnd-bottom2.gif);background-repeat: repeat-x;font-family: Arial, Helvetica, sans-serif;font-size: 11px;vertical-align: top;text-align: center;padding:0;border: 0;margin:0;">Found at <a href="http://Lady-Gaga-Bad-Romance-mp3-download.kohit.net/_/887910" title="Lady Gaga Bad Romance mp3 download">Bad Romance</a> on <a href="http://www.kohit.net/" title="free music">KOhit.net</a></TD> <TD WIDTH="16"><IMG style="padding:0;border:0;" SRC="http://static.kohit.net/KOmp3Player/corner-bottomright2.gif"></TD> </TR> </table> </div>


can somebody put &autostart=true in this?

Ethan Feldman

JW Player Support Agent  
0 rated :

All you need to do is add &autostart=true to the end of your flashvars line.

JW Player

User  
0 rated :

How do I add autostart to this code?

<script type="text/javascript"
src="http://web.me.com/bgflix/flash/swfobject.js"></script>
<div id="player">This text will be replaced</div>
<script type="text/javascript">
var so = new SWFObject('http://web.me.com/bgflix/flash/player.swf','mpl','576','384','9');
so.addParam('allowscriptaccess','always');
so.addParam('allowfullscreen','true');
so.addParam('flashvars','&file=http://web.me.com/bgflix/flash/asif1.flv&image=http://web.me.com/bgflix/flash/asif1.jpg&stretching=none');
so.write('player');
</script>

Ethan Feldman

JW Player Support Agent  
0 rated :

Make it:

How do I add autostart to this code?

<script type="text/javascript" src="http://web.me.com/bgflix/flash/swfobject.js"></script><div id="player">This text will be replaced</div> <script type="text/javascript"> var so = new SWFObject('http://web.me.com/bgflix/flash/player.swf','mpl','576','384','9'); so.addParam('allowscriptaccess','always'); so.addParam('allowfullscreen','true'); so.addParam('flashvars','&file=http://web.me.com/bgflix/flash/asif1.flv&image=http://web.me.com/bgflix/flash/asif1.jpg&stretching=none&autostart=true'); so.write('player'); </script>

JW Player

User  
0 rated :

Brilliant, thank you. Two more questions if you don't mind

Firstly, how do I change the size of the players screen?
My .flv file frame size is 576x384

Secondly, just as each page loads, I get a white flash on the player screen, then the load clock, then the file starts to play. How do I lose the white frame, or change it to a black frame?

Thank you very much for your help

JW Player

User  
0 rated :

I haven't seen any sets of code that are similar to this one, which i downloaded yesterday from longtail. I'd also like to get this to autoplay:

<script type='text/javascript' src='swfobject.js'></script>
<div id='mediaspace'>Video Loading</div>

<script type='text/javascript'>
var so = new SWFObject('player.swf','mpl','320','200','9');
so.addParam('allowfullscreen','true');
so.addParam('allowscriptaccess','always');
so.addParam('wmode','opaque');
so.addVariable('file','MyVideo.flv');
so.addVariable('image','videostill.jpg');
so.addVariable('backcolor','FFFFFF');
so.write('mediaspace');
</script>

JW Player

User  
0 rated :

for those that also are using this type of code structure above, i solved the autoplay problem like this by removing the lines that link to MyVideo.flv and the image, and replacing those lines with this line:

so.addParam('flashvars','&file=MyVideo.flv&image=videostill.jpg&stretching=none&autostart=true');

Here is the full code:

<script type='text/javascript' src='swfobject.js'></script>
<div id='mediaspace'>Video Loading</div>

<script type='text/javascript'>
var so = new SWFObject('player.swf','mpl','320','200','9');
so.addParam('allowfullscreen','true');
so.addParam('allowscriptaccess','always');
so.addParam('wmode','opaque');
so.addParam('flashvars','&file=MyVideo.flv&image=videostill.jpg&stretching=none&autostart=true');
so.addVariable('backcolor','FFFFFF');
so.write('mediaspace');

Ethan Feldman

JW Player Support Agent  
0 rated :

@Brian:

This line controls the size – var so = new SWFObject(‘http://web.me.com/bgflix/flash/player.swf’,‘mpl’,‘576’,‘384’,‘9’);

And if you set the screencolor flashvar to 000000 it will make it black.

@pprusha:

Add this line under your backcolor line to make it autoplay:

so.addVariable(‘autostart’,‘true’);

JW Player

User  
0 rated :

the player i'm using is similar to johns player

Ethan Feldman

JW Player Support Agent  
0 rated :

Sorry, that doesn’t really help me. If you put up a page somewhere to take a look at, it would be greatly appreciated, thanks.

JW Player

User  
0 rated :

i can't it wont work on blogger.

JW Player

User  
0 rated :

go here to look at the player
www.Djvisitjustin.blogspot.com

Ethan Feldman

JW Player Support Agent  
0 rated :

This appears to be the Bee Mp3 Player. I have not used this player before, and do not know if an autostart option is even possible with this player, or what that variable would be. This forum is for the JW Player for Flash.

JW Player

User  
0 rated :

okay just thought you could help me

Ethan Feldman

JW Player Support Agent  
0 rated :

Sorry, I don’t know this player.

JW Player

User  
0 rated :

Hello, Can someone advise on how to add the auto play to the following code. I've tried adding it as an s1Param, and s1Variable (no change), and into the var vars=(player does not appear):

var myClip = '<?= $clip ?>';
var myCaption = 'http://media.pearsoncmg.com/ph/' + '<?= $xmlName ?>';
var vars = 'streamer=rtmp://pandc.flashstream.pearsoncmg.com:80/ondemand/flashstream/&file='+myClip+'&captions.file='+myCaption+'&plugins=captions-1';


s1.addParam('allowfullscreen','true');
s1.addParam('allowscriptaccess','always');
s1.addParam('wmode','opaque');
s1.addParam('flashvars', vars);
s1.write('player1');
s1.addVariable('captions', caption);
s1.addVariable('usecaptions', 'true');

Ethan Feldman

JW Player Support Agent  
0 rated :

@Dana – is this the JW player?

If so, it would be:

var vars = ‘autostart=true&streamer=rtmp://pandc.flashstream.pearsoncmg.com:80/ondemand/flashstream/&file=’+myClip+’&captions.file=‘myCaption’&plugins=captions-1’;

JW Player

User  
0 rated :

can someone help me autostart this code?

Cheers!

<embed type="application/x-shockwave-flash" wmode="transparent" src="http://www.google.com/reader/ui/3523697345-audio-player.swf?audioUrl=http://sites.google.com/site/jmarthost/home/Output_Final.mp3? attredirects=0&d=1" height="27" width="320"></embed>

Ethan Feldman

JW Player Support Agent  
0 rated :

This is an mp3 file from google reader. This is a forum about the JW Player. I would ask elsewhere.

JW Player

User  
0 rated :

I have a playlist which has autostart, now I want that after one file was played the next file will start to playautomatically.

Which code I have to add to my player?

Ethan Feldman

JW Player Support Agent  
0 rated :

@Bao – Please provide a link as well as the code. Thanks.

JW Player

User  
0 rated :

Since I can put the autoplay to this player?
I wait could help me
Thank you

bc.. <object type="application/x-shockwave-flash"

data="player.swf" width="200" height="25">
<param name="movie" value="player.swf" />
<param name="bgcolor" value="#c9b3d9" />
<param name="FlashVars" value="mp3=reat.mp3&bgcolor=&loadingcolor=9964bf&buttoncolor=9e7fb5&slidercolor=ad7cd1" />
</object>

JW Player

User  
0 rated :

Add it to the code and it does not work

Ethan Feldman

JW Player Support Agent  
0 rated :

Can you provide a link?

JW Player

User  
0 rated :

Why will this not autoplay?

<object width="754" height="500"*>
<param name="movie" value="resources/Videos/AS2_intro.swf"></param>
<param name="wmode" value="transparent"></param>
<param name="quality" value="high"></param>
<param name="autoplay" value="true"></param>
<embed src="resources/Videos/AS2_intro.swf" autostart="true" quality="high" wmode="transparent" width="754" height="500"></embed>
<object>

Thanks,
Rob

JW Player

User  
0 rated :

Hi Robert,

The parameter has actually been changed to autostart. The player no longer uses autoplay.

Thanks.

JW Player

User  
0 rated :

Hi LongTail
How to enable autoplay to this?

<div style="width: 468px"><object width="468" height="170"><param name="movie" value="http://music.gmember.com/player/html_player_music/swf/player_music_adplus.swf?1004076401" /><param name="allowScriptAccess" value="never" /><param name="wmode" value="transparent" /><param name="FlashVars" value="songid=1004076401&albumid=6221" /><embed allowScriptAccess="never" src="http://music.gmember.com/player/html_player_music/swf/player_music_adplus.swf?1004076401" type="application/x-shockwave-flash" width="468" height="170" wmode="transparent" flashvars="songid=1004076401&albumid=6221"></embed></object></div><br><a href="http://izeemusic.gmember.com" title="??????????????? ??? izeemusic">??????????????? ??? izeemusic</a>

Thanks

Ethan Feldman

JW Player Support Agent  
0 rated :

Ter – This doesn’t appear to be the JW Player, so I don’t know what the exactly variable is, so I can’t tell you.

JW Player

User  
0 rated :

never mind.
I found another way now.
Thanks.

Ethan Feldman

JW Player Support Agent  
0 rated :

Np.

JW Player

User  
0 rated :

<p class="audioplayer_container"><object type="application/x-shockwave-flash" name="audioplayer_2" style="outline-style: none; outline-width: initial; outline-color: initial; visibility: visible; " data="http://imflashy.com/wp-content/plugins/audio-player/assets/player.swf?ver=20080825040617" width="290" height="24" id="audioplayer_2"><param name="bgcolor" value="#FFFFFF"><param name="wmode" value="transparent"><param name="menu" value="false"><param name="flashvars" value="animation=yes&encode=yes&initialvolume=60&remaining=no&noinfo=yes&buffer=5&checkpolicy=no&rtl=no&bg=f7f7f7&text=333333&leftbg=e5e5e5&lefticon=171717&volslider=666666&voltrack=FFFFFF&rightbg=e5e5e5&rightbghover=d9d9d9&righticon=171717&righticonhover=FFFFFF&track=FFFFFF&loader=4D5055&border=CCCCCC&tracker=ebebeb&skip=666666&soundFile=aHR0cDovL2ltZmxhc2h5LmNvbS93cC1jb250ZW50L3VwbG9hZHMvMjAwOS8xMC9saWwtd2F5bmUtc3dhZy1zdXJmaW4ubXAzA&playerID=audioplayer_2"></object><script type="text/javascript">AudioPlayer.embed("audioplayer_2", {soundFile:"aHR0cDovL2ltZmxhc2h5LmNvbS93cC1jb250ZW50L3VwbG9hZHMvMjAwOS8xMC9saWwtd2F5bmUtc3dhZy1zdXJmaW4ubXAzA"});</script></p>


how do put auto play in that code

Ethan Feldman

JW Player Support Agent  
0 rated :

<p class="audioplayer_container"><object type="application/x-shockwave-flash" name="audioplayer_2" style="outline-style: none; outline-width: initial; outline-color: initial; visibility: visible; " data="http://imflashy.com/wp-content/plugins/audio-player/assets/player.swf?ver=20080825040617" width="290" height="24" id="audioplayer_2"><param name="bgcolor" value="#FFFFFF"><param name="wmode" value="transparent"><param name="menu" value="false"><param name="flashvars" value="*autostart=true&*animation=yes&encode=yes&initialvolume=60&remaining=no&noinfo=yes&buffer=5&checkpolicy=no&rtl=no&bg=f7f7f7&text=333333&leftbg=e5e5e5&lefticon=171717&volslider=666666&voltrack=FFFFFF&rightbg=e5e5e5&rightbghover=d9d9d9&righticon=171717&righticonhover=FFFFFF&track=FFFFFF&loader=4D5055&border=CCCCCC&tracker=ebebeb&skip=666666&soundFile=aHR0cDovL2ltZmxhc2h5LmNvbS93cC1jb250ZW50L3VwbG9hZHMvMjAwOS8xMC9saWwtd2F5bmUtc3dhZy1zdXJmaW4ubXAzA&playerID=audioplayer_2"></object><script type="text/javascript">AudioPlayer.embed("audioplayer_2", {soundFile:"aHR0cDovL2ltZmxhc2h5LmNvbS93cC1jb250ZW50L3VwbG9hZHMvMjAwOS8xMC9saWwtd2F5bmUtc3dhZy1zdXJmaW4ubXAzA"});</script></p>

JW Player

User  
0 rated :

<embed src="http://www.boxstr.com/templates/default2/images/icons/player.swf" width="200" height="180" allowscriptaccess="always" allowfullscreen="true" flashvars= height=180&width=200&file=http://boxstr.com/files/4345299_gfvat/Ashley%20Tisdale-Last%20Christmas.mp3&image=http://boxstr.com/templates/default2/images/icons/boxstrmusic.gif&backcolor=0x112200&frontcolor=0xffffff&lightcolor=0x88BB00&searchb r=false&autostart=true" />

JW Player

User  
0 rated :

<param name="FlashVars" value="playerID=1&soundFile=audio/dirtysouth/anyone.mp3&autostart=true">

JW Player

User  
0 rated :

<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" height="360" width="640">
<param name="allowScriptAccess" value="never" />
<param name="allowNetworking" value="internal" />
<param name="movie" value="http://www.joost.com/embed/08200eh" />
<param name="wmode" value="transparent" />
<embed type="application/x-shockwave-flash" allowScriptAccess="never" allowNetworking="internal" src="http://www.joost.com/embed/08200eh" height="360" width="640" wmode="transparent" />
</object>

How do you autoplay this one?

Ethan Feldman

JW Player Support Agent  
0 rated :

<object type="application/x-shockwave-flash"

data="player.swf" width="200" height="25">
<param name="movie" value="player.swf" />
<param name="bgcolor" value="#c9b3d9" />
<param name="FlashVars" value="mp3=reat.mp3&bgcolor=&loadingcolor=9964bf&buttoncolor=9e7fb5&slidercolor=ad7cd1*&autostart=true*" />
</object> 

JW Player

User  
0 rated :

I can't seem to get this to autoplay - It's just an mp3:

<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<script type="text/javascript" src="../js/swfobject.js"></script>
<link rel="stylesheet" href="../js/styles.css" type="text/css">
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
</head>
<body>

<div class="bgBott2">

<p><br />
<object type="application/x-shockwave-flash" width="400" height="26"
data="xspf_player_slim.swf?playlist_url=playlist.xspf">
<param name="movie"
value="xspf_player_slim.swf?playlist_url=playlist.xspf" />
<embed src="xspf_player_slim.swf?playlist_url=playlist.xspf" width="400" height="26"></embed>
</object>

</p>
<p><img src="http://noisebuffet.com/musicplayer/sound_waves_animated.gif" width="288" height="288"></p>
</div>
<div class="textV2">
<div class="textV6">*Full Service Audio Production for moving pictures & interactive media*</div>
</div>
</body>
</html>

Ethan Feldman

JW Player Support Agent  
0 rated :

Change:

xspf_player_slim.swf?playlist_url=playlist.xspf

To:

xspf_player_slim.swf?playlist_url=playlist.xspf&autostart=true

JW Player

User  
0 rated :

How do i auto play this script?

<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,19,0" width="477" height="254">
<param name="movie" value="intro.swf" />
<param name="quality" value="high" />
<embed src="intro.swf" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="477" height="254"></embed>
</object>

someone please help

Ethan Feldman

JW Player Support Agent  
0 rated :

I believe after height=“254” you need to add autostart=“true”

JW Player

User  
0 rated :

Ethan this doesnt work, any other suggestions?

JW Player

User  
0 rated :

can you put the code in and ill just copy and paste it in

im new to all this code

thanks ethan

Ethan Feldman

JW Player Support Agent  
0 rated :

Make it:

<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,19,0" width="477" height="254">
<param name="movie" value="intro.swf" />
<param name="quality" value="high" />
<param name="autoplay" value="true" />
<embed src="intro.swf" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="477" height="254" autoplay="true"></embed>
</object>

JW Player

User  
0 rated :

How to autoplay this? :

<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" height="460" width="350" align="middle">
<param name="allowScriptAccess" value="never" />
<param name="allowNetworking" value="internal" />
<param name="movie" value="http://farm.sproutbuilder.com/load/sQDmVbFoMLl50rd7.swf" />
<param name="wmode" value="transparent" />
<param name="quality" value="best" />
<embed type="application/x-shockwave-flash" allowScriptAccess="never" allowNetworking="internal" src="http://farm.sproutbuilder.com/load/sQDmVbFoMLl50rd7.swf" height="460" width="350" align="middle" wmode="transparent" quality="best" />
</object>

I tried every ways and nothing..

Ethan Feldman

JW Player Support Agent  
0 rated :

I believe after width=“350” you need to add autostart=“true”

JW Player

User  
0 rated :

PLEASE, SOME ONE HELP ME OUT HERE, HOW DO I ADD AUTO PLAY TO THIS, IT FEELS LIKE I'VE TRIED EVERYTHING,


<object type="application/x-shockwave-flash" classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,0,0" width="350" height="460"><param name="wmode" value="transparent"/><param name="align" value="middle"/><param name="allowFullScreen" value="true"/><param name="allowScriptAccess" value="always"/><param name="quality" value="best"/><param name="movie" value="http://farm.sproutbuilder.com/load/dACtGOukMmfH6uVI.swf"/><embed type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" src="http://farm.sproutbuilder.com/load/dACtGOukMmfH6uVI.swf" width="350" height="460" wmode="transparent" align="middle" allowFullScreen="true" allowScriptAccess="always" quality="best"></embed></object>

Ethan Feldman

JW Player Support Agent  
0 rated :

I believe after width=“350” you need to add autostart=“true”

JW Player

User  
0 rated :

how do i auto play this?

bc.. <div><embed class="beeplayer" wmode="transparent" style="height:24px;width:290px;" src="http://beemp3.com/player/player.swf" quality="high"

bgcolor="#ff6600" width="90" height="24" align="middle" allowScriptAccess="sameDomain" type="application/x-shockwave-flash"

pluginspage="http://www.macromedia.com/go/getflashplayer"

flashvars="playerID=1&bg=0x000000&leftbg=0x000000&lefticon=0xFF6600&rightbg=0x000000&rightbghover=0xFF6600&righticon=0xFF6600&rig

hticonhover=0x000000&text=0xFF6600&slider=0xFF6600&track=0x000000&border=0xFFFFFF&loader=0xFF6600&soundFile=http://www.hotnewhiph

op.com/stream/song/1276627702_trey_songz___take_you_home___hotnewhiphop_com.mp3 ,

http://download66.mediafire.com/z9essdw9ic5g/uqdicnwmx2w/08-kevin_rudolf-spit_in_your_face_%28feat._lil_wayne%

29.mp3,http://www.hotnewhiphop.com/stream/song/1275957232_eminem_feat_lil_wayne___no_love___hotnewhiphop_com.mp3" e"></embed>
<p>

Ethan Feldman

JW Player Support Agent  
0 rated :

Is this code for the JW Player? If so, after hotnewhiphop_com.mp3, just add &autostart=true

JW Player

User  
0 rated :

it still doesn't auto-play after that...
i've tried everything!

Ethan Feldman

JW Player Support Agent  
0 rated :

Is this code for the JW Player? Can you provide a link to where you are running this?

JW Player

User  
0 rated :

no its not

JW Player

User  
0 rated :

if you paste the code in notepad then save it as an html page.

Ethan Feldman

JW Player Support Agent  
0 rated :

I don’t know what player this is, so I am not sure what variable for this player would turn autostart on, as this is a forum for the JW Player for Flash.

This question has received the maximum number of answers.