6/15/2007

MovieClip utility functions

part of ©MdA Presenter 4 Framework (AS 2.0)
toLocal, toGlobal, removeMc, testMc, stopMc, playMc, stopOrPlay, makeBitmapSmoothed

Could be useful for your flahs 8 projects

download

6/11/2007

New MacBook Pro


I get my new MacBookBook last Friday 06.06.08, 16 h:
2,4 GHz Intel Core 2 Duo
4GB 667 DDR2 SDRAM - 2x2GB
160GB Serial ATA-Laufwerk (5400U/Min.)
MacBook Pro 15" Breitformat-Bildschirm
SuperDrive 8x (DVD+R DL/DVD±RW/CD-RW)

soo toll!!!

6/06/2007

Very strange

//Very strange / Sehr merkwürdig in Actionscript:

var a:String = '0';

var b:String = '1';

if (a == true) {

trace(a+" is true");

} else {

trace(a+" is not true");

}

if (b == true) {

trace(b+" is true");

} else {

trace(b+"is not true");

}

//Output / Ausgabe/:

//0 is not true

//1 is true