Is it possible to show/stop YouTube and flash movies when hovering on/off a separate image? Currently using this for static images in a test build at: Www.tkm2.com/NEW_TKM_WWW2/ Example code appreciated.
You can accomplish this using ActionScript. If you have a progressive flv player for example, then you can have someone rollover the image/video and it will start playing the clip. You're probably looking to stop the clip on rollover, and this is still possible with a bit of tweaking.
Take a look at this, it's possible that it might work:
My_video.onRollOver = function(){
netStream.play("my.flv");
};
my_video.onRollOut = my_video.onReleaseOutside = function(){
netStream.close();
}
Take a look at this, it's possible that it might work:
My_video.onRollOver = function(){
netStream.play("my.flv");
};
my_video.onRollOut = my_video.onReleaseOutside = function(){
netStream.close();
}