ActionScript 3.0 :: Targeting Nested Movieclip On Different Frame?

Oct 13, 2011

I always face this problem when coding with flash, and still not able to get a solution for this problem....
 
if the nested mc is in the 1st frame then I can use: Level1_mc.Level2_mc.Level23_mc.gotoAndStop("2");
 
If refering nested btn I will use: MovieClip(parent).gotoAndStop("2");
 
so my question is, how about refering an mc from main timeline into nested mc but different frame( frame 4,5 or 6....)?

View 6 Replies


Similar Posts:


Actionscript 3.0 :: Targeting A Frame In A Nested Movieclip From Another?

Jun 1, 2009

On my main timeline, I have a movieclip called "mainpage". Within "mainpage", I have a button that when clicked upon, needs to go back to the main timeline, into another movieclip, and to a specific frame in that movieclip. The code I've been using for all my other buttons is this:

Code: Select allfunction goAdler (e:MouseEvent):void{
MovieClip(parent.parent).gotoAndStop("adler");
}
adler_proj_btn.addEventListener(MouseEvent.CLICK, goAdler);

In that particular case, the button is going up to the parent movieclip of it's parent to a specific frame label.The problem I'm having is that I need for this button within "mainpage", rapp_proj_btn, to go to the main timeline, go into a movieclip a few frames down called "portfolio_content" (on a frame labelled "Portfolio"), and to a frame labelled "rapp". No matter what I've tried, I can't seem to target the "portfolio_content" movieclip, even though I've put the instance name on it and everything. I can, using the code below, get the rapp_proj_btn to go to "Portfolio", but I can't get inside that "portfolio_content" movieclip that sits on that frame.

This is the code I use to get to the proper frame:

Code: Select allfunction goRapp (e:MouseEvent):void{
MovieClip(root).gotoAndStop("Portfolio");
}
rapp_proj_btn.addEventListener(MouseEvent.CLICK, goRapp);

I tend to get an error describing not being able to get to an undefined property called "portfolio_content", and to be honest, in AS3, I'm not exactly sure how to go about fixing that error. I've tried calling the "portfolio_content" instance name in the code (right before gotoAndStop), but it doesn't recognize the movieclip.

View 12 Replies

ActionScript 3.0 :: Targeting Nested MovieClip?

Jan 26, 2010

I have a main swf that loads an external swf (WNC.swf). The external swf (WNC.swf) contains a scrollPane that loads another external swf (WNC_DATA.swf). I'm trying to target the WNC_DATA.swf from the main swf, so I can tell it to go to frame (2). The following code targets the first child swf (WNC.swf), however I'm unable to target WNC_DATA.swf inside the scrollPane.

[Code]...

View 5 Replies

ActionScript 2.0 :: Targeting Button Nested In Another MovieClip

Feb 27, 2008

I built a button, but as a movie clip. It's nested with in another movie clip on the main timeline. How do I go about targeting the button?- when I have it on the main timeline, it works fine. But once it's nested. The action script can't find it.

Here is the code I'm using:

btn1.onRollOver = function () {
this.gotoAndPlay("in");
} btn1.onRollOut = function () {
this.gotoAndPlay("out")
}

View 10 Replies

ActionScript 3.0 :: Targeting A Button To A Frame Inside A Movieclip?

Jul 9, 2009

How do you target a certain frame number/name from outside of that specific movieclip?

Code:
whoweare.addEventListener(MouseEvent.CLICK, whoweareClick);
function whoweareClick(event:MouseEvent):void{
gotoAndPlay("whoweare");
}

I'm assuming it's something with the gotoAndPlay function... but I've tried numerous things with that and nothing is working.

View 3 Replies

ActionScript 3.0 :: Controlling Nested MovieClip In 2nd Frame

Feb 29, 2012

I've got a play and stop buttons on the stage which are controlling some 3 nested MovieClips, It controlls Well the MovieClip which is located on the first frame, but when I want to stop/play the other two MC's (frames 2 & 3) I get the following error -
TypeError: Error #1009: Cannot access a property or method of a null object reference.
at jukebox_fla::MainTimeline/playMP3()
I know the problem is that I just can't control any other Nested Instances of a MovieClip Unless it is located on it's First frame. How can I stop/play the other 2 MC's (Frames 2 & 3) by coding from the main stage?

View 0 Replies

ActionScript 3.0 :: When Nested MovieClip Ends Goto Next Frame

Feb 14, 2010

I am using flash cs3 and I have a series of quotes that fade in and out. I have a movie clip that does the fading in and out and then nested in there I have the quotes.
fadeInOut1_mc (is the instance of the fading in and out)
quotes1_mc (is the instance of the timeline of quotes nested in the above movie clip)

