Ccc> Is in the following code something wrong:
Ccc>
Ccc> var my_array:Array = new Array();
Ccc>
Ccc> for (var z=0; z<x; z++){
Ccc> my_array.push(z)=z;
Ccc> }Yes, it is wrong of course, since only a variable or property can be on the left side of an assignment. What do you want to do with this? I don't understand it at all. push() returns the new length of the array - what do you want to assign to it? Ccc> I’m rather skilled in C++, and there I have to do that for not overfilling Ccc> dynamic memory (heap)! What do you have to do there? In general you don't have to care about low-level memory management in Flash at all, the VM is responsible for such tasks. Ccc> I want to fill up an array and later empty it so i can fill it again from Ccc> scratch, Important is I don’t want to empty the array element by element Ccc> using a loop. No loop is required, a simple splice(0) is enough. Or you can create a new array instance, too - of course. Attila _______________________________________________ [email protected] To change your subscription options or search the archive: http://chattyfig.figleaf.com/mailman/listinfo/flashcoders Brought to you by Fig Leaf Software Premier Authorized Adobe Consulting and Training http://www.figleaf.com http://training.figleaf.com

