Erick

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.

Asked by Erick 2 years ago flash javascript hover movie


Pablo G
0
 
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();
}

by Pablo G 2 years ago

Answer this question

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.

0 errors found:

 
0