ActionScript 3.0 :: SetChildIndex - Getting MovieClips To Swap Depths

Oct 4, 2011

I have this script I am writing where when someone hovers over a button it displays a popup box until they roll off. I have that function working alright, but I need the movie clips to swap depths, I realize I can do this with setChildIndex but I'm running into a small problem with my children/parent situation.
My items are added as such:
root > color_mc (blue or red or whatever) > button (this is the hover)
I have the event listener added to the button for each color, but I need it so that when the button is rolled over, it takes the color_mc and moves it to the -1 spot. I've tried writing the code a number of ways but can't seem to get it.

Code:
function manageMouseOver(event:MouseEvent):void{
var parentClip = event.target.parent.name;
parentClip.setChildIndex(parentClip, parentClip.numChildren - 1);
event.target.parent.gotoAndPlay(2);
}

That code gives me the following error:
Error #1069: Property numChildren not found on String and there is no default value.

View 4 Replies


Similar Posts:


ActionScript 2.0 :: Swap Depths - If I Click On The Space Between The Nested Clips In The Top Clip It Actually Is Hitting The Buttons(movieclips) On The Other Clip Under It?

Apr 11, 2007

I have two main clips with clickable clicks within each. I am using swapDepths on the two main clips in a tab navagation fashion. The problem is that if I click on the space between the nested clips in the top clip it actually is hitting the buttons(movieclips) on the other clip under it. Any suggestions?

View 1 Replies

ActionScript 3.0 :: Know How To Swap Depths

Aug 28, 2010

ts an interactive gallery where when a photo is selected it plays the movie clip and the photo grows to fill the screne. The problem is, since the animations take part within the movie clips and all the movie clips exist on the same layer when they are selected and grow to fill the screne they are being hidden behind all the movieclips infront of it in that layer  I know that there is an action to bring movieclips to the highestdepth or to front on click/release but i do not have a clue where to start

View 5 Replies

Swap Depths: Not Working With Animation

Jul 31, 2009

*I can't post the file due to the company policy, so I'll do my best to explain. 3 movie clips: slide 1, 2, and 3. Each loads an external image.

Layers (how I have them set up):
slide 1
slide 2
slide 3

The slides have a 3d feel, as if they are in the distance. When the user clicks one, the slide(mc) motion-tweens towards the screen, while the other 2 stay back. Obviously, if slide 2 comes towards the screen then slide 1 will be over top of it DUE TO layer structure (above). And of course, 1 & 2 will be over slide 3. To get around this I made a "current" layer over top of all the slide layers. So if I click on slide 2/3 then the tween is up on the "current" layer instead of the "slide 2/3" layer so that it's the highest.

[Code]....

View 2 Replies

ActionScript 3.0 :: Swap Depths In Layer Only?

Sep 16, 2011

I use this line to bring an object foward, but if i want to bring it to the front of its own layer only. setChildIndex(helpmenu,numChildren - 1)

View 4 Replies

ActionScript 3.0 :: Correct Way To Swap Depths?

Jan 10, 2012

Its been a while since I've done anything in AS3. I was hoping someone could point me in the right direction. I am working on a type of menu where there are 6 cards and on roll over of one of the cards it is brought to the front of the stack. What is the correct method of doing this in AS3? Can someone post a quick example or point me in the right direction to a link that does a good job covering this. I did a quick search and didn't find anything right away that did a good job explaining so I thought I would head over to AS.org

View 2 Replies

ActionScript 2.0 :: DepthHeight Swap Depths ?

Feb 13, 2007

i have this section of code:

[AS]
var s:MovieClip = this.createEmptyMovieClip("1a", 1);
[/AS]

because of the "1" at the end its ontop of all my content is there a way to have it sit right at the bottom depth underneath everything??

View 1 Replies

ActionScript 2.0 :: Swap Depths Between _root. And Nested MC?

Apr 23, 2010

I've realized that I am unable to swap depths between _root. and nested mc's based on its _y axis.For example, I use this code:

