arrange a movie Clip Using Action Script

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • gusheneshin
    New Member
    • Jan 2009
    • 1

    arrange a movie Clip Using Action Script

    hi everyone


    im Using this code to Creat a Movie Clip
    and load a movie "SWF" into this Flash

    ------------
    stop();

    loady._x = 226.4;this.crea teEmptyMovieCli p("loady",5);
    loady._y = 220;

    loady.onEnterFr ame = loadIt;

    function loadIt()
    {
    loady.loadMovie ('entry.swf');

    }

    ------------

    now I want to send the movie Clip back
    (right Click > Arrange > send to back)

    but I dont know how to do it with Action Script

    please help me with this

    thank you
  • Markus
    Recognized Expert Expert
    • Jun 2007
    • 6092

    #2
    Hey there.

    Have a look at swapDepths().

    Comment

    Working...