actionscript-3,select,random,pick
visit this link to find your solution. or try this code var originalArray:Array = new Array('Bob', 'George', 'Tom', 'Mohammed', 'Adam', 'Moses', 'Aaron', 'David'); var shuffledArray:Array = originalArray.sort(shuffle); trace(shuffledArray); private function shuffle(originalArray,shuffledArray):int { var sortNum : int = Math.round(Math.random() * 2) - 1; return sortNum; } ...
dictionary,data-structures,linked-list,multivalue,pick
The Pick/MultiValue DBMS allows multiple values to be stored in a single field. A common example would be to have a single attribute for a street address, with Street1, Street2, and perhaps Street3 as values. The structure would look like this: 01 Company Name 02 Street1]Street2]Street3 03 City 04 State......