Answered
Best Way to Call Function at start of project?
To call a function at the start of a project, I have been using
stage.addEventListener(Event.ENTER_FRAME, sampleFunction)
function sampleFunction (e:Event)
{stage.removeEventListener(Event.ENTER_FRAME, sampleFunction);
dothis}
Is there a better way to do something like this?
