ActionScript 3.0 :: Make A Reference To A Movieclip Instance That Is In Another Movieclip?

Jul 17, 2011

I am trying to make a reference to a movieclip instance that is in another movieclip.

Here's the deal: I have a main timeline for different pages of a website...then within that I make all of the art on each page into a movieclip so I can do animations every time that main timeline frame is called to, yet still keep my main timeline clean.

Within one page's movieclip I have a few buttons that I want to use to go to other pages by referencing them on the main timeline.I have been using this: (home_about is the about us button on my home page, and frame 31 is on the main timeline).

home_about.addEventListener(MouseEvent.CLICK, fl_ClickToGoToAndPlayFromFrame_6);
function fl_ClickToGoToAndPlayFromFrame_6(event:MouseEvent) :void
{[code].............

Since this home_about is within another movieclip,I get the access of undefined property error. Do I need to change the code I've pasted above or add in variable definitions to fix this?

View 1 Replies


Similar Posts:


CS3 Play (reference) MovieClip Instance From Within MovieClip

May 20, 2009

I am trying to create an interactive graphic. Basically, it's three squares layered on top of each other, with a large square in back, a medium square centered in the middle of the large square, and a small square in front centered in the middle of the medium square.

When you roll over the medium square, say, it expands to almost the size of the large square and some text fades in, and the small square on top of it fades away. When you roll off of the medium square, it goes back to it's smaller size, and the small square fades back in.

Currently, I have the actionscript in the movieclip to make the medium square get larger and smaller (and the text fade in), but I need to somehow reference the instance of the small square movieclip to hide it when I roll over the medium movieclip.

My actionscript for the medium square activity, currently:

Code:
stop();
this.onEnterFrame = function(){
if(rewind == true){

[Code]....


how to have this rolling over action get rid of the small square and then bring it back on roll out.

View 2 Replies

ActionScript 3.0 :: Reference A Particular Instance In Movieclip?

Oct 2, 2009

I have a movieClip and would like to run a hitTestPoint() if statement on it, but only for a particular instance within the movieClip.

Would: 'movieClipName'.'InstanceName'.hitTestPoint () { work?

View 1 Replies

ActionScript 3.0 :: Reference Instance Of MovieClip From Array

Mar 23, 2012

I created an Array of lrgIcons that contains several MovieClips, they are then positioned within a second MC and pushed to a second array of lrgIconsOnStage, they are enabled as buttons and assigned an event listener (all of this works fine). Problem is, I want to know which lrgIcon is selected and react to it with an if statement. When I trace the array of lrgIconsOnStage I get [object amazonLrgIcon],[object emailLrgIcon],[object gmailLrgIcon],[object messagesLrgIcon],[object missedCallsLrgIcon] and when I trace e.target I get [object amazonLrgIcon] (depending on which item I selected, which in my mind, should trigger the code correctly, but it does nothing, Why?

Code:
var currButton:String;
var lrgIcons:Array = new Array(amazonLrgIcon,emailLrgIcon,gmailLrgIcon,messagesLrgIcon,missedCallsLrgIcon);
var lrgIconsOnStage:Array = new Array();
var lrgIconPosY:int = 69;
var lrgIcon:MovieClip;
[Code] .....

View 7 Replies

Actionscript 3.0 :: Reference Movieclip Instance On Stage?

Nov 21, 2010

1) I have a movieclip instance on stage (simple graphical element that represents platforms for a hero to run and jump along). I have placed it on the stage with an external class engine.as and in this class it is called myPlatform and is an object of Platforms.as. The movieClip is called platforms and from a trace(myPlatform.name) the instance name is instance3.

2) I am attempting to access the properties of myPlatform in an Enterframe event loop in my character control and collision class (called hero.as)Basically here is the bit of code I am trying implement within Hero.as :

if (myPlatform.hitTestPoint(x,y,true)) { // if a platform is hit
trace("hitME");
y--;
tGravity = 0; // reset
break;
}

Here's the error that I get:

1120: Access of undefined property myPlatform

This all worked when I was writing actionscipt within the FLA file, on the timeline frame 1.I simply don't know how to access myPlatform from within the external Hero.as class! Do I need to create a variable?

View 1 Replies

Actionscript 3 :: Reference From The DocumentClass A Movieclip Created By An Instance Of Another Class

Aug 21, 2011

I have this main (document class) in a Flash project:

package {
import flash.display.MovieClip;
import flash.events.Event;

[Code]....

Now: if I pass a reference (ref) of the main class to Other and I add clippo as you can see in the first case, I can reference the movieclip clippo from the main (getChildAt(0) is "clippo" from the main). But, is there any way to use the second method (no ref) and do the same from the main class? I can see clippo onstage when Other creates it but I can't understand where clippo "lives" into the DisplayList.

View 2 Replies

ActionScript 3.0 :: Reference Movieclip Instance On Stage From External Class File?

Nov 21, 2010

I've been searching around all afternoon, and am pulling my hair out. 1) I have a movieclip instance on stage (simple graphical element that represents platforms for a hero to run and jump along). I have placed it on the stage with an external class engine.as and in this class it is called myPlatform and is an object of Platforms.as. The movieClip is called platforms and from a trace(myPlatform.name) the instance name is instance3.

2) I am attempting to access the properties of myPlatform in an Enterframe event loop in my character control and collision class (called hero.as)

Basically here is the bit of code I am trying implement within Hero.as :

[Code]...

This all worked when I was writing actionscipt within the FLA file, on the timeline frame 1. I simply don't know how to access myPlatform from within the external Hero.as class! Do I need to create a variable? Is there a really easy way to do this with some syntax/command that I have not learned yet?

View 3 Replies

ActionScript 3.0 :: Make A Class Recognize A Movieclip By Its Instance Name?

May 24, 2011

how can i make a class recognize a movieclip by its instance name?

View 1 Replies

ActionScript 3.0 :: Make Button Instance Containing Movieclip Play Specific Frame?

Sep 27, 2011

What I want to do is have one movieclip that has many frames and turn that into a button and then make different instances of the button and have those instances display a certain frame of the underlying movieclip.

View 17 Replies

Flash :: Address A Named Instance Of A Movieclip From The Class File Of The Movieclip?

Jun 1, 2011

I have a movieclip instance named 'placeholder' on the canvas, and I want to change the alpha of the named movieclip from it's class without effecting the alpha of all the movieclips of the same type. How would I specifically target the named movieclip instance that is on the canvas?

View 3 Replies

Actionscript 3 :: Calling MovieClip(root) From A Dynamic MovieClip Instance Produces Error 1034

Jan 14, 2012

For some reason, the same code works now, without any problem at all. I don't know what happened, or why, but I no longer have this problem Here's the original post: To put simply, I created a MovieClip, put it with addChild() to stage, and when I tried to call this piece of code:

[Code]...

View 2 Replies

ActionScript 3.0 :: Access A Movieclip Via Its Instance Name In Another Movieclip Class?

May 28, 2011

how can i access a movieclip via its instance name in another Movieclip class?

and a nother question how can i access a movieclip via its class name in another movieclip class?

BTW i want to access the movieclip child

View 4 Replies

Actionscript :: Reference A Dynamic Movieclip From An Outside Movieclip

Feb 21, 2010

I have built a movieclip (parentMC) that houses two movieclips within it (mcA, mcB).

in mcA, i'm dynamically attaching movieclips from the library through a loop.

in mcB i'm trying to reference a particular movieclip from mcA via "_parent.mcA". Doesn't seem to be working. However, when i reference said movieclips from the loop within mcA - or even parentMC, it works fine.

View 2 Replies

ActionScript 2.0 :: Reference A Dynamic Movieclip From An Outside Movieclip

Feb 21, 2010

i have created a movieclip (parentMC) that houses two movieclips within it (childA and childB)

in childA, i am dynamically creating movieclips via a loop:

Code:
var newX = 0;
var pagTotal = 8;
for(i=1; i<pagTotal+1; i++){

[Code].....

...and in childB i'm trying to reference one of these created movieclips via "_parent.childA.pagClip01" so on and so forth.

but they dont seem to be working. when i trace the dynamic clip from within childB i keep getting "undefined" in the output. however, I can reference the movieclip from within childA, and even from parentMC no problem.

i've used _root and _level0 absolute paths and still the same failed result.

View 1 Replies

ActionScript 2.0 :: MC - Make A Movieclip Move Slower At A Certain Place In Movieclip

Mar 13, 2004

I'm trying to make a movieclip move slower at a certent place in my movieclip. This means, that the speed needs to be lowered when e.g. showing af picture. Here is the situation. I have a movieclip running different pictures. E.g. the first runs for 115frames and fades out. Instead of runing 115 frames i want the movieclip to run 5 frames (picture fading in) and the stops or delays for 10sek and then goes to frame 6 from where the picture fades out. Where in the movieclip should i place this Action Script?

View 1 Replies

ActionScript 3.0 :: Get A MovieClip To Make Another MovieClip Within It To Move Upon MouseClick?

May 9, 2010

This may come across as beginner stuff: I'm working In ActionScript 3.0. I have a MovieClip called FloorStatusChanges and within it are two MovieClips called Floors and StatusChanges.The MC called Floors contains Three wireframe-looking floors(each floor has it's own MC).The MC called StatusChanges contains three buttons that have the Instance Names of FirstFloorButton, SecondFloorButton, and ThirdFloorButton.Within the FloorStatusChanges MC, I've set up a motion tween for these wireframe-looking floors to move into and out of the stage so that upon clicking one of the buttons in StatusChanges it would, in theory, cause this motion tween to happen. It has stop(); commands between every motion:Within the StatusChanges MC, there are 4 layers. 3 are for each button consecutively and 1 for the Actionscript. This is how they look:Here's the set of actions I've given for the first frame:

ActionScript Code:
SecondFloorButton.addEventListener(MouseEvent.CLICK, SecondFloorSelect);
function SecondFloorSelect(e:Event){

[code]....

View 0 Replies

ActionScript 3.0 :: Make A MovieClip Targetable Even If It Is Covered By Another MovieClip?

Nov 19, 2010

How do I make a MovieClip targetable even if it is covered by another MovieClip?

View 4 Replies

ActionScript 3.0 :: Make Movieclip Detect Click Of Another Movieclip?

Jan 30, 2011

I want to be able to have my ketchup cursor and click on the buns and the buns go to the ketchup frame and vice versa with the mustard, but if the ketchup is already on then it would go to the frame with both mustard and ketchup.I would post my code but I dont really have much to post except the basic eventlistener function. I have googled it a million times and cant seem to find what im looking for.

View 6 Replies

ActionScript 2.0 :: Make A Movieclip Button Open Another Movieclip?

Oct 17, 2006

What is the code to make a movie clip button....when pressed...open or plays another movieclip...example.i have a button..and its a movie clip with roll over and rollout effect..once pressed...how do i make it link to an outside movieclip.

View 6 Replies

ActionScript 2.0 :: Reference The Xth Movieclip Child Object Within The Nth Movieclip Object?

Oct 20, 2009

How do I reference the xth movieclip child object within the nth movieclip object? _root["Object_"+n]["Child_Object_"+x] doesn't seem to work.

View 1 Replies

ActionScript 2.0 :: Make A Movieclip Face Another Movieclip?

Jan 22, 2009

I have found scripts to make them face the mouse, but when I try to tweak them to face another movieclip, they don't work.

For examples purpose make the MC: arrow face the MC: target.

View 14 Replies

ActionScript 2.0 :: Reference Movieclip Within It?

Jul 26, 2004

If I have movieclip named box01_mc inside movieclip btn01_mc and I wanted to change box01_mc's alpha to 0 on the rollover of btn01_mc how would I write this? I tried writing the following code on btn01_mc but it didn't work[code]...

View 6 Replies

ActionScript 3.0 :: Reference Maintimline From Movieclip?

May 1, 2010

I have a movie clip I am adding to the stage via addChild() within this movieclips timeline I am trying to reference functions and variables on the main timeline.[code]...

View 4 Replies

ActionScript 3.0 :: Reference A MovieClip Via Variable?

Nov 12, 2011

The scene is a number of movie clips, all already added to the stage (i.e. not dynamically) and when one is clicked, I need to call a property of that clip. [code]...

View 3 Replies

ActionScript 3.0 :: Use A Variable Value As A Reference To A MovieClip?

Oct 14, 2008

How do you use a variable value as a reference to aMovieClip?I'd like to do this:

A2.visible = false;
myVar = A2;
myVar.visible = true;

[code]......

View 1 Replies

ActionScript 3.0 :: Dynamic MovieClip Reference?

May 9, 2009

how does one reference a MovieClip instance dynamically in AS 3.0? Example, I create a new instance of a "marker" MovieClip class that inherently has within it a series of embedded MovieClips labeled: "m1", "m2", "m3" etc ... and I want to be able to dynamically reference those embedded MCs.I used to do this all the time in AS 2.0, and can't recall how to do it in AS 3.0.I know it is something like this:

number = 1;
marker = new StaticMarker();
var thisMarker = this.marker.m[number];[code].........

View 3 Replies

Flash :: Remove Movieclip Reference?

Oct 11, 2010

I have a movieclip (childMc) that is the child of another movieclip (parentMc) on the stage.My code creates a reference (refMc) to the child movieclip on the stage, and then deletes the previous parent movieclip (parentMc) through a call to function deleteChild. The problem is that the delete is deleting the reference also. How do I break the reference so that the reference (refMc) is kept on the stage? Here is my code:

Stage Code:
var refMc:MovieClip;
var parentMc:MovieClip=this.addChild(new parentSymbol()); // parentSymbol has childMc

[code].....

View 2 Replies

Flash :: Reference An Movieclip With Same Name In An Array?

Mar 6, 2011

I realize this is very basic but i need a quick way of referencing all my objects in an array,I have a series of movieclips with instance names "block1" "block2"... etc.

I there a quick way to reference these in an array something like "block"+1 ?

View 1 Replies

AS3 :: Link A Reference To A Movieclip In Another File?

Jul 3, 2011

In my main AS, I am using a MovieClip as a Container despite of the stage. In another AS file, I want to take the Container as a reference as well as addChild (such as bullets etc) to it, but I really don't know how to write the code.

If I only addChild in the current (sub)AS, it's working, but it's just a problem to removeChild.

View 2 Replies

ActionScript 3.0 :: Reference The Root From A Movieclip?

Feb 24, 2009

I want to control the playback of the root from within a movie-clip.

neither this.gotoAndPlay(n), nor root.gotoAndPlay(n) work.

View 2 Replies







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