Learning ActionScript
Learning ActionScript
Out of context: Reply #3
- Started
- Last post
- 3 Responses
- lw-d0
Instead of creating an empty movie to load into, I set the dimensions using actionscript:
// this creates a variable to hold the home navigation mc
var nav_home:MovieClip;
// attach the home navigation mc to the timeline
nav_home = this.attachMovie("nav_home", "nav_home_mc","1",{_x:25, _y:108.8});Not sure if this is the best way of doing it?