ActionScript 2.0 :: Targeted MovieClips Do Not Work Once Loaded Into Container

Oct 3, 2002

I have several external SWF (child) movies that are to be loaded upon demand into another SWF container (parent) movie file. Pretty straight forward. Each of the child movies has MCs communicating with other MCs within the same child movie. For instance the timeline of one MC will have a frame action, which targets another MC instance to play(). Again, Pretty straightforward stuff.

These files work beautifully when viewed independently. The problem is when they are loaded into the parent container movie the target MC functionality no longer works. I believe it's because once the child movie is loaded into the parent movie the absolute path of the targeted MC has changed and what was once the '_root' in the child movie is no longer the actual root?

I have tried both methods in the child movie:

//method without using 'with'
_root.ContentWindow.play();
And using the 'with action like so:
//method using 'with
with (_root.ContentWindow) {
play();
}

It would seem that in theory once the Child SWF file is loaded into the Parent SWF file the targeted path would have to have another level in it - cuz now the MC 'ContentWindow' is no longer one level down from the '_root' but two levels?
For example: _root.LoadedChildMovie.ContentWindow.play()

View 3 Replies


Similar Posts:


ActionScript 2.0 :: Cycle Through Targeted Movieclips Via An Array?

Feb 3, 2010

I am trying to cycle through targeted movieclips via an array.The symbols are labeled as such, kali1, kali2, kali3, ...etc.What I wanted to do was to move selected movieclips to a particular frame via an array loop.Here is the code I am using and the output I get:

