Hi,
Because the action TELL TARGET is often used in movies, I hereby show you the difference between tell targetting on swish v2.x and on swishMax.
button named A
sprite named B
-------------------------
Swish V2
button A :
on release
tell target "/B"
Goto frame 2
IN SWISHMAX this becomes :
button A:
on(release){
tell target(_root._B){
gotoAndPlay(2);
}
}
to show the difference.
|
|
|