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


Similar Posts:


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

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 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 3.0 :: Button Code Play MovieClip Within A MovieClip?

Jun 18, 2010

Can a button play a movieclip if it lives within another movieclip? Let me explain: Buttons in a map key ran route animations on the map. Code for button (accessed by selecting button and F9) ..reads : on (release) { gotoAndPlay("BusRoute_375");}

[Code]...

All layers and consequently all route movieClips that relate to the map as well as the stop codes for the individual route animations now reside within that MovieClip which sits on a new layer above the map key layer. However, the key buttons no longer run the route animations. What should be done so that when clicked they still play the route MovieClips. Its like the button code cant see the layers it once refered to, now that they are in a movieclip.

View 5 Replies

ActionScript 2.0 :: Play A Movieclip Inside A Movieclip?

Mar 18, 2010

My question is fairly simple, but I can't find a sollution. I have a button, and I want to play a movieclip inside a movieclip from the main stage. It is the 5th frame inside the movieclip 'page' from the movieclip 'book'. I have this, but it doesn't seem to work.

View 2 Replies

ActionScript 2.0 :: Play Frame In Movieclip From Other Movieclip?

Mar 29, 2011

I was asking button to go to a movie clip on the main timeline that had a stop frame at the beggining. Flash won't do this because it doesn't recognise anything past a stop frame and used _parent instead of _root

code on the button:

on (release) {
_global.destination_detail = "first"
_parent._parent.gotoAndStop("content_mc");
}

And in the stop frame that's at the beginning of the movieclip that contans my content:

content_mc.gotoAndStop(_global.destination_detail) ;
stop();

So I've created a variable: destination_detail

View 4 Replies

ActionScript 2.0 :: Play Frame In Movieclip From Other Movieclip

Mar 29, 2011

I can't see how this isn't working:[code]The button with this funtion is nested within a movieclip on the main timeline.'content_mc' is the instance name of a movie clip on the main timeline that contains frame label "1". I want to play frame label one by clicking on this button.

View 8 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 3.0 :: Tell A Movieclip Within A Movieclip To Play?

Sep 14, 2009

i am trying to make a movieclip within a movieclip play using event.target but cant seem to make it work...

Code:
var imc:MovieClip = new inputMC();
addChild(imc);
imc.sendButton.addEventListener(MouseEvent.MOUSE_OVER, mouseOverButton);

[Code]...

View 2 Replies

ActionScript 3.0 :: Play MovieClip From Different MovieClip?

Oct 26, 2009

I am trying to play a movieclip from a certain frame in a different movieclip. I've tried the following but all of them give errors.

Code:
clipname.gotoAndPlay(1);
Code:
_root.clipname.gotoAndPlay(1);
Code:
stage.clipname.gotoAndPlay(1);

The error is:

Access of undefined property clipname.

View 3 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

ActionScript 2.0 :: Reference Something Inside Movieclip

Jul 21, 2009

I've looked all over the web, including this forum and can't seem to find a solution to my problem. I have the following:A main movie (root) that loads external swf files as needed. These external swf files have movieclips within them I want to reference. So I have the following code in the main movie (root).[code]Everything up to the point of tracing through the loaded movieclip works fine. When the movie is tested, it does not seem to want to trace through all child information of the loaded movieclip.Essentially I'm doing this to see what is inside the loaded movieclips (though I know 'cause I can look at the fla file); however I need actionscript to be able to see into the loaded movieclips so that I can adjust another movieclip within the loaded movieclip as necessary.

View 2 Replies







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