Ok, what I’ve done is imported graphics into my movie. I’m using those as backgrounds, similar to powerpoint. I want to make buttons that are necessary to move onto the next frame. But when I put in
on(release)
{
gotoAndPlay(frame#)
}
it just skips over it and i can’t click on the button. I don’t have various layers set up for this, maybe that’s what I need to do?
You don’t need layers necessarily (though they are nice for organizing). Sounds like you are missing a stop action. If you have multiple frames but you want to stick on one until someone presses a button then you need to put stop(); on the frame you want to stick on. Then when your button is pressed you can either use the following:
on(release){
gotoAndStop(frame#)}
or put a stop(); on the frame you want to go to and stop at and use gotoAndPlay(frame#) (or gotoAndStop - works just as well I think).