Monthly Archives: June 2009
Actionscript 3: Remove all elements from a Movieclip
I’m always trying to empty out a clip and this is by far the best way : while (target_mc.numChildren) { target_mc.removeChildAt(0); } or if you prefer to be verbose : var total:uint = target_mc.numChildren; for (var i:uint = 0; i … Continue reading
Upgrade OS X 10.5 svn from 1.4.4 to 1.6.2
Os X 10.5 comes with svn 1.4.4 preinstalled, but you might want to upgrade to the latest 1.6.2 for many reasons. I needed the upgrade to run subclipse 1.4.x for flex builder 3. The best instruction I found on how … Continue reading
Posted in General topic
1 Comment
Home server with old G4 – pt 2
Once your hard ware is set up, we will need to install the software to fill the purpose of your home server. Here is a list of what I’m running and a description. 1) sharepoints If you are running os … Continue reading
Posted in General topic
Leave a comment