var col1:Array = [8,16];
for (i=0; i<col1.length ; i++){
kaliscope= "kali"+col1;[code].....

View 3 Replies

ActionScript 2.0 :: Get A Button To Work When Its Nested In A MC That Has An OnEnterFrame With A OnPress Command Targeted To It?

Apr 13, 2004

How can I get a button to work when its nested in a MC that has an onEnterFrame with a onPress command targeted to it?

Here's the code for my "popup" MC located on the main timeline.

popup.onEnterFrame = function(){
this.onPress = function() {
this.startDrag(false);

[code]....

Within that same MC is a button that tells it to close. However, I run a trace command to it and nothing happens. It seems like the onPress nested in the onEnterFrame is over-riding my button on(press).

View 3 Replies

ActionScript 3.0 :: Comunicating Between Loaded Child Movieclips And Parent Holder Movieclips?

Aug 6, 2010

I m trying to make sense of how to load a swf into a parent MovieClip and allow them to communicate.I ve attached two zip files � one which works fine and the other doesn�t. Unfortunately (for me), the one which doesn�t work is closer to my current project.I need to load movieclips into the parent movieclip. The parent movieclip has controls which rely on values parsed from the child movieclip.In the parent movieclips I wait until the loading is complete and so the values should be passed. However, the values aren�t passed unless I use a button (or timer), to pass the values (see the working exampes).The code which doesn�t work is:

Parent movieclip:

ActionScript Code:
stop();
var myLoader:Loader = new Loader();[code].............

View 5 Replies

ActionScript 2.0 :: Creating Multiple Movieclips In A Container Mc?

Jun 10, 2010

I have a problem creating multiple movieclips inside a container mc. The one created later always overwrited the one created immediately before it and ended up with only the last one left in the container mc. Below is the code:

[Code]...

View 2 Replies

ActionScript 3.0 :: Trace X And Y Values Of Movieclips In Container

Oct 21, 2009

point in the right direction if there's been a post previously on this, I did a search but didn't find anything. So my problem is that I'm creating objects dynamically and adding them to a movieclip container. I.e. click button -> generate new instance of Item class -> container.addChild(item).

[Code].....

What on earth am I missing?! I've googled and found working examples of that, but it just does not do the trick for me. I'm compiling the project as an Adobe AIR file, but as far as I'm concerned, it should not intervene with the x and y values of the movie clips. I also tried getting the values by methods in the Item class, but with no luck.

View 9 Replies

ActionScript 3.0 :: Check How Many MovieClips Exist In A Container?

Mar 8, 2011

How can I check how many movieClips exist in a container and how much space are they taken?

In other words, how can I make this calculation if I have a rectangular movieClip (containerMc) that is 5x1px and five square movieClips (sq1Mc,sq2Mc, sq3Mc, sq4Mc and sq5Mc) that are 1x1px and which can dynamically be placed inside containerMc and I want to know how many and which of these five movieClips already exist in containerMc so I can determine where the next square movieClip needs to be placed?

Can someone be so kind and show me how to do this or direct me where I can find the answer?

View 4 Replies

ActionScript 2.0 :: MovieClips Within Another - Loading Container On Stage

Jul 29, 2005

I've got a movie clip that consists of a few other movie clips. This is to maintain a certain degree of order in the chaos. I use action script to load the container mc on the stage. Now I want to change some properties of on of the contained mc's, but they seem to be unreachable. So I did a little testing and I found out that when you just place an instance on the stage, those contained MC's are accesable, you can see in the debugger that the container MC contains other stuff. But if the MC is loaded with attachMovie(), the debugger does not show that the container has other mc's within it, and therefor I cannot change the properties of those mc's.

View 1 Replies

ActionScript 3.0 :: Check How Many MovieClips Exist In A Container

Mar 8, 2011

In other words, how can I make this calculation if I have a rectangular movieClip (containerMc) that is 5x1px and five square movieClips (sq1Mc,sq2Mc, sq3Mc, sq4Mc and sq5Mc) that are 1x1px and which can dynamically be placed inside containerMc and I want to know how many and which of these five movieClips already exist in containerMc so I can determine where the next square movieClip needs to be placed?

View 3 Replies

Professional :: Container In A Scrollpane With Some Vertically Ordered Movieclips?

Nov 16, 2010

I've a container in a scrollpane with some vertically ordered movieclips in it (one on top of the other).  I have another container of movieclips that I can drag into container 1.  Once the new movieclip is dragged in, the other clips move to make space for it.  Also, the clips in 1 can be dragged to a new position, and the other  clips move up or down to accomodate the moved clip.
 
I did it using a lot of x and y positioning.  It works, until I use the scroller.  Then the positioning gets all screwy. My thinking now is to use arrays, but I'm wondeirng if it's possible when you're pushing an item into an array, to push it into a certain position in the array?  So, push it into position 15 for example?  How do you tell Flash to add an item to a certain array position?

View 1 Replies

ActionScript 3 :: Dynamically Adding MovieClips Constrained To Container

Oct 16, 2010

The correct code to constrain movie clips to a container movie clip (or sprite or whatever) in the fashion I was looking for is this:

var picContainer:PicContainer = new PicContainer();
picContainer.x = stage.stageWidth / 2 - picContainer.width / 2;
picContainer.y = stage.stageHeight / 2 - picContainer.height / 2;
addChild(picContainer);
var totalPics:int = 17;
var pic:Pic = new Pic(); //make an instance just to get its width
[Code] .....

View 3 Replies

ActionScript 3.0 :: Adding MovieClips To Container Versus Arrays

Sep 21, 2009

I have here 2 options here of adding movieclips to a container, but I don't know which one is better. I want to know the pros and cons of each one. Also, What of the options is faster?. (i mean, which one uses less processor and memory resources?.

Option 1.
Code:
Select allvar container:MovieClip = new MovieClip();
stage.addChild(container);
for (var i:int=0;i<10;i++){
var tank:Tank = new Tank(); //Tank is a movieclip in the library.
container.addChild(tank);
} MovieClip(container.getChildAt(2)).visible = false;

Option 2.
Code:
Select allvar container:Array = new Array();
for (var i:int=0;i<10;i++){
container.push(new Tank()); //Tank is a movieclip in the library.
stage.addChild(container[i]);
} container[2].visible = false;

View 2 Replies

CS3 Combobox Doesn't Work When Viewed Through Container SWF?

Jun 23, 2009

My SWF contains a combobox that functions as expected when it is viewed alone. But when this same SWF is loaded into a 'container' SWF the combobox no longer works.

The container SWF uses AS3, and the SWF that is being loaded into it uses AS2. Could this be the problem?

View 1 Replies

ActionScript 3.0 :: Button MC Inside Container Does Not Work?

Jun 4, 2011

I've added a sprite container like this:

Code:
var container:Sprite = new Sprite;
addChild(container);

[code].....

View 2 Replies

ActionScript 3.0 :: Can HitTestObject Work For Objects Inside A Container

Oct 13, 2009

Has anyone successfully used hitTestObject on objects that weren't on the stage?

I have game code that works fine when the objects on are the stage, but replace "stage" with "this" (the game object that covers the whole stage) and it doesn't work.

View 0 Replies

ActionScript 2.0 :: Swf Gets Shrunk When Loaded In Container?

Jan 22, 2010

scrolling TN that I purchased for $10. I want to create many different galleries (many swfs) using this XML gallery and then load them into a container inside a "master gallery swf" if that makes sense.The problem I am having is that the swfs are getting re-sized smaller when loaded in the container (maybe 70% of the original size) even though the container and swfs have the same dimensions.I've actually had this problem before where a swf displays smaller, even if it's just inserted into an HTML page. I'm wondering if there is a simple solution

View 0 Replies

ActionScript 3.0 :: Communication Between Loaded And Container SWF

Jul 18, 2011

I need to communicate from loaded swf to the container swf in AS 3.0. This is the code for document class of loaded swf followed by code for source swf document class. How I can call the method xyz() from the external swf?

ActionScript Code:
package com.scottgmorgan {
import flash.display.Sprite;
public class ExternalMovie extends Sprite {
public function ExternalMovie():void {
Code] .....

View 1 Replies

IDE :: Guestbook Flash & Php Loaded Into Container?

Mar 24, 2009

I used guestbook form here:[URL] and when I load it into a container in the flash website the guestbook doesn't read the data from txt file. It works ok when it's alone.

View 1 Replies

Getting A Button To Load Into A Targeted Frame?

Mar 9, 2009

i have a web page with 2 frames : leftFrame and mainFrame. The left frame is my menu with flash buttons - home, about, news and contact.

What i want is this : when the user hits the "contact" button, i want contact.html to load in mainFrame.i've been at it for 2 days,, searching help, tutorials, sites, everything

i've got the beggining of the script :

this.onMouseDown = function() {
getURL(contact.html target="mainFrame");
}

View 21 Replies

ActionScript 1/2 :: Make MC Look At A Targeted Location?

Dec 26, 2009

So far from a previous post i created a MC that goes to a targeted location with this AS:

import mx.transitions.Tween;
this.onMouseDown = function() {  t1 = new Tween(mc, "_x", mx.transitions.easing.None.easeNone,  mc._x, this._xmouse, 1, true);  t2 = new Tween(mc, "_y", mx.transitions.easing.None.easeNone,

[code].....

View 3 Replies

ActionScript 3.0 :: Stop Targeted Loader?

Nov 4, 2009

I'm trying to have a preLoader function (preLoadTotal) receive the first progress event from a loader, add it's bytesTotal value to the bytesTotalALL var, and immediately stop it's loading after this. I currently only have one loader triggering this function but intend to add more in order to calculate the total size of all loaders combined (bytesTotalALL).

In the following example you can see my attempt to kill the load after it's bytesTotal info is extracted but no matter what I try the loading continues. What would be the proper syntax to stop the targeted loader?

[Code]...

View 9 Replies

Professional :: Detect The End Of An External Swf Loaded Into A Container

Oct 14, 2010

I have a main swf that will load external swfs into a container. I need to detect the end of the loaded external swf in order to start to load and play a new one into the same container. The problem is that i do not know what the length of the external swfs will be, and will have no control over the development of them, so i cannot place a variable at the end of their animation which would allow me to detect from the main movie its end. I also cannot rely on the _totalFrames property because the loaded swf might not have all the animation inside its main timeline.

View 5 Replies

ActionScript 3.0 :: Check If A Swf Is Standalone Or Loaded By A Container Swf?

Sep 16, 2009

I need a fairly foolproof way to check from a child swf whether it is loaded into a container swf through a loader object or if it is just loaded through html. I would like to do this without requiring a flashvar or any kind of function call from the parent swf that may be there. Any quick and simple solutions? I looked for something with loaderinfo but came up empty.

View 4 Replies

ActionScript 3.0 :: Container Scales Loaded Swf File?

Jul 5, 2010

I have a container on the stage in which a swf is to be loaded when you click a button. This works fine when the content of the .swf being loaded into the container does not have content floating outside of its stage, this is a problem for me because the .swf being loaded in has content that exceeds the width of its stage, but is masked. The masked content on that page will be made visible when the user mouses over the masks. So its essential that the .swf being loaded in exceed the dimensions of its stage.

Initially, when I click a button that is a child to the menu_mc, the swf loads into the container correctly, but when I MOUSE_OUT of the menu_mc the content within the swf scales to reflect any content that exceeds the width of its stage. I'm not sure if this is the result of the way I am the loaded swf. The swf is designed to scale up and down when the user MOUSE_OUT or MOUSE_OVER of the menu. The menu is designed to be hidden when not in use.Here's my code:

ActionScript Code:
import caurina.transitions.*;
import caurina.transitions.properties.DisplayShortcuts;[code].....

Additionally, I ran into a problem when I moused over the buttons that are children to the menu_mc. Whenever I rolled over them the content in the menu would hide itself off stage. So I came up with a solution that may not have been the appropriate course of action, but worked. In the MOUSE_OVER function of the buttons, I provided y coordinates for the other movie clips to prevent them from moving off stage. For the sake of better coding practices, would there have been a much more appropriate coarse of action.

View 0 Replies

ActionScript 3.0 :: Target A MC Being Loaded Into Empty Container?

Oct 1, 2010

I'm trying to somehow target a MC being loaded into an empty container MC. I've tried everything I could think of.

Basically, I'm making a movie editor. Right now clips are added to the stage on initial load, then when they are clicked on they are added to the "reel" and they can be previewed in the order that they are added. Now, I'm trying to get it so that when they are on the "reel" they can be click and dragged and rearranged.

Here's how the clips are added to the stage in a function called loadClips():

ActionScript Code:
addChild(clip1);
clip1.name = "1";

Here's how they are being added to the "reel" in addClips():

ActionScript Code:
if (currentTarget.name == "1")
{
clipCopy = new Clip1();

[Code]....

Now, I just want the clips that are on the reel to be click and drag-able (along the X axis but I'll worry about that later). I realize now they're all being added as clipCopy. That's going to be an issue huh? Is there a way that I can target the container and make that mobile?

View 2 Replies

ActionScript 2.0 :: Keep Loaded Movieclip Over Other Loaded Movieclips?

Jul 5, 2007

I'm loading an external swf that is a button to close other loaded movies. I want it to stay above all the other movies at all times so that the user has a way to close them and go back to the main stage. There are buttons on the stage that load external movies and the close button movie loads automatically. All of the movies load in fine but once I load in a movie from a dynamically created movieclip button on the stage, it covers up the close button movie.The following code is where I dynamically load movies from the dynamic movieclip buttons and then after that is where I load in the external swf for the close button.

//Dynamically assign external movies to load from
//the dynamic buttons
for (j=1; j<holderArray.length; j++) {

[code]...

View 1 Replies

Actionscript 3 :: Flex - Change Targeted Id In A Function?

Apr 19, 2010

In a Flex App I have some groups of checkboxes with similar idsAt the definite moment only one group is accessible for checking

group 10
id="chkBox101"
id="chkBox102"

[code].....

View 1 Replies

ActionScript 3.0 :: Only Targeted Area To Be Working On Button?

Sep 13, 2009

I attach this flash filecontaining my folderIts basically a button.and when I move my mouse over to the helmet the speech bubble with descriptions comes up.basically I just want my helmet to be the working area.at the moment, when I move my mouse over to the where speech bubble is going to be, button works... but I only want my helmet to be the working area..so mouse over to the helmet and speech bubble comes up. not anywhere else.

View 6 Replies

ActionScript 2.0 :: Get A Targeted Mc To Communicate With The Parent Timeline?

Nov 6, 2004

How do I get a targeted mc to communicate with the parent timeline? I'm not using levels but targeted mc.

I need the playback head to go from the targeted movie clip (this is called nested, correct?) to the parent timeline and stop at a particular movie instance or frame label. I have been unsucessfully using this:

gotoAndPlay(_parent.instancename);

View 5 Replies

Loaded Child Movie Controlling Container Parent

May 14, 2009

i'm a designer trying to step up my flash skills and have a scripting problem that's causing me trouble. essentially i have a child swf loaded into a container in a parent swf and want the child to be able to instruct the parent. to explain in full, the child contains an flv with bespoke video player components. it's container sits in one frame of the parent. when the flv finishes playing, i need the parent swf to move onto another frame.
as it's a controllable flv, it isnt possible to predict the exact length of time the child will need to be present, so it literally needs to tell the parent it's finished playing at that very point.

[Code]...

View 9 Replies







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