반응형
-메인 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() {
xPos = 18;
yPos = 18;
};
btn_02.onPress = function() {
xPos = -341;
yPos = -341;
};
btn_03.onPress = function() {
xPos = 20;
yPos = -341;
};
btn_04.onPress = function() {
xPos = -343;
yPos = 18;
};
-레이어의 형태-
마스크
tMC
마스크
tMc_02
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() {
xPos = 18;
yPos = 18;
};
btn_02.onPress = function() {
xPos = -341;
yPos = -341;
};
btn_03.onPress = function() {
xPos = 20;
yPos = -341;
};
btn_04.onPress = function() {
xPos = -343;
yPos = 18;
};
-레이어의 형태-
마스크
tMC
마스크
tMc_02
반응형
'Devlopment > Web' 카테고리의 다른 글
함수 정의 (0) | 2008.07.08 |
---|---|
Math 객체 (0) | 2008.07.08 |
Date 객체 (0) | 2008.07.08 |
문자열 메소드 & 정규표현식 메소드 (0) | 2008.07.08 |
li 메뉴 (0) | 2008.07.08 |
DB 프로그래밍 (0) | 2008.06.29 |
쿠키(Cookie) & 세션(Session) (0) | 2008.06.29 |
Application 내장 객체 (0) | 2008.06.29 |
Forward & Redirect & Include (0) | 2008.06.29 |
파라미터 값 받기 & 한글 처리 (0) | 2008.06.29 |