L'enter frame di cui parli è
onClipEvent (load)
{
_level0.SETROTATION = 0;
_level0.SETSCALE = 100;
_level0.CHECKMAINSCALE = this;
}
onClipEvent (enterFrame)
{
YO = this._xscale;
hori = _level0.SETSCALE - YO;
if (this._xscale >= _level0.SETSCALE)
{
this._xscale = YO + hori / _level0.SPEED / 2;
this._yscale = YO + hori / _level0.SPEED / 2;
}
else
{
this._xscale = YO + hori / _level0.SPEED / 2;
this._yscale = YO + hori / _level0.SPEED / 2;
} // end else if
}
onClipEvent (enterFrame)
{
YO = main._x;
hori = _level0.SETX - YO;
main._x = YO + hori / 6;
}
onClipEvent (enterFrame)
{
YO = main._y;
hori = _level0.SETY - YO;
main._y = YO + hori / 9;
}
onClipEvent (enterFrame)
{
WO = this._rotation;
rot = _level0.SETROTATION - WO;
this._rotation = WO + rot / _level0.SPEED2;
}
che, nel clip originale, si trova su un mc esterno.
ma perché se li metto tutti e due nello stesso filmato non funziona?