The camera script is broken.
The camera script does not work, the correct script reads:
onClipEvent (enterFrame){
this._visible = false
this.onEnterFrame = function(){
var scaleX = Stage.width / this._width;
var scaleY = Stage.height / this._height;
_parent._x = (Stage.width / 2) - (this._x * scaleX);
_parent._y = (Stage.height / 2) - (this._y * scaleY);
_parent._xscale = 100 * scaleX;
_parent._yscale = 100 * scaleY;
};
}
onClipEvent (unload){
this.onUnload = function(){
_parent._xscale = 100;
_parent._yscale = 100;
_parent._x = 0;
_parent._y = 0;
};
}
Just thought I'd share.
It's a great tool though, this tute, so many thanks!