Is there a way to condense these two statements? I think the way they are written- they confuse Flash?
on (rollOver) {
tellTarget ("/puzzle_MC") {
gotoAndPlay(21);
}
}
on (rollOver) {
tellTarget ("/book_picture") {
gotoAndPlay(1);
}
}
-Thanks,
-M
system
August 21, 2003, 4:15pm
2
Just combine the two tellTargets in one rollOver
on (rollOver) {
tellTarget("/puzzle_MC") {
gotoAndPlay(21);
}
tellTarget("/book_picture") {
gotoAndPlay(1);
}
}
system
August 21, 2003, 4:18pm
3
btw, telltarget should no longer be used in Flash MX
( I know you know this, Thoriphes)
system
August 21, 2003, 4:30pm
4
no- I didn’t know…why do you not use telltarget in mx?
system
August 21, 2003, 8:51pm
5
well, he’s saying not to use it because there are other alternatives which are much simpler. like instead of going tellTarget ("/whatever") { _x = 50; } or however you use tellTarget, you can very easily go:
whatever._x = 50;
easier eh? =)