Problem I am doing a game that uses nape physics in ActionScript, but my question isn’t about language. It is […]
Tag: actionscript-3
Efficiently consolidating an array of objects
Problem In my program, I’m getting Facebook objects and using temp to display on a separate screen how many unread […]
Seeding a PRNG – Custom Setter
Problem I have a PRNG-Class called Generator. Now, after creating a new instance of it: var g:Generator = new Generator(); […]
Reading code from array efficiently
Problem I’m trying to read data from an array. I manage to get the information I want but my code […]
Add and remove Tiles during pan event for 4 directions
Problem This function accepts a String (either “right”, “left”,”up”, or “down”) to do 4 similar but different things. I’d like […]
Actionscript 3.0, good OOP?
Problem I have been coding for some time (3 years I think), and have recently been wondering if my coding […]
PRNG – Algorithm: Performance vs Readability
Problem I have a PRNG-Algorithm: /** * Generates an integer. Min: 0 | Max: total – 1 * @param total […]
UltimateTicTacToe – ActionScript Style!
Problem In an effort to complete this month’s code challenge, I’ve started off with the basics. Below I have for […]
More efficient way to write this Actionscript 3 class?
Problem I wrote one of my first classes in Actionscript 3 and I want someone versed in AS3 to help […]