PDA

View Full Version : tellTarget in MC


omega10mg
08-01-2003, 07:33 PM
tell me... is there anything wrong with this?
i get an error, but it still does what it should.. i'm confused.

on (press) {
tellTarget ("_root.bord01") {
gotoAndPlay(2);
}
}

the error says something about paramets, not valid paramets, must choose from 1 and 2?

i dont get it. plz help.

sandman9
08-01-2003, 07:53 PM
are tell target commands used in FlashMX?

sorry omega, don't mean to be off topic .... i'm just curious

Thanks
Sandman9

Sualdam
08-01-2003, 08:01 PM
They're still supported, but out of date.on (press) {
_root.bord01.gotoAndPlay(2);
}would be the MX way, and that should work.

Can you post your FLA so we can see how you are applying it?

chris-sharpe99
08-01-2003, 08:08 PM
I tried it and it worked fine for me, maybe it's just something else in your movie (which would explain why the button still works fine). You could try putting this on your button instead so you don't have the tellTarget
on (press) {
_root.bord01.gotoAndStop(2);
}

sandman9
08-01-2003, 08:45 PM
ahhhhhhhhh i get it!!! This place is awsome!!

Cheers
Sandman9