With the flex 4.0 mxmlc compiler, there is new syntax for initializing vectors in actionscript.
The old way:
var t:Vector.<String> = new Vector.<String>(); t.push("Element");
Now supported:
var t:Vector.<String> = new <String>["Element"];
With the flex 4.0 mxmlc compiler, there is new syntax for initializing vectors in actionscript.
The old way:
var t:Vector.<String> = new Vector.<String>(); t.push("Element");
Now supported:
var t:Vector.<String> = new <String>["Element"];
For a vector of vectors of type Number use the syntax,
Post new comment