CyberStorm @ Thu Jan 13, 2011 4:08 pm wrote:
5. are there any suggestions that you have for me to make the code better/more organized?
arrays and functions will be your best friends, as they'll let you generalize for similar situations. Instead of writing out a bunch of code for what happens on property #4, you write (pretty much the same) code for what happens on _some_ property, and just use the same function for all the properties. You code is now 1/20th the size! Awesome. The less code you have, the easier it is to figure out what's going on and fix bugs. (To be fair, that's true only up to some point.)
Read more about both of those concepts in The Turing Walkthrough