Skip to main content
Inspiring
June 11, 2010
Answered

how to create an empty movieclip

  • June 11, 2010
  • 1 reply
  • 816 views

hi i m trying to make an empty movieclip, but after compile the file i press ctrl+L to see the objects instances on stage, it shows only Level #0: Frame=1. how can I make myMC movieclip???

package {
    import flash.display.Sprite;
    import flash.display.MovieClip;
    public class drawCurve extends Sprite {
        public function drawCurve() {
            var myMC:MovieClip= new MovieClip();
            addChild(myMC);
            myMC.name="MC";
        }
    }
}

This topic has been closed for replies.
Correct answer Ned Murphy

Do you expect to see an empty movieclip?

1 reply

Inspiring
June 11, 2010

IS someone know how to make empty movieclip on stage????

Ned Murphy
Ned MurphyCorrect answer
Legend
June 11, 2010

Do you expect to see an empty movieclip?