Hi guys Thanks for all the help

When i use this preloader script to make a movieclip called loader to scale from 0 to 100% it does not work in koolmoves.

Try it yourself:

put on first frame
Code:
stop();

this.onEnterFrame = function() {
	var amount:Number = this.getBytesLoaded() / this.getBytesTotal() *100;
	loader._xscale = amount;
	if(amount == 100) {
		this.gotoAndPlay(3);
		delete this.onEnterFrame;
	}
}
What is wrong?