ActionScript 3.0 :: Can't Access MC Child Of Loader
Feb 21, 2010
I'm using the code bellow:[code]The problem I'm getting and I can't figure it out in AS3, is how to call the "mcExt" from another function, outside the function where the mc is created.tried MovieClip(root).container_ mc.window_mc.mcExt.gotoA ndStop("exit"); and it does not work.
View 1 Replies
Similar Posts:
Feb 11, 2011
it's very simple thing i have a swf file try.swf, and it have little bit animation, I stop it's animation on timeline frame 1and i use this code... to load try.swf in other flash fileimport flash.display.Loaderimport flash.net.URLRequestvar ld:Loader=new Loader()var rq:URLRequest=new URLRequest("try.swf")ld.load(rq)addChild(ld)now i hv load try.swf in ld Loader now I want when this loaded then try.swf gotoAndPlay though frame 2 and start showing animation.
View 1 Replies
Aug 13, 2009
How to access a loader loaded by a loader
View 4 Replies
Aug 23, 2010
i have problem with swfLoader in flex, when i close following code in click method i can easly add many swf to main application
<mx:VBox id="content" width="100%" height="100%" ></mx:VBox>
public function doIT():void
{[code]....
when i close adding those swfs in loop i have the same error, it looks like child apps couldn't access certain objects that were instantiated by another child app, so what can i do?
View 1 Replies
Mar 11, 2010
I've seen some discussion on how to load a child swf using swfLoader and accessing it's variables but I am wondering if it is possible to do this without adding any code to the child swf.Either accessing public vars or listening for funciton calls would work fine
View 2 Replies
Jun 10, 2010
I have a mainSwf in which I load an external swf, which loads an external swf.( a child of a child). I am trying to set the framerate via AS3 for the childs child by using stage.frameRate= 15;
It doesnt work when the children are loaded into the mainSwf. how to access the stage of a child's child? I have tried root, Movieclip, this but can not get it to work
View 9 Replies
May 14, 2010
[code]I've marked two locations where this fails in the function pause(). I'm new to Flex/Actionscript/Flash. From what the error says, I assume that from the function, I cannot clea/remove the child loader, because it has a different parent. If I am correct with that, how do I know what the parent is?[code]
View 10 Replies
Apr 7, 2009
I would like to use the addChild method of more then one MovieClips with the same parameter, eg add the same loader to two or more MovieClips.
Code:
var loader:Loader = new Loader();
loader.load(new URLRequest("http://www.actionscript.org/forums/images/misc/navbits_start.gif"));
[Code]....
View 6 Replies
Jun 16, 2010
I have a master swf that uses Loader to load in an external swf. I need to load a back button on top of that stack as a separate Child - and I have code in that loaded Child that needs to Unload the Loader-Loaded swf, unload the Buttons, and move the main timeline to another frame.
View 2 Replies
Mar 17, 2012
READY? Here it is:var TheLoader:Object = parentObj.TheExit as Object;This line gets me to the swf I loaded and I can now change the alpha, move it etc...BUT HOW HOW HOW... do I get one of its children and control get that same control?Example Code:TheLoader.TheChild.alpha = .3; // Does not work!5 days on this issue is WAY TOO LONG! Here is the 3rd post with the same issue but more detail. as3 externally loaded swf from network to control externally loaded swf from network
View 1 Replies
Nov 9, 2009
I have 4 separate photogalleries, they are all swfs called by buttons with UI loaders attached. The problem is when one is called the loader remains on the stage I need to be able to remove any loader on stage BEFORE calling another page weather its a photogallery or not.Easiest explanation is how I used to do it in AS2 example 2 btns /2 load separate swfs into level1 on each btn I would have
unLoadMovie(1)
LoadMovie (xxx.swf) 1
I need to do the same thing in AS3 Also, do I need to use separate loaders or can I use one loader and instance names? Below is the code I have now (btns are in two areas)
main timeline btns (all btns except photogallaries)
stop();
home_btn.addEventListener(MouseEvent.CLICK, onHomeClick);
[code]....
View 0 Replies
Apr 26, 2010
I am using loader to load an image "1.jpg" in the constructor.Using a timer, after 5 seconds I want to remove the child and then reload another image however removeChild doesn't work, neither does getChildIndex. In the constructor I can call getChildIndex and it outputs 1, however in the Timerevent function it seems that I cannot get access to the my_loader created in the constructor.
However from the Timerevent function I do have access to the variable test that I created in the constructor. Why is it that I can access test, but not my_loader and how can I fix this so I can get the reference to my_loader within the Timerevent function? I tried moving the loader outside of the constructor but then I get a message saying that my_loader is undefined for the line "my_loader.load(new URLRequest("1.jpg"));"[code]...
View 2 Replies
Mar 26, 2010
I have a holder movieclip on screen, then I create a loader, load an external SWF into the loader and addChild to my holder:
var bgloader1:Loader = new Loader(); [code].....
This all works. Now if I want to come back later on and alter the alpha or position I get an error:
//Neither of these work: MyHolder1.bgloader1.alpha=0; MyHolder1.bgloader1.content.alpha=0;
TypeError: Error #1010: A term is undefined and has no properties. at flash.events::EventDispatcher/dispatchEventFunction() at flash.events::EventDispatcher/dispatchEvent() at flash.net::URLLoader/onComplete()
View 7 Replies
Jan 7, 2010
[URL] With regards to a parent SWF loading a child SWF via the Loader class, is it possible to prevent the loaded child SWF from:
Making any network calls, or Making calls to specific domains Basically, I'm looking for a programmatic version of allowNetworking:
[URL]
Additionally,Are there any Flash Player version and Actionscript version discrepancies?Are there any discrepancies if using Flex's SWFLoader is used instead?
View 1 Replies
Oct 16, 2011
i successfully managed to work out the loader script, and load a external swf file into my current project. Now that its working and all is well, i realised that only way to get back to 'main menu' was to close the whole thing. I tried to sort it out with a simple 'back' button but no success there. As mentioned in the title thats the options i found so far but cant seem to quite understand them tbh. I just want it to work so that I easily can manouvre back to 'main menu'.
View 2 Replies
Sep 22, 2010
I have a .swf file (parent) that loads another .swf (child) file.
I would like to dispatch an event to the child (.swf) file, but I am not sure how to do this in a way that avoids coupling?
View 1 Replies
Aug 1, 2009
I'm putting together a project where I'm loading different images at different times. The first image loads when the app starts. After the user answers some questions, I load a different image, replacing the first. When I try to do that, I get an error:
[Code]....
View 4 Replies
Sep 27, 2011
I want to load my XML, listen for the complete loading and then be abble to access the loaded XML in the main part of my program. I need to do so cause I want to load and process, like 10 or more XML in this project.[code]...
View 2 Replies
Mar 9, 2010
Let me just start by saying this forum is awesome, over the past 3 years I've found nearly all of the answers to my AS questions without posting once... That streak ends today.I'm building a site where the client is going to be able to upload various backgrounds which load depending on which tab they click on.
The class is BigBackground.as. It does the loading of the backgrounds, and then in the .fla I would like to manipulate these "BigBackgrounds" starting with the width. However, even though the width traces correctly from BigBackground.as, the width traces to 0 from the .fla file. I can access width from the class, but how can I access the width & height from the .fla?[code]...
View 2 Replies
Aug 17, 2009
I've got a problem in loading flash. I have two flash, A and B. A loads B as resource by urlloader.[code]...
In B, I want to access a defined variable in A. However, I found _root and _level did not work for AS3.
View 2 Replies
Apr 29, 2010
Main movieclip onstage is : design_mc. Within it is a movieclip already in place onstage with an instance name clipart_mc.also loading a ListBox to the stage and each time a selection is made from listbox myLoader9 is used to load selected .swf intodesign_mc.clipArt_mc.Now within each of the .swf files loaded into design_mc.clipArt_mc there is a mc ike to color transform called color_mc.So now the listbox is onstage and I make a selection that places heart.swf inside of design_mc.clipArt_mc. I want to access heart.swf so I did this:
var child:DisplayObject = myLoader9.content.contentLoaderInfo.content.color_mc;
var colorTrans3:ColorTransform = new ColorTransform();
var trans3:Transform = new Transform(child);
[code].....
View 2 Replies
Nov 10, 2011
I think I have al the imports required to display this image however I'm getting this error:[code]}
View 1 Replies
Jul 27, 2009
I created a button class with a method that will allow me to control an external SWF. However, the loader for the SWF is created on my main timeline. Is it possible to access the loader object from within my button class?No matter what I try I either get an error that the variable is not defined (rightfully so because I haven't defined it in the class, it's defined on the main timeline) or that the object is null (when I declare the loader from within the class, which I know is wrong as well)
View 4 Replies
Jan 2, 2011
How can I access Loader class from Progress event.
[Code]...
View 1 Replies
Feb 22, 2009
So, i'm currently working on an xml based banner. The banner has seven "pages," each with it's own image and url (specified in the xml file).A preloader loads in the swf, and then another loader in the main swf loads in the xml and images (displaying percent loaded and whatnot).
The problem that I'm running into is that I can't figure out how to access the previously loaded images when I want to call my transition function... I added as many comments in the fla as I could, if there are any questions feel free to post, I'll be here all night.
All in all, I need a second set of eyes to skim my project and help me streamline the process.
[URL]
View 2 Replies
Oct 26, 2010
I'm having troubles accessing the data loaded by external class.[code]...
Now, I want to create another external class (called MainMenu) that will be initiated from the Main class.This class should create the menu based on the loaded XML class.
My question is, how can I make use of the loaded XML content via XMLLoader class within the MainMenu class?
View 16 Replies
Apr 13, 2012
this is so embaresing and my whole business is suffering from this[URL].. the key point in my TextArea class which extends TextField is to load external swf files and I use the .parent property of the Loader class to access the textfield... with the new security updates coming with 11.2 I cannot access the parent and the whole thing crashes to give you more insight:
imagine that we have file.swf being loaded into the project using the flash.display.Loader class. from the document class of file.swf, I can access the loader like this, all ok till here _loader = this.parent as Loader
[Code]...
every day that one of my clients updates their player to the new version, their website fails. I need to fix this a.s.a.p.
View 3 Replies
Dec 7, 2009
I have a flash game embedded on Facebook but need access to the flashvars facebook passes to all embedded games. However I am using the mochiads preloader meaning that _root.fb_sig_user is always undefined?How do I get to the variables?stage.loaderInfo.parameters.fb_sig_user
View 1 Replies
Feb 13, 2009
I am working with a preloader but I keep receiving this one error : "1120: Access of undefined property loader" Here is the coding I have...
-------------------------------------------------------------------------
stop();
addEventListener(Event.ENTER_FRAME, loaderF);
function loaderF(e:Event):void{[code].....
View 2 Replies
Jun 29, 2009
i've made a simple example here to show you my problem. I have basically created a stage object ("box"), with the nested children, box->b->c. I have exported box for as, with class "box" and base class movieclip. Now i create 4 instances of my box class and add an eventlistener to the nested child c. When i later on try to remove the eventlisterner for myinstance.b.c i get: TypeError: Error #1010: term is undefined and has no properties.at DocumentClass/removeSomething(). Here is my code:
package
{
import ....
[code]....
View 10 Replies