Re: Flash MX Vibration Tutorial

onClipEvent (load) {
	//movie width/height
	height = 550;
	width = 600;
	//------------------------//
	//makes everything random //
	//------------------------//
	this._x = Math.round(Math.random()*width);
	this._y = Math.round(Math.random()*height);
	var temp = this._alpha=Math.random()*100;
	this._xscale = this._yscale=temp;
	//setting initiaion position
	cx = this._x;
	cy = this._y;
}
onClipEvent (enterFrame) {
	//causes the object to be offset
	this._x = cx+(1+Math.random()*5);
	this._y = cy+(1+Math.random()*5);
}

How would one alter this code in order to give the movie clip a fixed position and a display size of 100% (actual size)?