Disable autoplay in BB codes?

sweetpotato

Active member
Please help me to disable autoplay for bellowing BB Codes:
Code:
<embed type="application/x-shockwave-flash" src="http://mp3.zing.vn/embed/bai-hat/{$id}" width="430" height="77" bgcolor="#f7f7f7" quality="high" scale="scale" allowfullscreen="true" allowscriptaccess="never" salign="tl" wmode="opaque" ></embed>
I have tried to add
Code:
<param name="flashvars" value="autostart=false" />
But it does not work.
Thanks,
 
Try this:

Rich (BB code):
<embed autoplay="false" type="application/x-shockwave-flash" src="http://mp3.zing.vn/embed/bai-hat/{$id}" width="430" height="77" bgcolor="#f7f7f7" quality="high" scale="scale" allowfullscreen="true" allowscriptaccess="never" salign="tl" wmode="opaque" ></embed>
 
Top Bottom