Select your button and open the Actions Panel (F9), copy & paste this:[AS]on (press) {
gotoAndPlay(frame#);
}[/AS]Pretty self-explanatory, just change frame#.
You can use the Scrollbar Component (Components Panel).
Create a Dynamic, Multiline text box and then click and drag the Scrollbar from the Components panel into the text box.
Hate to keep bugging you but the frame thing doesn’t work. I makes it clickable but when i click it nothing happens. I have the frame number right. I put a key frame at the frame. Do i need one on every layer?
I don’t know why it wouldn’t be working… if you’d like, you can either post your file here, or you could email it to me so I can take a look at it (forum.wizard[at]gmail.com). Save it for Flash MX.
No, I was just asking if it was inside of a clip, you would have to change the ActionScript to:[AS]on (release) {
**_root.**gotoAndPlay(Frame#);
}[/AS]
Oh i think i know what might be the problem. On the same frame but diffrent layer i have a stop action. Just so that is can pause and wait for the person to click it. Could that of affected it somehow?
You have a button within a button it looks like. :h:
Well, okay it doesn’t matter… I think I fixed it.
This is the script that I gave the button inside the other button:[AS]on (release) {
_root.gotoAndPlay(60);
}[/AS]I used root since it was inside of another symbol and needed to go back to the main timeline.
Also, your script said gotoAndPlay(frame60) and I think this is my fault for assuming that you would’ve understood me & my previous posts. Sorry.