PDA

View Full Version : [MX] Weird Clip Behavior - AS Not working



liors
July 15th, 2003, 12:06 PM
Hi guys,

I am running into a weird issue. I created a text box, and I want to simply have a fade in action. So I made the box a symbol (graphic) and then changed the alpha to 0. The text still shows up when I test the movie. I tried making the symbol a movie clip and then doing:


onClipEvent (load) {
this._alpha = 0;
}

And it still shows up on the stage. I'm not using any other AS in the scene, and I can't figure out why this would be happening.
Any ideas?

Lior

lostinbeta
July 15th, 2003, 12:11 PM
It is because of your dynamic text. In order to apply alpha to a dynamic textbox you need to embed the font outline (right click, properties, character... blah blah blah)

liors
July 15th, 2003, 12:13 PM
I see. Thank you very much. It's hard to find this kind of knowledge anywhere.

lostinbeta
July 15th, 2003, 12:19 PM
Glad I could help =)