[[I'm quite new to Flash]]
I'm working with a Flash (CS5) presentation, so I have a "Next Slide" button on my app. Sometimes, I want to be able to fade in certain elements when I hit "Next Slide".
My current way of doing this:
- Create a MovieClip from a Rectangle with an opacity tween from 100 to 0 (with ActionScript to
stop()
at first frame). - Copy and paste the MovieClip over the place where I want it to fade in, and give the instances a unique name.
- Add actionscript to the relevant keyframe of the slide with just
rectangle1.play()
This works fine when running. The only disadvantage is that once I have one of these rectangle MovieClips on my page, I can't see what's behind it, making it annoying to design the presentation.
Is there a better way I could be doing this?