When the quotes end I would like the main timeline in Scene 1 to move to the next frame and play.
fadeInOut1_mc is in the timeline of Scene 1
If I could do that I think I'd be off to the races, but I'm stuck on it.

View 2 Replies

ActionScript 2.0 :: Targeting A Nested MC?

Jul 13, 2006

I am creating a drop down menu and having problems adding problems to the nested MCs. I have all the actions on the root timeline and I have a one Main_MC which holds several Sub_MC's.I have the Main MC animated fine but I can't find how to control the Sub-MC's.Here is a sample of my code and I have tried _root. and this. and show below but I can't get it to work.

//main MC
Main_MC.onRollOver = over;
Main_MC.onRollOut = out;[code].....

View 9 Replies

ActionScript 3.0 :: Nested MovieClip Animation - Calling Stage Frame

Mar 4, 2010

I have an instance of a movie clip that runs and after it runs I want it to call a frame to gotoAndStop back on the main timeline (stage). What is the code for that? When the animation ends, I am simply giving it a stop(); and then I want it to go to the next frame on the main timeline. I think this used to be _root in AS2.

View 1 Replies

ActionScript 3.0 :: Targeting Nested Movie Clips?

Feb 25, 2010

Here's my example, on frame 1 is an mc I created named holder. Inside there's an mc named box. Inside box are four mcs, circles1-4, inside the circles I have four skulls. If I want to affect only the skulls, what is the proper way to go about it?For instance, whats the proper way to write a trace statement?or , if I wanted the skulls to fade individually on mouse over, how would you properly go about writing this function?
 
