hi

can u guys help me understand actionscript??, i've just learned a basic scripted movement, but i don't understand why it does differently when placed in a movieclip on the maintimeline - as opposed to just directly on the maintimeline.

=code:
r_mc.onClipEvent(load){
this._x-=(this._x-t_mc._x)*.2
this._xscale-=15;
if (this._x>=300){
this._xscale+=20;
if(this._xscale >= 20){
this._xscale-=(this._xscale-t_mc._xscale)*.1
}
}
}

(also please let me know- if this script can be better)