PDA

View Full Version : Whata isa tha probelema here.......a


buzza_gts
10-30-2002, 08:49 PM
When I use this code:

on (press) {
_root.timeText.gotoAndStop(2);
_root.timeText.1928.gotoAndPlay(2);
}

In the out put window I get an error message saying:
expected ";" on line 3 ?

What the :confused:

Skakig
10-30-2002, 09:04 PM
on (press) {
_root.timeText.gotoAndStop(2);
_root.timeText.1928.gotoAndPlay(2);
}

you have an extra period in there???

_root.timeText1928.gotoAndPlay(2);

your path to your instance 1928 is off, that's why...

buzza_gts
10-30-2002, 09:24 PM
To explain 1928 is a MC inside the timetext MC so I think the period is needed. I used the insert target path feature and that is what I got.
Thx for the help though, it'll probably be somthing stupid.:p

Ricod
11-01-2002, 04:32 PM
Yes, it probably means you are missing a ';' somewhere ... copy past it, maybe you don't see it because you've been staring too much at it already. (sure happens to me a lot ...)