so in an attempt to leave no stone unturned, I need to understand why things happen, when applying an ENTER_FRAME listener, does the code excecute as long as your on the frame, kinda like a loop but with no statement to stop it? for example I have the following code:
var contRotate:Number = 1;
stage.addEventListener(Event.ENTER_FRAME, spinWheel)
function spinWheel(e:Event) {
var bigWheelRotate:TequilaTween = new TequilaTween(bigWheel, {x:90});
bigWheelRotate.start();
bigWheel.x = contRotate + 1;
trace(“wheel spinning”);
}
the string"wheel spinning" keeps tracing, however,bigWheel doesnt rotate, so do ENTER_FRAMES excecute once, or as long as your on the frame?