Help me make my Flash button-inside-a-movie-clip work.
December 11, 2006 7:32 PM
Subscribe
Can someone look at
my .fla file and tell me why my button inside a movie clip doesn't work?
Please don't laugh at my Flash-fu.
The only button that should work right now is the "features" button, but it doesn't. (It should gotoandplay frame 41 of the current scene.) The rollover works but not the goto.
The only other way I can think to do this is to group the three buttons and "frame" so I can motion tween them in together, but that seems like a dumb way and I don't see why this doesn't work. Thanks in advance.
posted by bradn to computers & internet (4 comments total)
Button AS:
on (release) {
_root.gotoAndPlay("41");
}
This works - but overall perhaps this is not the best aproach to what you are trying to achieve. But hey you can always rework it in version 2 right?
posted by gomichild at 8:02 PM on December 11, 2006