Chris Herring

 Creative Developer working in Advertising

 London

Posts Tagged ‘Add new tag’

Faceflash Facebook

28/07/09

So Adobe and Facebook came together a few months ago and released a full blown API for Flash/Actionscript 3, well released maybe more re-branded an existing API by Jason Crist. Anyway the API is very detailed, and as far as I aware well documented. Thought after a few weeks it’s probably worth looking into, as [...]

 

Shuffle Shuffle Array

21/07/09

Some projects you find yourself needing to shuffle arrays to randomise the objects within, below is a little static function for Actionscript 3 which will do the above. In order to use the function you need to do the following… toBeShuffledArray = ArrayShuffle.shuffle(toBeShuffledArray); public class ArrayShuffle() { public static function shuffle(array:Array):Array { var obj:*; var [...]