ActionScript 2.0 :: Change The Depth Of The Movie Clip?
Sep 3, 2007
I know when you assign an empty movieclip or a movieclip to the stage via actionscirpt you have to set a z depth on the layer.
Is it possible to change the depth of the movie clip? If so how?
View 1 Replies
Similar Posts:
May 25, 2009
I've got a looping slideshow. I'd like to place a sliding menu at the bottom of the screen. The problem is I've created the slideshow dynamically, and the images being loaded all inherit a depth greater than 0.
how I can place the sliding menu at the very top of the presentation when it's already on the stage?
View 3 Replies
Jul 25, 2006
I am making a 3d engine using formulas from a different language and its coming along nicely but I am having depth issues. How do I set the depth of an object within the script? I need the depth to change so I objects that are farther in the distance are further behind other objects.
View 4 Replies
May 2, 2010
I'm creating this shooter game. I attached a crosshair mc at the beginning with the depth set to getNextHighestDepth.However I keep adding the monsters mc dynamically when the game progresses, also with getNextHighestDepth. So the monster mc will keep overriding the depth of my crosshair's depth. how to get my crosshair mc's depth always to be on top of everything including the monster mc.I tried getNextHighestDepth()+1000 for my crosshair mc. But it was dumb because the monsters keep getting getNextHighestDepth as well. I assume that monster's depth would be 1001, 1002 and so on...
View 3 Replies
Jan 31, 2011
I'm having a huge problem trying to place movie clip under other stuff. Here is the thing I have three layers and I need to place vid_mc on the midle one i've tried creating a movie clip and intancing it as vid_mc and removing de addChild (vid_mc) from the code but ir didn't work.
[Code]...
View 4 Replies
Jun 17, 2007
is there a way to set the depth of a movie clip instance that is on the stage, ie. not created via createEmptyMovieClip, attachMovie, duplicateMovieClip and so on? Something like
View 5 Replies
Mar 16, 2009
I'm re-arranging how I have the movie set up (I used to have it in multiple .SWF's, but now I'm making it into one big movie), but I've ran into a snag. I don't know how to assign a movie clip a depth. The reason this is a problem is that if I were to attach a movieclip (Say Movie1), it would overlap another movieclip's (Movie2) drop shadow.Movie2 isn't assigned a depth because it's loaded along with the first movie, but Movie1 is assigned a depth when it's loaded on a click
View 1 Replies
Nov 28, 2005
how to set the depth of a movie clip that is on my main timeline?
View 1 Replies
Jun 29, 2009
what i have:guy with gun who shoots bullet,bullet hits enemy,bullet removes itself,blood attaches above enemy but how would i make the blood attach below the enemy?
View 2 Replies
Mar 18, 2010
Is there a way to give a movie clip depth priority, on a MouseEvent? If so any suggestions?
View 3 Replies
Apr 11, 2007
i need to create a border in my movie. i've used two buttons for two different types of borders and a NumericStepper to specify the thickness.i createEmptyMovieClip an mc and then i use moveTo and lineTo to draw the rectangular border inside it.now, every time the new thickness is specified, a new border should appear and replace the older one. so how do i do this??
i tried using a constant depth value which solved this problem.
i have a movieclip already on stage, placed manually by me.i dont want it to get overlapped by the border and so i used swapDepths for it. but if i use a constant depth, every alternate swapDepths puts this movie clip behind the border.so, first time the border's behind. now i change thickness and again apply border, the border is over my movieclip.how do i solve this so that the borders replace themselves and the mc on stage remains on top??
View 2 Replies
Feb 23, 2011
I have about 85 movie clips on stage and they all have startDrag with MOUSE_DOWN.
here is the thing I need the active one to come forward to the top of all others.
I tried using:
setChildIndex(e.currentTarget, 85)
on the mouse over function but its not working its giving me an error
1118: Implicit coercion of a value with static type Object to a possibly unrelated type flash.display:DisplayObject.
View 2 Replies
May 11, 2004
putting a movieclip into highest depth without knowing which clip is in the highest depth
View 2 Replies
Dec 30, 2005
i wanna change color of mc. I have buttom Test and Parametri. In Test is movie testing.swf in Parametri you can change color of movie clips. in file starttesting is make like this:
in layer1 is mcPlayer. In this mcPlayer are three layers, action, container and buttoms. in action layer is this code:
Code:
mcButtonParametri.onRelease = function():Void{
addWindow("mcPar");
}
[Code]....
How can I change color of mcOksid(testing.fla), but color will be change when i push a upload buttom? WHen i push reset buttom, the color will come back to default.
Second problem, in testing.fla in layer OKSID, i have mcOksid and mcOksid2. Know if i change color of mcOksid to blue, mcOksid2 has to be blue too.
View 1 Replies
Mar 30, 2009
I have a looping movie clip and want it to speed up when the mouse rolls over one of the ends. Is there and action script that will do this? Or a different way to get it done? I faked it by making two movies with different number of frames but when you load that movie it starts over and it looks stupid. I have the scrolling animation on the site but want to put that effect on it. Click the first box after the intro to see the animation at the bottom(line of trucks) http:[url].....
View 1 Replies
Jul 6, 2009
i want to change frame rate of movie clip during run time on button click.....i have 3 movie clips...and i want to control the frame rate on button click...am using attachMovies to play the movieclips.
View 1 Replies
Apr 13, 2010
I have a movie clip to display a clock and a datagrid for showing my schedule. I want my flash to alarm with sound when the time from the clock match one time on the schedule. Here is my actionscript:
Code:
clock_mc.onEnterFrame = function() {
if (_root.timer[i]==_root.clock_mc.clock_txt.text.substr(0,5)) {
alertSound = new Sound(alertSoundMc);
[Code]....
As you can see, I use onEnterFrame to listen and check matching between time on clock and schedule but it will check all the time and when it alarmed it produced sound all the time while the time is matched. I would like my flash to alarm only one or few times.
View 3 Replies
Nov 9, 2010
I have been trying to change the depth of an object. I have only just started learning AS3, so I haven't looked into this yet.So far I have been using a trial-&-error method to try to get this piece of code to work which I found on a site, but I have not succeeded:
Code:
setChildIndex(example,numChildren-1);
I am putting this code in it's class, and I tried replacing the word example with 'this'. Can someone please help me? When I test the swf it comes up with this in output:
Code:
ArgumentError: Error #2025: The supplied DisplayObject must be a child of the caller.
at flash.display::DisplayObjectContainer/setChildIndex()
at Foreground/enterFrame()
View 10 Replies
Jul 13, 2011
Im trying to change the depth or index of a movieclip when its click. And bring it to the top of everything. The problem is that the movie clip is not added by addChild, but nested in a frame.
so if i try and use any of these:
anyMC.parent.setChildIndex(anyMC, anyMC.parent.numChildren-1);
or public function bringMCToFront($mc:MovieClip){ $mc.parent.setChildIndex($mc, $mc.parent.numChildren-1);}
by it gives me this error: Error #1065: Variable setChildIndex is not defined.
View 6 Replies
Mar 14, 2012
i want when user rollover on any movieclip it comes on top after rollout it goes it's original position but, this code is showing error.ArgumentError: Error #2025: The supplied DisplayObject must be a child of the caller.
private function pan3D():void{
excelmc=thumbswork.excel
officemc=thumbswork.office
googlemc=thumbswork.google
[code]....
View 1 Replies
Jun 9, 2010
I'm adding a bg to the same canvas, but it's overlapping everything added before it.
View 2 Replies
Apr 20, 2010
the question is a bit more involed. I have a dynamic text box, which I've put inside a movieclip. I hae a number of movieclips that I bring in using attachMovie, but my movieclip which contains my text box is underneath all the other movieclips.
I would like to know how I can tell my movie to display above all the other?
View 2 Replies
Oct 6, 2009
right now I have some balls being generated like addChildAt(ball, 0);However what if I wanted to change the order of one specific ball?So make one ball 2 and add a alpha layer inbetween so the other balls cant be clicked.
View 14 Replies
Feb 8, 2011
If i wanted to change the depth of a movieclip using AS3
View 2 Replies
Jan 26, 2009
I want to have my character walk around in a faux 3-d space using the arrow keys on the keyboard. When the character walks away it becomes smaller and when it walks closer it becomes larger. I have put together a script that pretty much does what I want - except the ratio of the height and width of the MovieClip do not stay the same. It becomes fatter as it walks away and skinner as it comes closer. Here is my main script:
[Code]...
I think the problem is with the operator here: ratio = this._height/this._width; The slash between "height" and "this" seems to be what is giving me trouble. Maybe I should be writing some other script entirely? I am not very good at script writing.
View 5 Replies
Jun 23, 2009
i'm trying to replace text in a dynamic text field within a movie clip, and it seems as if it's treating it like static text.
theBtn1.addEventListener(MouseEvent.CLICK, adjustText1);theBtn2.addEventListener(MouseEvent.CLICK, adjustText2);function adjustText1(e:MouseEvent):void{ textField1.text = "Foo"; // this works}function adjustText2(e:MouseEvent):void{ theMC.getChildByName("textField2").text = "Bar"; // this doesn't}
It throws this error:
1119: Access of possibly undefined property text through a reference with static type flash.display:DisplayObject.
View 2 Replies
Nov 4, 2009
Greetings! iam trying to change color of a movie clip in AS3 using transform command and the following code:
import flash.geom.ColorTransform;var newColorTransform:ColorTransform = box.transform.colorTransform;
newColorTransform.color = 34171200;box.transform.colorTransform = newColorTransform;
hw can i find the color number? newColorTransform.color = 34171200; previously i use in AS2 like 0xff0000 for red i will find it from the color palete..
View 1 Replies
Sep 25, 2009
I have movie clips which I made act as buttons, (Previous, Pause/Play, Next).[code]...
The button is a non-filled circle with the proper symbol in the center.
I am going to add themes to my application, where people can choose a pre-selected theme, which will load all info through a xml file (background-image, button colors, scrubber colors, etc).
How would I change the colors of the buttons in my movie clip? They are pre drawn images, that are stored in my library.
View 0 Replies
Jan 21, 2010
It it posible to change the movie clip name with code.Something likemc1._name = 'mc2';
View 2 Replies
Jul 8, 2010
i'm trying to replace text in a dynamic text field within a movie clip, and it seems as if it's treating it like static text. Is there a way around this?
theBtn1.addEventListener(MouseEvent.CLICK, adjustText1);theBtn2.addEventListener(MouseEvent.CLICK, adjustText2);function adjustText1(e:MouseEvent):void{ textField1.text = "Foo"; // this works}function
[code]......
View 9 Replies