public class Main extends Sprite{ public function Main(){ var aEmployees:Array = ["A", "P", "C", "H"]; aEmployees.splice(3, 0, "R", "H", "L"); trace(aEmployees.toString()); // A,P,C,R,H,L,H
} } }
Related Scripts with Example Source Code in same category :