Symbol 1 MovieClip Frame 1
_visible = false;
stop();
Symbol 1 MovieClip Frame 2
_time = getTimer() / 1000;
_birth = _time;
_delta = 0;
_age = 0;
if (_fx == undefined) {
_fx = 0;
}
if (_fy == undefined) {
_fy = 0;
}
if (_fxscale == undefined) {
_fxscale = 0;
}
if (_fyscale == undefined) {
_fyscale = 0;
}
if (_frotation == undefined) {
_frotation = 0;
}
if (_falpha_vx == undefined) {
_falpha_vx = 0;
}
if (_vy == undefined) {
_vy = 0;
}
if (_vxscale == undefined) {
_vxscale = 0;
}
if (_vyscale == undefined) {
_vyscale = 0;
}
if (_vrotation == undefined) {
_vrotation = 0;
}
if (_valpha_ax == undefined) {
_valpha_ax = 0;
}
if (_ay == undefined) {
_ay = 0;
}
if (_axscale == undefined) {
_axscale = 0;
}
if (_ayscale == undefined) {
_ayscale = 0;
}
if (_arotation == undefined) {
_arotation = 0;
}
if (_aalpha == undefined) {
_aalpha = 0;
}
Symbol 1 MovieClip Frame 3
_tt = getTimer() / 1000;
_delta = _tt - _time;
_age = _tt - _birth;
_time = _tt;
Symbol 1 MovieClip Frame 4
_ffx = (100 - (_fx * _delta)) / 100;
_ffy = (100 - (_fy * _delta)) / 100;
_ffxscale = (100 - (_fxscale * _delta)) / 100;
_ffyscale = (100 - (_fyscale * _delta)) / 100;
_ffrotation = (100 - (_frotation * _delta)) / 100;
_ffalpha = (100 - (_falpha * _delta)) / 100;
_vx = (_vx + (_ax * _delta)) * _ffx;
_vy = (_vy + (_ay * _delta)) * _ffy;
_vxscale = (_vxscale + (_axscale * _delta)) * _ffxscale;
_vyscale = (_vyscale + (_ayscale * _delta)) * _ffyscale;
_vrotation = (_vrotation + (_arotation * _delta)) * _ffrotation;
_valpha = (_valpha + (_aalpha * _delta)) * _ffalpha;
if (_vx) {
_x = (_x + (_vx * _delta));
}
if (_vy) {
_y = (_y + (_vy * _delta));
}
if (_vxscale) {
_xscale = (_xscale + (_vxscale * _delta));
}
if (_vyscale) {
_yscale = (_yscale + (_vyscale * _delta));
}
if (_vrotation) {
_rotation = (_rotation + (_vrotation * _delta));
}
if (_valpha) {
_alpha = (_alpha + (_valpha * _delta));
}