Connecting Tech Pros Worldwide Forums | Help | Site Map

arrange a movie Clip Using Action Script

Newbie
 
Join Date: Jan 2009
Posts: 1
#1: Jan 21 '09
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.createEmptyMovieClip("loady",5);
loady._y = 220;

loady.onEnterFrame = 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's Avatar
Moderator
 
Join Date: Jun 2007
Location: York, England, with wolves.
Posts: 4,949
#2: Feb 14 '09

re: arrange a movie Clip Using Action Script


Hey there.

Have a look at swapDepths().
Reply