So I thought it sounded like fun to have the user control how many elements are added to the stage – But I got stuck ummm… here: will fix tomorrow… maybe.
var num = textBox.text;
function drop(evt:Event):void {
for (var i:int = 0; i<num; i++) {
trace(i);
}
}
drop();
Advertisements