class com.rockstargames.gtav.levelDesign.BaseScriptUI extends MovieClip
{
var TIMELINE;
var CONTENT;
var BOUNDING_BOX;
function BaseScriptUI()
{
super();
}
function INITIALISE(mc)
{
this.TIMELINE = mc;
this.CONTENT = this.TIMELINE.attachMovie("CONTENT","CONTENT",this.TIMELINE.getNextHighestDepth());
this.BOUNDING_BOX = this.TIMELINE.attachMovie("BOUNDING_BOX","BOUNDING_BOX",this.TIMELINE.getNextHighestDepth());
this.BOUNDING_BOX._visible = false;
}
}
By setting the vars at the top, you don't need to do step 8. The reason why it isn't there when you create the .swf file is due to it throwing errors.