ActionScript 3.0 :: Target One Movie Clip From Within Another Movie Clip?

Jan 21, 2010

I have two movie clips on stage: mc1 and mc2.Within both movie clips, there are 10 frames, all named frame1, frame2, etc.In "mc1" there is one button on each of the frames named btn1, btn2, etc.I'm trying to get it so when a button is pressed, (mc1.btn1 or mc1.btn10) it causes the other movie clip to advance to a certain frame.I've tried this code within the mc1 clip, on the same frame as the button:[code]But get a 1119 error. (Access of a possibly undefined property mc2 through a reference with static type.

View 1 Replies


Similar Posts:


AS3 :: IDE - Target One Movie Clip From Another?

Apr 16, 2009

I have two movie clips on my main time line. There is a button in movie clip 1 that I want to target to movie clip 2... and it's not working for me. I'm assuming that when I'm in movie clip 1, I need to tell it to go back up to the main time line, and into the movie clip 2.The site that does the same exact thing I'm trying to do is this tutorial:The buttons and the page area are two seperate movie clips, but the buttons in the button movie clip target to the page area movie clip.This is the code that I'm thinking I'm getting an error with:Code:MovieClip(root).eyecarePage.gotoAndPlay(10);- where eyecarePage is the Instance Name of the movie clip where I want the button to target to, and once it's in that movie clip, I want it to go and play frame 10 and on... but instead I get a #1009 error.

View 4 Replies

ActionScript 3.0 :: Cannot Target A Movie Clip Name

Jul 14, 2009

[Code].....

So the display list seems to indicate that I have 6 movie clips on the stage. PROBLEM: When I try to target the movie clips by name in adding the following code for example: image2.apha = 0; I get an error: 1120: Access of undefined property image2. What I don't get is: image2 is a movieclip and a movieclip has a property of alpha?

View 3 Replies

ActionScript 2.0 :: Target A Movie Clip In MX?

Oct 31, 2002

Seeing that the tellTarget function has been "deprecated" (I don't see why), how can I target a movie clip?I have a button on a frame on the main timeline, which I want to link to a movie clip that has been placed in another frame (still on the main timeline).

View 1 Replies

ActionScript 3.0 :: Can't Target Parent Movie Clip

Feb 17, 2010

I have a swf which contains a main menu bar along the top which has been added dynamically at run time. ALl the controls for this bar live inside btnHold One of these buttons loads in a new swf. There is a button within this second swf that I want to use to control the main menu bar in the top layer (I want to make it invisible for a time, or get its layer and then ensure that its not too high etc etc)However, I just can't work out how to target this btnHold from within the newly loaded swf.

View 2 Replies

ActionScript 2.0 :: Using A Variable To Target A Movie Clip?

Jul 29, 2010

I found this tutorial which seems to do exactly what I'm trying to do (the only one I've found to date), except his technique doesn't seem to work for me at all. It doesn't really seem to say anywhere which version of Actionscript he uses, but at least it seems to show that what I'm trying to do is possible for someone, which is a start.I'm trying to do exactly what he describes--I have several squares on a grid that are numbered, eg.grid_0101, grid_0102, grid_0103, and so on, for about 100 squares altogether, and I want to be able to target a given square dynamically.This is the basis of the code I started with:

Code:
var digsquare_x:String = "01";
var digsquare_y:String = "03";

[code]......

View 2 Replies

ActionScript 3.0 :: Target One Movie Clip From Another Using Buttons?

Apr 11, 2011

Im just learning AS3 and am having some problems finding the answers to what I need so im trying here. I have two movie clips on my stage.

movie clip #1 (instance name "menu_mc") has a button inside it with the instance name of "btn1_mc" and the following code (what i have as of right now...need click function) on frame 1:

[Code]...

View 3 Replies

ActionScript 2.0 :: Target A Frame In Movie Clip?

Mar 10, 2005

How do i target a frame in a movie Clip. I'm using the loadmovie command and want an alternative pathway through the site. That is, when user cliks button they go to frame 15 instead of frame 1.

View 2 Replies

ActionScript 3.0 :: Target A Movie Clip Like So :trace?

Jun 2, 2009

It's about targeting movie clips... In AS2, you just target a movie clip like so :trace (FirstMc.ChildMc1.ChildMc2.ChildMc3._x) // Will send out the x position of ChildMc3 But is AS3, i see that there's a function called getChildByName('put child name here'). But what if it's such a long way to go to that child??? Does it have to be:

FirstMc.getChildByName("ChildMc1"). getChildByName("ChildMc2"). getChildByName("ChildMc3").x

That just seems to tedious and I'm sure Adobe thought of a clean way of targetting??

View 11 Replies

ActionScript 2.0 :: Target A Frame In A Movie Clip?

Mar 10, 2005

How do i target a frame in a movie Clip. I'm using the loadmovie command and want an alternative pathway through the site. That is, when user cliks button they go to frame 15 instead of frame 1.

View 2 Replies

ActionScript 1/2 :: Targeting A Movie Clip Inside A Movie Clip Inside Another Movie Clip With A Twist?

May 9, 2010

Im able to link to a movieclip inside a movieclipUnfortunately one of the movieclips now are a scrollbar and scroll. Now the actionscript isnt working?cal.onPress = function() {gotoAndPlay(2);message1.contentMain.message.total = unit1;

View 17 Replies

ActionScript 3.0 :: Flash - Movie Clip To Play Unless The Person's Mouse Curser Is On The Movie Clip For More Than A Second

Jun 24, 2010

I am pretty new to ActionScript 3 and Flash. I don't want my movie clip to play unless the person's mouse curser is on the movie clip for more than a second. If the person just runs their curser over the movie clips really quickly, then it should do nothing. It must be more than a second. How do I code that?

[Code]...

View 17 Replies

ActionScript 2.0 :: DropTest - Check And See If The Dragged Movie Clip Is Completely Within The Bounds Of Another Movie Clip

Jan 11, 2010

I'm creating a small drag & drop activity, and I want to be able to check and see if the dragged movie clip is completely within the bounds of another movie clip (or at least in the bounds of a certain x/y zone on the main stage. I can't use dropTest because it returns true if any tiny bit of the movie clip overlaps with the dropTest movie clip.

I also thought of something that just checks the x/y coordinates of the dragged movie clip, but I'd need this to reflect a range of values rather than one coordinate. For instance, I'd want to return true if the movie clip's x is between 50-60 AND the y is between 50-60. I'm attaching a small graphic to illustrate in case my explanation isn't clear enough [URL]

View 3 Replies

ActionScript 2.0 :: On Button Release Clear Current Movie Clip And Bring In New Movie Clip

Feb 21, 2010

I have created a flash website, each button is a movie clip with an invisible button over it containing the following script

on (rollOver) {
_root.mouse_over_profile_btn = true;
}
on (rollOut) {

[Code]....

each page is also a movie clip and on release of a button its played. the problem is that when i press another button to play another movie clip 'page' the old content is still there.

Is there a way of reversing the page transition i have used to bring out the movie clip and then bring in the next movie clip.

View 0 Replies

ActionScript 2.0 :: Collision Detection - Goto A Certain Scence When A Movie Clip Collides With Another Movie Clip

Jun 22, 2005

i am making a pacman game, and i need to know how to make it go to a certain scence when a movie clip collides with another movie clip.

View 2 Replies

ActionScript 3.0 :: MCs Classes - Can't Send An Event From The Eagle Movie Clip Or The T2D Movie Clip To Tell The Other To Fade Out

Nov 5, 2010

There is a bad gap in my knowledge with Event Dispatch and Event architecture, and this problem proves it. I've been getting nowhere on this problem for two days, I've posted everything to my Flash site. Go here, please: [URL] Click on "Flash Banners" The two thumbnails represent two different classes. Each class is identical. Both are "extends Movie Clip" classes. Tweeners of various types control the hover and click methods. URL Loaders load the thumnails which I then wrap in MC's and make them buttonMode = true, etc. Hover and click to load the Banners on the thumbnails.

I can't send an event from the Eagle movie clip or the T2D movie clip to tell the other to fade out. Both Banner classes are instantiated through a separate Base class. I'm sure this has to be an Event Dispatch from one MC to another and that it can't be done by the Base class. how I can send an Event or Event Dispatch and what the code structure is so one movie clip can in one class can tell the other movie clip in the other class to disappear while it's neighbour is playing. I'm happy to post code or explain / clarify anything that's not clear.

View 1 Replies

ActionScript 3.0 :: Movie Clip On Main Timeline Receiving Input From Nested Movie Clip

Feb 23, 2011

I've got a main timeline .swf file called "blank.swf" which contains nothing but two blank movie clips one called called "pproduct", the other called "ppalette". In the script frame of this main timeline I use the simple "Loader = new Loader();" method to load a URL of an .swf file into the "ppalette" movie clip. The "ppalette" movie clip contains several color chip buttons, each of which use the same Loader method above to load an external .swf into a clip. Here's what I want to do: let those color chip buttons, when the "blank.swf" file loads, be used to load an .swf movie into the "pproduct" clip on the main timeline. I'm wanting to be able to swap depths with various movie clips which will take out the movie which has the palette, but I want whatever that palette has loaded in the original "pproduct" clip to stay there.

[Code]...

View 3 Replies

Professional :: Reusing Movie Clip As Target For Loading

May 23, 2010

If I use an empty movie clip to load a series of images into,how do I get them to load in the center?The images are all different sizes.I think this is fine, if they loaded with the center of both the target clip and the image aligning.Upper left registration point for the target is not good.

View 10 Replies

Actionscript 3 :: Bring Current Target Into Movie Clip?

Oct 15, 2010

How to bring the current target into the movie clip?

If we can set the current target into "selectMovieClip" variable then i believe we should be able to rotate or manipulate it as a MovieClip.[code]...

View 1 Replies

Actionscript 3 :: Target Movie Clip On The Stage From Doc Class?

Dec 17, 2010

I am making dynamic drag and drop game.I have a class for the dragged items containing the drag drop code.My problem is I can't call/access the movie clips I've already put on the stage in my hit test statement.Here is my code and target1_mc & target2_mc are the existing movie clips on the stage:

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

[code]......

View 1 Replies

ActionScript 3.0 :: Event Target Inside A Movie Clip?

Apr 29, 2010

How can I target an event target that is inside a movie clip?

portfolio_mc.landingBtn1_mc.addEventListener(Mouse Event.MOUSE_OUT, landingRollOutFunc);

ActionScript Code:
function landingRollOverFunc(myEvent:MouseEvent):void {
TweenMax.to(event.target, .2, {scaleX:1, scaleY:1});[code]..........

//This obviously doesn't work but it will provide an idea of what I'm trying to do:

function landingRollOverFunc(myEvent:MouseEvent):void {
TweenMax.to(MYPARENTCLIP.event.target, .2, {scaleX:1, scaleY:1});
}

View 2 Replies

ActionScript 2.0 :: Load Movie Clip Into A Target In Flash 8?

Aug 6, 2010

I have 3 movie clips. I want to load these mc (a simbol, Not xx.swf file) to 3 specific places in my frame by default by clicking a button at the same frame. How to load these mcs to these places?

View 2 Replies

ActionScript 3.0 :: Use A Movie Clip As An Xml Target To Load An External Swf Through The Xml?

Aug 15, 2011

I want to know if and how I can use a movie clip to give the coordinates to load an external swf in an exact location, through an xml file?What I have is an xml menu and instead of opening web pages, I want to load external swf files in the same swf, where the menu is located, the thing is I don't know how to give the coordinates in the target of the xml file, and I want to know if and how I can use a movieclip to do this, such as _parent.mc.loader.

View 1 Replies

Actionscript 3.0 :: Target A Movie Clip From The Main Timeline?

Apr 5, 2010

I have 7 buttons on the main stage that go to different parts of the main timeline, all of which have the same movie clip with 7 different frames. Right now it always goes to the first frame of the movie clip, but I need the second button to go to the second frame, and so on. I was originally trying to have the button itself find a frame label inside the movie clip, but now I realize I probably need to attach something to the key frames of the main timeline that tells it to go to a specific part of the movie clip. The problem is I can't figure out how to address the movie clip from the main timeline. The book I started learning from had a short section on declaring movie clips, and I cobbled together this bit of code and put in on a key frame in the main timeline.

Code: Select allvar viewwork:MovieClip = root.viewwork

viewwork.gotoAndStop(2);

I'm pretty sure that's completely wrong, as it gives me the error: 1119: Access of possibly undefined property viewwork through a reference with static type flash.display:DisplayObject.

So how do I properly reference a movie clip from the main timeline? Also, I'm using an external .as file for most of my actions, but I'm sticking this directly on the frame because I haven't even thought about trying to figure out how to target a specific frame from an external file. Is that going to cause problems?

View 1 Replies

ActionScript 2.0 :: Target Movie Clip Only Moves One Pixel?

Sep 1, 2005

I have a movie clip that I would like to slide to the right or left depending on which button the user clicks. When I test the movie and click on the buttons, the target movie clip only moves one pixel. I want it to slide into place. What am I doing wrong?

[Code]...

View 4 Replies

ActionScript 3.0 :: Drag And Drop Movie Clip On The Target

Apr 13, 2009

I have a draggable movie clip that contains a button inside to hold my code. The target area is in the root and is a movie clip. I need to be able to drag and drop on the target. When it does drop on the target it needs to play a different keyframe from the root which holds a movie clip. Below is the code I have in my button within the draggable movie:

[Code]...

it starts dragging, but for some reason the drop target isn't working or the stopDrag, because it won't stop dragging.

View 3 Replies

ActionScript 2.0 :: Flash 8 - Using A Variable To Target A Movie Clip

Apr 15, 2012

It doesn't really seem to say anywhere which version of Actionscript he uses, but at least it seems to show that what I'm trying to do is possible for someone, which is a start.

I'm trying to do exactly what he describes--I have several squares on a grid that are numbered, eg. grid_0101, grid_0102, grid_0103, and so on, for about 100 squares altogether, and I want to be able to target a given square dynamically.

This is the basis of the code I started with:

Code:
var digsquare_x:String = "01";
var digsquare_y:String = "03";
var digthis:String = "grid_" + digsquare_x + digsquare_y;
this[digthis]._alpha = 50;

I don't need to change the alpha specifically, I was just trying to see if I could get it to affect a given square in any way, and apparently the answer is no. I know that the value of "digthis" is accurate, but even blatantly telling it to refer to _level10[digthis] still gives me no results. Neither does _root.level10[digthis] which I tried just to see if it would work.

View 9 Replies

ActionScript 2.0 :: Get A Movie Clip To Slowly Move To The Coordinates Of Another Existing Movie Clip

Oct 23, 2010

it seems simple enough but i have no idea on how i could get a movie clip to slowly move to the coordinates of another existing movie clip

View 5 Replies

Professional :: Create A Smooth Transition From End Of A Movie Clip To Beginning Of A Movie Clip?

Apr 8, 2012

I created a movie clip which plays ok. But when it ends there is a slight jump, if you will, when it goes back to frame 1 to begin playing again. Does anyone know how to make the transition unnoticeable from the last frame of a movie clip to the first frame of a movie clip?

View 4 Replies

ActionScript 3.0 :: Make A Movie Clip Follows Anther Movie-clip That Could Be Moved By User?

Sep 7, 2010

iam tring to make a new project , i just wants to know how to make a movie clip ( constant speed ) follows anther movie clip <--- "which can be moved by the user "

<<<>>>> i believe that this idea is good , that i records the X and Y postion of the User's movie clip and just make the other movie clip points at this postion and move toward it ,

how to make the other Movie clip (( which is a car ! .. so it have acceleration , speed , steering , etc )) go to this position or let us say try to??

View 9 Replies







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