It is now possible to have the autoplay feature enabled for one website and disabled on another. This is possible by editing the player code slightly for the website which you want the autoplay to be
DISABLED. This is typical myFlashStore player code;
<object type="application/x-shockwave-flash" height="385" width="610" data="
www.myflashstore.net/flash/soundstore.swf?user_id=63" allowscriptaccess="always">
<param name="movie" value="
www.myflashstore.net/flash/soundstore.swf?user_id=63" />
<param name="menu" value="false" />
<param name="wmode" value="transparent" />
<param name="allowscriptaccess" value="always" />
<param name="flashvars" value="0">
</object>
To disable autoplay, change where it says
<param name="flashvars" value="0"> to the following;
<param name="flashvars" value="autoplay=0">
It's as easy as that and you can also change it back anytime by changing
autoplay=0 back to
0.