Hello, This is my first time posting the the forum so bear with me.
First of all, you can view my flash site at http://getreal.parr.com If you click into the ‘product’ section of the site, a masked menu comes up that scrolls from top to bottom. The next step I need to take is to make each button ‘underlined’ once the user clicks on one of them so he or she knows which page they are currently on.
I found this very helpful tutorial http://board.flashkit.com/board/showthread.php?t=646001 and can get my buttons to work in a test file using the code in the author’s modifiedVersion2.fla.
The problem I’m having is getting the buttons to work the way I want them to in my actual .fla file. I think it’s a file path issue, but I can’t seem to figure it out. Here’s a sample of some script I’ve been working with:
on(press) {
if (_parent.win._currentframe == 19) {
_parent.win.gotoAndPlay(20);
}
linkicon3_mc.gotoAndPlay(1);
_root.gotoAndStop(“doors”);
gotoAndPlay(2);
}
The bold sections are where I think I need help with the file path. I’ve tried using the ‘Insert Target Path’ button but can’t seem to get anything to work right. Thanks, any help is much appreciated!