PDA

View Full Version : text


garret
11-29-2007, 02:49 PM
I cant put the scroll text working inside a movie clip. what can I do?
outside it's working perfectly, but inside the movie clip isn't working

This is the file

24988

If anyone can help me please, I will thank a lot

thanks
(I'm working with flash9)

garret
11-30-2007, 10:22 AM
please....

Noct
12-02-2007, 07:10 PM
Once you moved the text into the movieClip, it isn't on the root anymore, so the path is incorrect. (One of several reasons why using _root is not a great practice)
Call it using _parent instead:

onClipEvent ( enterFrame ) {
if (lPressed) {
this._parent.input_text.scroll -= 1;
}
}