function over(evt:MouseEvent):void{
evt.target.alpha = .5;
{

[code]....

View 8 Replies

ActionScript 3.0 :: Targeting Nested Clip From Class?

Jul 23, 2009

I use the loader class to load in an external swf, a preloader movie in my class. (not a document class)

To target the properties in the swf (specifically the text field in it), I coerce it to a movie clip after it's loaded and add the child with:

var thumbPreloaderMC:MovieClip=evt.target.content as MovieClip;

now I can use:
thumbPreloaderMC.preload_text.text "sometext";

to reach the text field. works.

But, I want to nest that clip in a container movieclip I'm placing all the thumbnails I'm loading in, thumbContainer.

So I create the movieclip thumbContainer, add the child, then add the preloader swf to this clip.

I can't name the loaded swf, it throws an error, I googled that and see I can't name an already named clip.

I get an error "TypeError: Error #1010: A term is undefined and has no properties."

First of all, I'm fairly green with as3 still, I think perhaps I should rethink how I'm structuring this. I could and would ask how to target a nested loaded swf from a class.

is nesting clips like this from a class bad practice? What are best practices when it comes to using timeline based animations like preloaders etc by a class? I'd like to make my class as reusable as possible, but one can't create all animations and graphics from code.

View 1 Replies

ActionScript 3.0 :: Targeting Nested MovieClips Outside Of Scope

Oct 12, 2009

I have a movieclip added to the stage through a function.
ActionScript Code:
function myFunctionOne():void{
var myClipA:clipA = new clipA();
myClipA.name = "myClipA";
addChild(myClipA);
}

To access this item on the stage I have to use:
ActionScript Code:
getChildByName("myClipA");
I have some other movieclips INSIDE this clip that have also been dynamically added. If I want to reference one of those clips I have to reference them by name using getChildByName.
[Code].....
But is there a better way to reference movieclips if they are created inside a function, or is there a way to create them so they are always globally accessible?

View 1 Replies

ActionScript 2.0 :: Drag N Drop Nested .swf's Targeting?

Jul 20, 2010

I created a drag N drop .swf that works great until i pull it into the main movie. The drag works, but not the drop. I know its level's issue/pointing and the targets arent being read correctly by the main..

View 1 Replies

Flash - 2 Movieclips Not Playing Simultaneously Located On The Same Frame Nested Withing A Movieclip?

Jan 30, 2012

I have two movieclips on the same frame but on different layers located within the movieclip. The first movieclip plays just fine. However, the second one isn't going ahead even a single frame. The code that I have mentioned below is located withing the second movieclip containing background image. And I think this code is causing the issue because when I remove this it plays perfectly fine. The function of this code is to automatically re-size background image with the browser dimensions. The whole code just worked fine on the main timeline.However, when I shifted it inside a movieclip its causing an issue.

//set stage for FBF
stage.align = "TL";
stage.scaleMode = "noScale";

[code]....

View 1 Replies

ActionScript 3.0 :: Targeting Dynamically Created Nested Movieclips?

Feb 17, 2010

I'm dynamically creating movieclips with dynamically created movieclips inside them and am having trouble with targeting them.

Below is a simplified example of what I'm trying to achieve, in the real file there are a lot more movieclips and I'm creating and naming them with a for loop.

This one is just one Sprite created inside another sprite. I can target the top level sprite named "testname". However when i try target the nested MC it throws an error.

The bottom couple of traces are just test MCs I've made to make sure i got the syntax right, on targeting nested movieclips.

PHP Code:

var holder:Sprite = new test1(); 
holder.name = "testname"; 
this.addChild(holder); 

[Code]....

View 5 Replies

ActionScript 1/2 :: Targeting An FLVplayback Component Within A Nested Movie Element?

Oct 24, 2009

I'm trying to get my own buttons to load FLV movies into the FLVplayback component. I've got it to work in a simple test but making it work on a more complex level. The test is here I've named the FLVplayback instance 'my_video'The simple buttons have this script in the actions:

n (release) {
my_video.load("videonamehere.flv");
my_video.autoPlay=true;

[code].....

View 1 Replies

Professional :: "Single Frame" Inside Nested Movieclip Doesn't Work, Always Changes The Whole Thing

Sep 6, 2010

I have a character, every body part is a movieclip. Now I wanted to put a movieclip for the eyes inside of the headmovieclip so that I can change them independently from the mouth. So in the eye-movieclip that is inside of the head-movieclip I put two keyframes, one for opened eyes and one for closed eyes. I put it to "Single frame" in properties. Now, whenever I make a pose and I change the frame number under properties so that it displays the closed eyes, it does that for the whole movie, not only on the frames that I changed it.

I wanted to use that to control things like eyes, ears and the mouth individually but like this it won't work, it changes it for the whole animation.

View 16 Replies

ActionScript 3.0 :: Frame Of Nested Object - Remove Only The Event Listeners From Objects Only On Frame 1?

Jan 21, 2011

I have 3 frames each with a movie clip called map_mc. Each different map_mc have different objects that call the CollisionDetect class. Heres whats happening. objects from frame 1 will start freaking out when I goto frame 2. How do I remove only the event listeners from objects only on frame 1?

I have been trying this.currentFrame but the problem is that all the objects are inside map_mc on the first frame so no matter what it will always be 1. On the other hand MovieClip(root).currentFrame will always give me the current frame but wont tell me what the objects frame is relative to the stage.What I want to do is have something to this effect:MovieClip(root).this.currentFrame would output that this object is on frame 1 and MovieClip(root).currentFrame will tell me that the stage is on frame 2 so I can remove the listeners accordingly.

View 3 Replies

ActionScript 3.0 :: Convert Frame By Frame To Tween/Nested Animation?

Nov 19, 2010

I have an problem whereby I have created a Frame by Frame dancing human figure and now I want to move it across the screen as well as scale it using a Tween.

I have spent quite some time slightly adjusting the upper arms, forearms, hands, legs etc and creating a new keyframe for each movement. All the movements are all in one layer... ie the forearm doesn't have it's own layer etc. I am running the animation at 24fps so there is quite bit going on.

I now realise that I should have created a symbol/movie clip from the first image I created and then scaled and moved the image first before animating it's limbs but I only realized that after hours of work and I would hate to start all over again.

So basically what I have is a dancing human figure in the one spot moving it's arms and legs and I want it to move across the screen and become larger by scaling it using a Tween. I could of course re-edit each keyframe by slightly scaling and the slightly moving the figure but that will take quite some time to get right as there will be a fair bit of trial and error doing it that way.

View 3 Replies

ActionScript 3.0 :: Targeting A Nested Mc Timeline From A Main Timeline?

Dec 30, 2009

I have a main.fla which has 3 movieclips inside it. All 3 mc's have timelines that run 40 frames. The main.fla timeline has each mc instance on a frame. mc_1 is on frame 1 mc_2 is on frame 40 mc_3 is on frame 81 as the main timeline plays the clips each one fades to the other. I need to know how to target this scenerio after mc_3 plays I need to have a goToAndplay (20) set up so the animation inside mc_1 starts playing (frame 20) of mc_1.

View 5 Replies

ActionScript 3.0 :: Flash Targeting Movieclip On Stage From Inside A Movieclip

May 18, 2010

On the stage I have a movieclip called mc_back. I also have a movieclip on the stage called mc_content. Now, inside mc_content I have a bunch of code and some of it adds, or should add, an EventListener to mc_back as well as a a function that works when mc_back is pressed.

So basically, all code is written inside mc_content and some of it needs to interact with mc_back.

how to target mc_back from inside mc_content. Using stage.mc_back or root.mc_back doesn't work and Google should be my friend, but in this particular problem, it's acting more like my enemy.

View 8 Replies

ActionScript 3.0 :: Targeting A Label Inside A Movieclip From Within Another Movieclip

May 3, 2011

I have a mock up fla file showing what i am trying to attempt. I have a button nested in a movie clip on the second frame on main timeline called PageBackBtn. I am trying to get this button to target a label within a movieclip on the first frame of the main timeline. The label also is called PageBackBtn within the movieclip on frame one.

View 0 Replies

ActionScript 2.0 :: Fmx - Targeting A Movie In A Different Frame?

Jun 4, 2003

I am curious if it is possible without using some other kind of language to target a movie that is located in the same html file, but in a different frame?

Basically lets say my one swf files is a navigation bar. I then have other frames in the html file and when i click a button i want it to goto a frame in a different swf file which is in a different frame. Do i have to do a getUrl call? or is it different because is it an swf file?

View 2 Replies

ActionScript 3.0 :: Targeting Labeled Frame From Xml?

Jan 26, 2010

how do I target the labeled frame in my main timeline. this is my xml code

<?xml version="1.0" encoding="UTF-8"?>
<menu color="0x000000" font="Tahoma" size="20" rolloverColor="0xFF0033" clickColor="0xFF0033" >

[Code]....

View 1 Replies

ActionScript 3.0 :: Targeting Frame Label In An External Swf?

May 14, 2010

I have 2 swfs. One called "loves.swf" that contains 4 buttons. When you click on one of the buttons, it opens up an with an external swf, called "about_loves.swf". I would like to make each button go to a different frame labeled in my external swf. Currently, when you click on any button (btn1, btn2, btn3, btn4), they just play frame 1 from the external swf, "about_loves.swf".I would like btn2 to play frame 2 of "about_loves.swf", btn3 to play frame 3 of "about_loves.swf" and btn4 to play frame 4 of "about_loves.swf".here is my code so far:

// these two lines are needed only once, so here they are:
import local.display.ShadowBox;
ShadowBox.initialize(stage);

[code].....

View 2 Replies

ActionScript 2.0 :: Targeting Nonnative Frame Labels?

Nov 28, 2003

Targeting nonnative frame labels?

[URL]

View 4 Replies

ActionScript 2.0 :: GetURL And Local Frame Targeting In FP9

May 31, 2007

I have a two frame page - the left frame is a custom flash Tree object that parses a number of IMS-compliant manifests (basically an XML tree menu structure) and the right frame displays the href of the tree object that is clicked. If i run this from a server, it works fine and displays all links in the right frame. But if I run it from a local or network drive it opens all links in _blank.

Adobe have a technote on the new allowScriptAccess and getURL in FP9 [URL] but dont mention anything about this issue (that i can locate). I also cannot see how opening all pages in _blank can fix any "security" issues. Can anyone confirm that targeting html frames locally via getURL under FP9 is now not possible or has been changed? or is this a bug (sorry - undocumented feature)?

View 1 Replies

CS3 :: Targeting A Label Inside A Movieclip From Within Another Movieclip In AS3

May 4, 2011

I have a mock up fla file showing what i am trying to attempt. I have a button nested in a movie clip on the second frame on main timeline called PageBackBtn. I am trying to get this button to target a label within a movieclip on the first frame of the main timeline. The label also is called PageBackBtn within the movieclip on frame one.

View 1 Replies

ActionScript 2.0 :: Targeting MovieClips As Vars From Main Frame?

Nov 4, 2011

I have the MovieClip named dessin, which loads another MovieClip named dessin (dessin.dessin). Now, there is a MovieClip named displayPlane, in the new MovieClip (dessin.dessin), in the MovieClip named displayPlane, there is a variable, which goes as follows:

Actionscript Code:
var _loc3 = displayPlane.attachMovie("displayNode", "displayNode_" + projectCount, projectCount);

inside that clip, there are multiple MovieClips in vars, I am trying to specifically target one var, the following:

Actionscript Code:
var _loc8 = this.attachMovie("closeBtn", "closeBtn", 5);

I have tried this code to target that specific MovieClip with no success.

Actionscript Code:
_root.dessin.dessin._loc3._loc8

View 2 Replies

ActionScript 2.0 :: Targeting A Movieclip In A Loop?

Oct 28, 2006

i have a for loop and i want to do things with it:

for(i;i<=2;i++){
if(box+i._width>20){
var box_width:Tween = new Tween(box+i, "_width", Elastic.easeOut, 750, 20, 3, true);

[Code]....

View 5 Replies







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