[질문]as2--as3 변환시 문제해결하려면???
댓걸
as2 에서사용하던 함수가
as3 에서는 어떻게변했는지를 어떻게알수있나여?
as2 코드를 as3 로변환시키는작업을 하고있는데
위와같은경우는 어떻게 관련정보를 찿아야되나여
as3 관련은 as3 도움말을 찿아보면되는데
as2 에서지원하는함수가 as3 에서는 지원하지않는경우
어떻게알아낼수있는지 궁금합니다
지금
mc.attachBitmap(mc.bitmap, 1);
의경우는 아래에러가나구여
Warning: 1060: Migration issue: The method attachBitmap is no longer supported. See help for the addChild() method..
down_mc.swapDepths(up_mc);
의경우는 아래에러가나내여
Warning: 1060: Migration issue: The method swapDepths is no longer supported. Use DisplayObjectContainer.parent.setChildIndex instead. For more information, see the DisplayObjectContainer class, which is extended by MovieClip..
그리고
var tween = new Tween(clip, x, fl.transitions.easing.Bounce.easeOut, clip.x, -200, 3, true);
var tween = new Tween(clip, y, fl.transitions.easing.Bounce.easeOut, clip.y, -200, 3, true);
의경우도
Warning: 3596: Duplicate variable definition.
이런에러가 나는데
이런경우 해결할려면
어디를 찿아봐야될까여?
-
마법 2024-12-17
한수다님 말씀대로 에러메시지가 모든것을 말해주죠...
as2 - as3 과정에서 제거 변경된 내용들은
도움말 보시면 미그레이션 인가 하는부분 있으니 참조해보시면 좋을듯 합니다. -
미리별 2024-12-17
에러메세지에 원인과 해결책이 모두 담겨 있는듯 한데요.