Oct 21, 2003 #1 bubu Programmer Mar 3, 2002 463 RO Hello guys! What is the difference between these codes: tellTarget("_root.instancename01.instancename02" { gotoAndStop(4); } ------------------------------------- AND _root.instancename01.instancename02.gotoAndStop(4); Regards, Dragos.
Hello guys! What is the difference between these codes: tellTarget("_root.instancename01.instancename02" { gotoAndStop(4); } ------------------------------------- AND _root.instancename01.instancename02.gotoAndStop(4); Regards, Dragos.
Oct 21, 2003 #2 oldnewbie Technical User Dec 6, 2000 9,142 CA Basically the same thing, although tellTarget is officially deprecated, and the use of dot syntax encouraged. In some cases, tellTarget (can still be used) is notably faster than dot syntax. Regards, Upvote 0 Downvote
Basically the same thing, although tellTarget is officially deprecated, and the use of dot syntax encouraged. In some cases, tellTarget (can still be used) is notably faster than dot syntax. Regards,
Oct 21, 2003 #3 oldnewbie Technical User Dec 6, 2000 9,142 CA http://www.fatorcaos.com.br/flash5tests/speed_1.html Regards, Upvote 0 Downvote
Oct 21, 2003 Thread starter #4 bubu Programmer Mar 3, 2002 463 RO Thanks a lot Oldnewbie...usefull as allways Regards, Dragos. Upvote 0 Downvote