저는 Alpha 매개 변수가있는 Symbols (movieClip) 인 여러 이미지가 있습니다. 그리고 몇 초마다 텍스트를 바꿀 수 있도록 AS3에서 동적 텍스트 필드를 만들고 있습니다.movieclip 이미지 위에 텍스트 필드 추가
문제는 이미지를 MovieClips로 변환 할 때까지 모든 것이 잘 작동한다는 것입니다. 그러나 그 후에는 내 텍스트 필드를 볼 수 없습니다. 그것은 눈에 보이는 것, 그래서 어떻게 가기이 텍스트 필드를 가져 -
textFormat = new TextFormat();
textfield = new TextField();
textFormat.font = new customFonts().fontName;
textFormat.size = 16;
textFormat.align = "center";
textFormat.color = 0xFFFFFF;
textfield.defaultTextFormat = textFormat;
textfield.embedFonts = true;
textfield.width = 480;
textfield.height = 95;
textfield.x = 185;
textfield.y = 22;
textfield.wordWrap = true;
addChild (textfield);
그래서 질문은 : 여기
코드인가?