화살표 3차원으로 도는거 꼬리가 안따라와요 ㅠㅠ(사진有)
한울
사진에서 보이듯이...
오른쪽처럼 화살표에서 꼬리가 살살 따라오면서 빙글빙글 돌아야 하는데 이상하게 화살표 원본 fla에서는 잘 되는데
액션스크립트까지 싹 원래 작업하던 fla로 옮겨가면 저 꼬리가 안따라와요 ㅠㅠ
그래서 그 화살표 꼬리 원본 fla로 원래 작업물 다 갖다 붙여넣더니 이번엔 이미지가 깨지고 ㅠㅠ 사진보시면 상단 글씨가 오른쪽은 깨진게 보이실거에요;; 거기다 마스크 관련 액션은 안먹히고;;
저 화살표 액션만 제가 작업하는곳으로 가져가고싶은데
방법없을까요??
액션 나열해보겠습니다.
키값에 있던 액션
---------------------------
prophet5.setPan(25);
prophet5.setVolume(30);
prophet5.start(0.002, 34);
----------------------------
perpetuum_mobile 라는 무비클립에 있던 액션
---------------------------------------
onClipEvent (enterFrame) {
this.mandala._rotation += 6; // rotation thrust speed
if (this._alpha100) {// alpha fade-in
this._alpha += 4;
}
}
onClipEvent (load) {
this.stop();
this.mandala.stop();
this._alpha = 0;
radius = 220;// change the radius here or simply resize the perpetuum mobile movieClip
step = 5;// step accuracy of drawing the pieces of circle with alpha effect. A higher value here is good on slow machines but U lose quality
circle_pi = Math.PI/180;
this._yscale = 20;// scale of the 3D screw. 100 = 2D
mxc = 0x0099cc;// color of the arrow
mlen = 270;// length in degree
this.createEmptyMovieClip(mandala, 100);// this nested movie is not needed by a 2D only arrow
for (ratio=0; ratiomlen; ratio += step) {
with (this.mandala) {
mv = (ratio/mlen)*100;// calculate the percentage alpha value decrement
beginGradientFill(radial, [0x000000, mxc], [0, mv], [radius-20, radius-20], {matrixType:box, x:-250, y:-250, w:500, h:500, r:0});// here [radius-20, radius-20] determines the stroke
moveTo(0, 0);
x = -radius*Math.sin(degree*circle_pi);// circle piece calculation
y = -radius*Math.cos(degree*circle_pi);
lineTo(x, y);
degree -= step;
x = -radius*Math.sin(degree*circle_pi);
y = -radius*Math.cos(degree*circle_pi);
lineTo(x, y);
endFill();
}
}
with (this.mandala) {// drawing the arrow head (triangle)
x = -(radius+25);
y = 0;
moveTo(x, y);
beginFill(mxc, 100);
x = -(radius-55);
y = 0;
lineTo(x, y);
x = -(radius-10);
y = -50;
lineTo(x, y);
endFill();
}
}
------------------------------------------------------------
그리고 같은 키안에 무비클립 하나 더있습니다.
이름이 arrow_fade 로 되어있구요.
내일까지 마무리해야하는데 ㅠㅠ 하루종일 씨름해도 답이 안나오네요
부탁드립니다~!
-
블랙캣
라이브러리로 불러오지 말고 액션스크립트로 불러오세요.
-
Addicted
처음에 그렇게 할려고 했는데요 ^^;; swf로 안뽑아져서....임포트해도 안들어오고 ㅠㅠ...
제 컴이 문제가 있는건가..전부터 좀 플래시가 오류가 많긴했는데..ㅠㅠ답답하네요 다시한번 시도해볼게요
/// 다시해보니까 ㅠㅠ 이게 이미지가 아니라 액션스크립트로만 움직이는거라 그런지..들어오면 비어있는 키값만 들어오네요 ㅠㅠ -
강아지
화살표를 swf로 뽑아서 포함시켜보세요.