i'm trying to make a button open a text scroller box inside the root movie. can someone help with the actionscript? i've seen the actionscript to open a jpeg box, but not a text scroller box. please help.
thanx.
p.s. thanks bridel for the text scroller .fun file.
I'm just a short person danglin' on a toilet seat...
is it possible to manipulate where the movie appears or create a little window for it with a 'close' button in the top corner similar to normal browser windows?
i'm also assuming that the script you provided is put into the button actionscript?
would i have to place the text scroller movie in my main movie first in order to reference it, or just place it in the same folder?
sorry so many questions.....
I'm just a short person danglin' on a toilet seat...
Make a movie clip (shapes > add movie clip)
name the mc "window"
place the text field and scroller in the movie clip
place a button in the same movieclip
put this in the button actionscript actions:
Code:
on(press){
this._visible = false;
}
Put a button on the main movie and place this in the button actionscript actions.