I have only been using ActionScript 3 for three days, so I'm a major newb, but I've used several other languages for most of my life.
I have the following code at frame one of the top layer:
var level:Array = new Array();
var level[0] = new Object();
I am getting the following error:
Scene 1, Layer 'levels', Frame 1, Line 2
1086: Syntax error: expecting semicolon before leftbracket.
I've looked at many examples which seem to be doing the same thing I'm doing, and I've also tried defining the object separately and then adding it to the array, with the same error. I've also searched for the answer, but all the questions I've found are a little different than this situation. Thanks in advance for any help or links.
levelvariable twice. the compiler should have thrown a conflict error but instead though it would be best to go off about a semicolon. Flash Professional is not a very good code editor. Take a look at either FlashDevelop (PC only) or Flash Builder (Cro$$ platform) if you would like a more acceptable code editor. – TheDarkIn1978 Oct 25 '12 at 2:36