Flash Dynamic Text?
Flash Dynamic Text?
- Started
- Last post
- 3 Responses
- SuperBig
So i have one text box ( that scrolls) whose contents is changed when one of 10 buttons is pressed. The problem is say i've scrolled to the bottom of one section and then clicked the button to go to another section . . . the text changes but remains at the same point that I'd scrolled to in the previous section. . . How do i set it up to reset the line position when you click a button to go to another section?
- knusperpixel0
On each of the 10 Buttons:
on(release)
{
textbox.scroll = 0;
}where textbox is the name of your textbox.
this should help
- SuperBig0
yeah i tried that. . . didn't fly.
anyother suggestions.
- SuperBig0
I got it. . . Thanks man.!!