TweenMax,ease 경로설정 관련 질문입니다.
한뎃집
안녕하세요 제가 eas를 이용해서 만들고 있는건데요. import com.greensock.*;
import com.greensock.easing.*;TweenMax.to(typo,1.5,{_x:46, _y:-265, ease:Elastic.easeOut});
TweenMax.to(c_1,1.5,{_x:102.5, _y:-142.5, ease:Elastic.easeOut});
TweenMax.to(c_2,1.5,{_x:333.9, _y:-140.2, ease:Elastic.easeOut});
TweenMax.to(c_3,1.5,{_x:415.1, _y:-135.9, ease:Elastic.easeOut});
TweenMax.to(c_4,1.5,{_x:637.9, _y:-81.4, ease:Elastic.easeOut});
TweenMax.to(c_5,1.5,{_x:721.6, _y:-135.4, ease:Elastic.easeOut});
TweenMax.to(ball,1.5,{_x:691.5, _y:561.5, ease:Bounce.easeOut});요 ball은 플래시안에서 다른무비클립안에 따로 들어가있어요. 밖으로 빼내어 단독으로 무비클립을 설정하더라도, 플래쉬에서 뒤늦게 ball이 실행이 되어야 해요. 위의 액션들을 제외하도고 다른 프레임들이 실행되고있는 도중에 ball이 실행이 되어야하는데,나타날 범위내의 프레임을 주고 ball을 넣오보면 또 안되더라구요. 경로만 나타낸다면, _root.form.sand.ball인데요. ball은 플래싀가 시작되 한 350프레임정도 위에 실행이 되어야 해요. 이건 어떤식으로 설정을 해야할까요. 님들의 도움이 필요합니다. ㅠㅠㅠㅠ