Link to home
Start Free TrialLog in
Avatar of marglar
marglar

asked on

Need help with flash 8 actionsript using the tween class

Ok, just to be clear - I'm a complete neophyte with programming in general and actionscript specifically.

I have a simple graphic on my stage that I want to have fade in or out with actionscript.  I want to place actionscript in the timeline to control when I want this item to fade in  and when I want it to fade out.   Beyond that I'm clueless as to how to make that happen.

I found the script I've pasted below, which seems to do what I'm looking for - but it is controlled by a mouse rollover - not a specific timeline occurrence.

I'm hoping someone could help me to change this script (and tell me how to use it on the timeline) so that I can have my graphic fade in and out when I need it.

Thanks a million, in advance, for any and all help with this.

Here is the script I found:
//first import the class libraries
import mx.transitions.Tween;
import mx.transitions.easing.Regular;

//now initialize the tween object
myButton.alphaTween= new Tween(myButton, "_alpha", Regular.easeOut, 50, 50, .3, true);

function onRollOutHandler(){
    this.alphaTween.continueTo(50);
}

function onRollOverHandler(){
    this.alphaTween.continueTo(100);
}

myButton.onRollOver = onRollOverHandler;
myButton.onRollOut = onRollOutHandler;

Avatar of Swindle
Swindle
Flag of United States of America image

Being a beginner, why not let flash do the hard part for you?  You can create a new movie clip, add that graphic to it, extend the timeline a ways by adding a new keyframe, change the alpha setting on the graphic to where you want it, and tell flash to tween it for you.  Then instead of placing the graphic in your main timeline, place the movie clip in the main timeline (and give it a name) and you can reference it by doing something like MovieClipName.gotoAndPlay(1);  This way if you later decided to add more to the tween or add more effects to the graphic, you just edit the movieclip rather than having to edit your main timeline.
Avatar of marglar
marglar

ASKER

I think I understand what you are saying...

So, I create a movie clip with my graphic in it and extend it out, lets say 20 fames.
Then I could put a keyframe at the beginning, middle and end.  
The beginning keyframe would have a 0% alpha, the middle 100% and the end 0% again.  ...giving me the fade in and back out I'm looking for.

I'm not sure I understand the bit about MovieClipName.gotoAndPlay(1);
Lets say I name my movieclip  box_mc   so would I simply put in the timeline (at the point I want it to start..)   box_mc.gotoAndPlay(1);    ?   Is it really that simple or am I missing something?    

Does my movieclip actually have to be on the timeline somewhere or can it just exist in the library?

this is great, thanks for the help!
It's really that simple.  Create the new movie clip and put the graphic on frame 1.  Then go to frame 10 and add a keyframe.  Click on the image in frame 10 and change the alpha to 0%.  Add Stop(); to the actionscript in frame 10.  Now create another keyframe in frame 11.  The image will still be there, and it's alpha should still be 0%.  Add the actionscript Play(); to that frame.  Add a keyframe at 20, change the alpha on the image to 100% and add the actionscript Stop(); to that frame.   Then go to frame 10 and tell it do a motion tween.  Do the same thing on frame 20.  You're all set.     Now you can add that movie clip to your main timeline and name it "box_mc" as you said.    Now you can fade out by doing box_mc.gotoAndPlay(1); (which will make it play from frame 1 to 10)  and you can fade in by doing box_mc.gotoAndPlay(11); (which will make it play from frame 11 to 20).  

This is just an example, feel free to reverse the fade in/fade out by making frame 1 and 20 0% alpha and frames 10 and 11 100% alpha.  Flash is a very simple to use application once you learn your way around the interface.  Good luck, and if you have any more questions just ask!
Avatar of marglar

ASKER

Sorry, a bit more clarification...

In my movieclip example, I'd use a motion tween to do the fade, of course.

The bit I'm confused on is this:

So, I have a movie playing in the main timeline.  I want this graphic to fade in and out on top of that playing movie to obscure parts of it and then reveal them again.  (I'm fading in and out the transition between images, my graphic is the same color as the background so it appears that the images are fading in and out).

Are you saying that I can have my above described movieclip simply called from the timeline to play over the top of the rest of the playing main timeline?   Could you show me a simple example of that?
Avatar of marglar

ASKER

...hehehe sorry, we wrote our responses at the same time.

I'm confused about adding the movieclip to the main timeline.   How do I do that so that it doesn't show up until I want it to?

When I think of adding something to the timeline I think of dragging it to the stage in a particular frame...
ASKER CERTIFIED SOLUTION
Avatar of Swindle
Swindle
Flag of United States of America image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of marglar

ASKER

That did it Swindle!  

Thanks a million!  It works like a champ!  This not only taught me some cool stuff about flash, but also will save me tons of work and time!

Thanks again!
No problem, I'm glad I was able to help!