How can i make an mousein play a tween in flash?
And make it play another tween when mouseout..
Help please! By the way you should that i'am using
Adobe Flash CS4 if it's doing any difference..
How can i make an mousein play a tween in flash?
And make it play another tween when mouseout..
Help please! By the way you should that i'am using
Adobe Flash CS4 if it's doing any difference..
Last edited by Snookerman; 04-28-2009 at 04:30 PM. Reason: removed image signature
Do you want to use a tweening library or timeline based motion tweens?
saynogo9999 (02-08-2009)
I would like to use the timeline based motion tween.
Nevermind, i've found a better and more simple way to do it.
Jquery!!!
Code:$(document).ready(function(){ $("span").fadeTo("slow", 0.5); $("span").hover(function(){ $(this).fadeTo("slow", 1.0); },function(){ $(this).fadeTo("slow", 0.5); }); });
Last edited by Snookerman; 04-28-2009 at 04:30 PM. Reason: removed image signature
Bookmarks