Code:
_root.player.onEnterFrame =function() {
this.swapDepths(this._y-230)

[code]....

View 1 Replies

ActionScript 2.0 :: Timeline Tween Swap Depths?

Jan 19, 2009

I have a timeline animation various movie clips with play bk and forward controllers for when it is pressed it display (grows, rotates etc), is there anyway of having it so on each layer there is a swap depth command to make whichever button is pressed make the mc's appear at the top?

View 1 Replies

ActionScript 2.0 :: Navigation ForLoop Swap Depths

Jun 30, 2009

This should be interesting in explaining what it is i'm looking for. I have multiple buttons on top of each other. And when the hit state on the other side of the screen is rolled over the text will change, which are all overlapping each other. Would swap depths be the best answer for this to bring the one I'm rolling over to the top? And how would I implement it into my for Loop? I'm using the for Loop for my navigation:

[Code]...

View 3 Replies

ActionScript 2.0 :: Integrate Swap Depths With Map Scrolling?

Jun 25, 2010

I'm trying to find a way to integrate swap depths with map scrolling. Here is my current code:

SWF:

[URL]

Code:
var mapItem:Array = new Array(_root.tree1, _root.building1, _root.keith,_root.shinru);
mapControl = function () {
_root.player.swapDepths(_root.player._y);

[code]....

The problem lies within the fact that the bounds are pushing away the player too fast for Flash to finish cycling through the array of items.

View 1 Replies

ActionScript 2.0 :: Swap Depths Code In Timeline?

May 27, 2010

So I'm placing all my code on the timeline so I don't have to change the code on every single button in my Flash. Here's the code that I am using.

Code:
buttonName.onMouseDown = function()
{

[code].....

View 3 Replies

Swap Depths For Multiple Movie Clips At The Same Time?

Aug 18, 2005

is it possible to swap depths for multiple movie clips at the same time? how about swapping for negative depths? or will that kind of thing lead me into probs later?

View 8 Replies

ActionScript 2.0 :: Swap The Depths Of Externally Loaded Movies?

Jan 21, 2004

is it possible to swap the depths of externally loaded movies? if so, what is the best way to do it?

View 1 Replies

ActionScript 2.0 :: Swap Depths In Class Definition Using Variable Name For Movieclip?

Jan 15, 2010

I have a class definition as file. In it a variable gets passed to into a function (parameters). Then I want to use the name of this function to swapDepths with another movieclip.

Code:
private function alphaZero(clipToSwap) {
trace(clipToSwap+"+clipToSwap");

[code].....

View 1 Replies

ActionScript 2.0 :: Make Xscale Larger When OnRollOver / But Need To Swap Depths

Jan 4, 2004

I am making a photo gallery with thumbnails and when the mouse rolls over them, they increase in size. Problem: when they increase, they do not cover the other thumbnails completely, since it is only an _xscale percentage increase and not a new movie clip. So you can see all the other thumbnails over the increased photo size. It is a problem of swapping depths I'm sure--but do I have to take off all the thumbnails from the main level and load them dynamically onto different levels in order to be able to swap depths?

View 4 Replies

ActionScript 2.0 :: Make _xscale Larger When OnRollOver But Need To Swap Depths?

Jan 4, 2004

I am making a photo gallery with thumbnails and when the mouse rolls over them, they increase in size. Problem: when they increase, they do not cover the other thumbnails completely, since it is only an _xscale percentage increase and not a new movie clip. So you can see all the other thumbnails over the increased photo size. It is a problem of swapping depths I'm sure--but do I have to take off all the thumbnails from the main level and load them dynamically onto different levels in order to be able to swap depths?

View 4 Replies

ActionScript 3.0 :: SetChildIndex Over Movieclips Not Working Properly?

Aug 30, 2010

the code which works over stage, is not working properly over a movieclip..sample, i have many objects to stay at different indexes at flash..with that code block below. I add 300 mc's to stage,

Code:
for (var j:Number = 0; j<300; j++) {
var mc2:MovieClip = new MovieClip();
stage.addChildAt(mc2, j);
}

TO be able to change indexes with different items.. i have random movieclips which have to be placed indexes between 5 and 300.. And everything goes great when i do this directly at stage..But when i do this with a movieclip.. example;

Code:
for (var i:Number = 0; i<300; i++) {
var mc3:MovieClip = new MovieClip();
my_mc.addChildAt(mc3, i);
}

i can't see the movieclips inside.. but i know they are at their right indexes..but somehow they are getting behind those fake movieclips..

View 15 Replies

ActionScript 2.0 :: Depths Particular To Movieclips?

Feb 3, 2005

Are depths particular to the timeline of the movieclip you refer to it? In other words, let's say you have actionscript to duplicate a movieclip 100 times, each time putting the new one on the next depth. But the code and the movieclip to be duplicated are themselves inside a movie clip. Are those depths inside that movieclip?

So for instance, let's say the parent movieclip lies on the maintime. And on a layer above that is a button. Are those duplicated movieclips going to be visibly above or below the button? A tangible example: I would like to have a smoke/steam effect that uses duplicateMC and depths. But I need the effect to be underneath other movieclips at certain times. Can I just contain the effect inside a movieclip that sits on a layer below other movieclips on the maintimeline? Or do I need to stop the effect and do a swapdepth with whatever the last depth was?

View 6 Replies

ActionScript 2.0 :: Depths Particular To Timeline Of MovieClips?

Feb 3, 2005

Are depths particular to the timeline of the movieclip you refer to it? In other words, let's say you have actionscript to duplicate a movieclip 100 times, each time putting the new one on the next depth. But the code and the movieclip to be duplicated are themselves inside a movie clip. Are those depths inside that movieclip? So for instance, let's say the parent movieclip lies on the maintime. And on a layer above that is a button. Are those duplicated movieclips going to be visibly above or below the button?

A tangible example:
I would like to have a smoke/steam effect that uses duplicateMC and depths. But I need the effect to be underneath other movieclips at certain times. Can I just contain the effect inside a movieclip that sits on a layer below other movieclips on the maintimeline? Or do I need to stop the effect and do a swapdepth with whatever the last depth was?

View 7 Replies

ActionScript 2.0 :: Change The Depths Of Two Movieclips On The Same Layer With Swapdepths?

Jan 6, 2009

can i change the depths of two movieclips on the same layer with swapdepths? like...

mc1.swapDepths(mc2 + 1);

it's not working for me. So i figure you can't do it with two mc's on the same layer...

View 5 Replies

ActionScript 3.0 :: Swap Two MovieClips?

Dec 14, 2009

i am trying to implement an image gallery in as3. I have already did the same with as2. I am trying to migrate to as3 version. I have two movieclip holders name "holder0" and "holder1" on the stage.These two moviclips are created statically on the stage to hold images.Now i want to swap the two movieclips.

View 6 Replies

ActionScript 1/2 :: Add And Swap Movieclips During Runtime?

Apr 22, 2009

I figured out how to add and swap movieclips during runtime, but how do I insert script into it?

View 7 Replies

ActionScript 3.0 :: Swap Movieclips In Between Flash Files?

Aug 31, 2009

what is the best way to take a movieclip from one flash file and transfer it to another?

View 1 Replies

As3 :: Flash - Swap Depth Movieclips In Fullscreen

Oct 11, 2011

I asked this question yesterday but I found out that my problem is using fullscreen my goal is 2 mc 2 buttons : if btn 1 is clicked mc1 fullscreen and mc2 appears at the right bottom corner on top of mc1 if btn 2 is clicked mc2 fullscreen and mc1 appears at the right bottom corner on top of mc2 stage.swapChildren or setChildIndex is the way but with the fullScreen I had this error appears

[Code]...

View 1 Replies

ActionScript 1/2 :: Swap Movieclips With Another Keeping X Y Coordinates In Same Location?

May 30, 2010

I am trying to swapping a movie clip with another movie clip keeping the x y coordinates in the same location as the original. This is to be done within a case statement. [code]...

View 1 Replies

ActionScript 2.0 :: Implement The Swap Depth Function To Movieclips?

May 30, 2007

im having some trouble when trying to implement the swap depth function to movieclips that have the setmask function implimented to them. the problem is that i can get the swapdepth to work but when the setmask is implimented at the same time the movie clips will not swap depths.

the code that i am using to set the mask is _root.bgmasked.setMask(_root.dragger); this is on frame one in the action/code layer bgmasked is the imaged being masked by dragger.

[Code]...

View 2 Replies

SetChildIndex To Move Selected Mc To Top

May 28, 2009

I'm trying to use the setChildIndex(); property to move a mc to the top of the stage when that particular mc is clicked on. I'm still not sure what is meant to go in the parentheses? Sorry, still new to AS3.0. The mc has it's own class called Ball and this is where I'm calling the setChildIndex property, in the dragIt function. Here's the code for the Ball class....

[Code]...

View 2 Replies

ActionScript 3.0 :: SetChildIndex For A Video?

Dec 10, 2009

know how to set the Child Index for a video inAS3 ? I have a class that extends the video class and I call it from my main class file. In my main class file I have other Movie Clips that I wan to put on top of the video instance

View 2 Replies

ActionScript 3.0 :: SetChildIndex Seems To Have No Effect?

Jan 21, 2010

I am trying to set a Sprite's z-index to topmost on mouseOver. In my mouseOver event I am calling:this.parent.setChildIndex(this, this.parent.numChildren - 1);If I trace the index of this before and after the call, the index has changed but my sprite still appears to be behind it's siblings.I am changing the scale of the object on mouseOver as well

View 3 Replies







Copyrights 2005-15 www.BigResource.com, All rights reserved