View Full Version : Flash script mousein/mouseout
saynogo9999
02-08-2009, 12:01 AM
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..
Medyman
02-08-2009, 02:40 AM
Do you want to use a tweening library or timeline based motion tweens?
saynogo9999
02-08-2009, 11:46 AM
I would like to use the timeline based motion tween.
saynogo9999
02-08-2009, 06:09 PM
Nevermind, i've found a better and more simple way to do it.
Jquery!!!
$(document).ready(function(){
$("span").fadeTo("slow", 0.5);
$("span").hover(function(){
$(this).fadeTo("slow", 1.0);
},function(){
$(this).fadeTo("slow", 0.5);
});
});
Powered by vBulletin® Version 4.2.2 Copyright © 2021 vBulletin Solutions, Inc. All rights reserved.