ActionScript

    Images Masking, 메뉴

    -메인 1번 프레임- MovieClip.prototype.movMc = function(cTarget, speed) { firmY = yPos; firmX = xPos; currY = cTarget._y; currX = cTarget._x; distanceY = (firmY-currY)*speed; distanceX = (firmX-currX)*speed; cTarget._y = currY+distanceY; cTarget._x = currX+distanceX; }; tMc.onEnterFrame = function() { movMc(this, 0.2); }; tMc_02.onEnterFrame = function() { movMc(this, 0.3); }; btn_01.onPress = function..