TheBarron
01-14-2003, 01:58 PM
i have the following code:
on (rollOver) {
_root.targeter.drag.gotoAndPlay(125);
}
i want to add another line of code so it will be...
on (rollOver) {
_root.targeter.drag.gotoAndPlay(125);
_root.nav1.31specCopy.gotoAndPlay(1);
}
simple straightforward right out of the manual but for some reason when i put that extra line of code anywhere i get this error when i test it:
Symbol=nav1, Layer=buttons, Frame=1: Line 3: ';' expected
_root.nav1.31specCopy.gotoAndPlay(1);
i am running into this problem in 2 different flash movies.. what gives? also the Fla movie i am working in now... it seems where ever i add that new line of code i get the same error. i tried putting it in a function on the main timeline to no avail.. help is welcome!!
on (rollOver) {
_root.targeter.drag.gotoAndPlay(125);
}
i want to add another line of code so it will be...
on (rollOver) {
_root.targeter.drag.gotoAndPlay(125);
_root.nav1.31specCopy.gotoAndPlay(1);
}
simple straightforward right out of the manual but for some reason when i put that extra line of code anywhere i get this error when i test it:
Symbol=nav1, Layer=buttons, Frame=1: Line 3: ';' expected
_root.nav1.31specCopy.gotoAndPlay(1);
i am running into this problem in 2 different flash movies.. what gives? also the Fla movie i am working in now... it seems where ever i add that new line of code i get the same error. i tried putting it in a function on the main timeline to no avail.. help is welcome!!