Question : "Tell Target" is CS4

I built an app in Flash a while ago where a user could click on a button and the text would scroll down. It wasn't a "scroller," it was just an arrow, either up or down, where the script was telling another movie clip to advance the timeline forward or backward.

I know that's an archaic approach, but I have no idea to start with CS4. Any suggestions?

Answer : "Tell Target" is CS4

I don't know what version of ActionScript you are using, but use dot notation to replace the tellTarget...

CyanBlue
1:
2:
3:
4:
5:
6:
7:
8:
tellTarget ("someMC")
{
     gotoAndPlay("someWhere");
}
 
should be...
 
someMC.gotoAndPlay("someWhere");
Open in New Window Select All
Random Solutions  
 
programming4us programming4us