Results 1 to 4 of 4

Thread: Flash script mousein/mouseout

  1. #1
    Join Date
    Dec 2008
    Posts
    35
    Thanks
    3
    Thanked 1 Time in 1 Post

    Default Flash script mousein/mouseout

    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

  2. #2
    Join Date
    Mar 2007
    Location
    Currently: New York/Philadelphia
    Posts
    2,735
    Thanks
    3
    Thanked 519 Times in 507 Posts

    Default

    Do you want to use a tweening library or timeline based motion tweens?

  3. The Following User Says Thank You to Medyman For This Useful Post:

    saynogo9999 (02-08-2009)

  4. #3
    Join Date
    Dec 2008
    Posts
    35
    Thanks
    3
    Thanked 1 Time in 1 Post

    Default

    I would like to use the timeline based motion tween.

  5. #4
    Join Date
    Dec 2008
    Posts
    35
    Thanks
    3
    Thanked 1 Time in 1 Post

    Default

    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

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •