createEmptyMovieClip always below other layers?

Ask a Question related to Macromedia Flash Actionscript, Design and Development.

  1. #1

    Default createEmptyMovieClip always below other layers?

    I'm using createEmptyMovieClip() to make, well, an empty MovieClip, in which I then draw a TextField using createTextField().

    The trouble is, even though I tell the routine to put the empty MovieClip on layer 9999, the TextField appears *behind* items on layer 10. Is this expected behavior? Any workarounds?

    I did do some web searching and found no other mention of this problem.

    Here's the code in question:

    if (this.tipText.length > 0) {
    this.createEmptyMovieClip("the_tip_MC", 9999);
    with (this.the_tip_MC) {
    var clipBounds = getBounds(_root.invisoBackground);
    createTextField("tipText", 9999, 10, 20, 100, 20);
    tipText.border = true;
    tipText.autosize = "left";
    tipText.backgroundColor = 0xFFFFCC;
    tipText.background = true;
    tipText.text = this.tipText;
    myFormat = new TextFormat();
    myFormat.font="_sans";
    tipText.setTextFormat(myFormat);
    }
    }


    --
    Carl Fink
    Please respond to the newsgroup only.


    Carl Fink webforumsuser@macromedia.com Guest

  2. Similar Questions and Discussions

    1. attachMovie-createEmptyMovieClip-loadMovie
      Hi there, I have some troubles in Flash MX in my Movie : _root.main. I attach a MC called "InfoWin" in this I create a MovieClip called "vr"...
    2. CreateEmptyMovieClip and Layers question
      Hi - I'm trying to improve my ActionScript skills and have run into difficulty. I'm trying to create a flexible and dynamic system that loads...
    3. createEmptyMovieClip on bottom layer?
      I've got a fla with several layers containing my menu, header, content, etc. On the bottom layer I've got some code that creates an empty MC, loads a...
    4. createEmptyMovieClip & functions
      Hi! Could somebody explane to me why following code does work: --------------------------------------------------------------- click_mc =...
    5. createEmptyMovieClip <-> setMask
      Hi, Does anyone know why I can't seem to set a mask right after i create the movieclip? Something like this ...
  3. #2

    Default Re: createEmptyMovieClip always below other layers?

    as far as I experienced, the created movie clip is ABOVE all clips --in the
    level it is created--. If you want it easy, create a swf witch will be
    loaded level 9999 where you put your code to create the EmptyMovieClip

    --

    Pierre Alain

    [email]pie@lifnet.com[/email]


    PierreAlain Guest

Posting Permissions

  • You may not post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139