ActionScript 3.0 :: Instance Name Of Loaded External Swf?

Jun 24, 2009

I have successfully loaded an external swf. When load is complete, I add the loader target content to a movieclip but I've got problem accessign it after.

ActionScript Code:
// siteLoaderComplete
function siteLoaderComplete(e:Event)
{

[Code].....

The only problem is that it that right now, it add a child with a instance name of 'instance5' in site. But how can I change 'instance5' for another term like 'myContent'??

I need to be able to access content from the loaded swf.

View 1 Replies


Similar Posts:


ActionScript 3.0 :: Dynamic Text Box And Gave It The Instance Name "body" However Loaded The Text From An External Source Using One Of Classes

Aug 15, 2009

I created a dynamic text box and gave it the instance name "body" however i loaded the text from an external source using one of my classes. how do i reference the dynamic text box on the stage from my class???

View 3 Replies

ActionScript 3.0 :: External XML Works Loaded Offline Not Loaded Online?

Apr 15, 2009

Code:
var slideNo:Number;
slideNo = 0;
var xmlLoader:URLLoader = new URLLoader();
xmlLoader.addEventListener(Event.COMPLETE, showXML);

[code]....

View 3 Replies

Actionscript 3 :: Setting The Instance Name Of A Loaded Swf?

Mar 4, 2011

I am running a for loop that loads swfs onto the stage. _componentData is an XMLList.

private function loadDevices():void
{
for each (var d:XML in _componentData.device)
{

[Code]....

Inside onDeviceLoadComplete i want to be able to set the instance name of the loaded swf. Can i send extra parameters to the event handler function?

View 2 Replies

ActionScript 3.0 :: Add EventListener To Loaded SWF Instance?

Sep 6, 2009

I have a navigation button that loads an external SWF. In this loaded SWF are more buttons (two, to be specific). Right now the goal of these buttons are just to take you to external URLs, but eventually I may want to control the timeline of the loaded SWF with them.

I have successfully loaded the SWF, but I am having trouble getting the buttons in the SWF to work. I have given each button an instance name, but I cannot add an EventListener to either of them. I can add an EventListener to the loaded SWF, but that doesn't really help me.

Here is the code I'm working with:

portfolioNav.pWebNav.addEventListener(MouseEvent.C LICK, pressWebNav);

function pressWebNav(event:MouseEvent):void {
var webStuff:Loader = new Loader();
webStuff.contentLoaderInfo.addEventListener(Event. COMPLETE, finished_loading);

[code]....

As you can see, my button pWebNav loads the SWF called webPortfolio.swf. When the SWF is done loading I am making the content of the SWF a MovieClip instead of a DisplayObject. I remove the EventListener that detects when it's done loading, assign it an x and y possition, and then add it to the stage.My troubles start when I go to add an EventListener to an instance in the loaded SWF. My thinking is because I've cast the SWF as a MovieClip, I can then access the instances within it. Obviously, that's not the case.

View 1 Replies

ActionScript 3.0 :: Unloading A Loaded External SWF With A Close Button On The External SWF To Unload?

Aug 15, 2011

[URL]I have: main.swf (a menu) and I have module.swf (content)If you navigate to Subsea Wellhead Systems/SS-15 BigBore II and click on that I have it load an external swf which covers most of the parent. So far so good. My problem is unloading the loaded 'Child' swf with the button provided on the loaded 'Child' swf.below is the code I used to load the file but I cant, for the life of me, find a way to unload it. 
 
var bigboreLoader:Loader = new Loader();btnbb2.addEventListener(MouseEvent.MOUSE_UP, bigborecontent);
function bigborecontent(event:MouseEvent):void{var bigboreRequest:URLRequest = new URLRequest("moduletemplate.swf"); bigboreLoader.load(bigboreRequest); stage.addChild(bigboreLoader);
 
I am certain it requires the Child to communicate with the parent somehow but I am at a loss. If I could get a bit of advice or a link to something deal with this, it would be a big help. I just need to have my links load my modules and the remove them when the close buttong is hit on the loaded swf. I promise I have done searches and I admit I have found asnwers but still they are not working. I found the code below:
 
Main FLA: 
function removeF() {
removeChild(bigboreLoader);
}

[code]....

View 10 Replies

Flash :: Loading / Unloading External SWF Using Buttons From Loaded External Files

Feb 23, 2011

I spent almost a week trying to figure out how to unload a currently loaded swf using its button and loading a new swf... I have three files, a main.fla, file1.fla and file2.fla. In my main.fla, I have a code which loads the other two files. If i will click the "unload" button in the file1.swf, I would like the main.fla to unload the file1.swf and load the other file, file2.swf. Here is the code to load the file1.swf:

[Code]....

View 1 Replies

ActionScript 3.0 :: Remove Instance Of Loaded SWF From Memory?

Mar 4, 2010

I am loading an SWF file into another parent SWF. I remove the loaded SWF using the unloadAndStop() method and set the loader to null. But the instance of the loaded SWF still remains there in the memory.

View 2 Replies

ActionScript 3.0 :: Give An Instance Name Of A Loaded Image?

Mar 11, 2011

Once an external image is loaded via a loader, how can one name an instance of it? Can I simply do the following[code]...

I need it to associate a tween with it's display object using AS3 addTarget(), method of the AnimatorFactory class.

View 1 Replies

ActionScript 3.0 :: Access Mc Instance Of Externally Loaded Swf?

Sep 15, 2010

can anybody tall me how to access mc instance of externally loaded swf? in my as3 file i am trying to stop the animation of externally loaded swf. for that i have loaded the swf into mc sau current mc and i am trying to stop the swf by

currentmc.ballmc.stop();

where ballmc is the mc animation of the externally loaded swf.

View 2 Replies

ActionScript 3.0 :: Stage Instance Name Lost When Loaded

Sep 6, 2011

I have an FLA with a 'close button' on the stage, which is given the instance name of btnClose and runs from this class file[code]...Stage Instance Name lost when loaded

View 3 Replies

ActionScript 3.0 :: Access MC Instance Of Externally Loaded SWF

Sep 15, 2010

How to access mc instance of externally loaded swf? In my as3 file I am trying to stop the animation of externally loaded swf. For that I have loaded the swf into mc sau current mc and I am trying to stop the swf by
currentmc.ballmc.stop();
Where ballmc is the mc animation of the externally loaded swf.

View 1 Replies

ActionScript 2.0 :: Give An Externally Loaded .swf And Instance Name?

Nov 24, 2008

I want to control some movieclips in the externally loaded .swf from the main stage. How can I do this?

View 1 Replies

ActionScript 3.0 :: Accessing A Parent Instance From A Loaded Swf?

Jul 21, 2010

I have a "MainSWF", that loads and places other SWFs "LoadedSWF". The LoadedSWF has buttons that are supposed to make some layers in the MainSWF visible/invisble. These layers are in a placed navigation bar that is defined as a symbol, was placed on the Main Stage and given the instance name "FlashStageMainNavigation". I have a hard time figuring out how to address the layers in the MainSWF, because it seems I am missing something.

When I use a loop to trace all the child instances on the stage of the MainSWF with:

this.getChildAt(i).name

I get the following info:

instance1 this.name=0
FlashStageMainNavigation this.name=4

When I trace stage.getChildByName(this.name) in MainSWF I get "FSMain", which is the name of my main Class

My assumption was, that I could (from the LoadedSWF) address the Navigationbar in the MainSWF by using something like:

stage.FSMain.FlashStageMainNavigation.visible = false; //or
stage.getChildByName("FSMain").FlashStageMainNavig ation.visible = false; //or
stage.getChildByName("FlashStageMainNavigation").v isible = false;

neither of that worked.

To sum up/rephrase my question: How can I find out, which object instances are placed on the stage and how do I address them from the LoadedSWF?

View 4 Replies

ActionScript 2.0 :: Objects - XML - Creating A New Instance Of An Object That Uses An Identical Name To An Older Instance Delete The Previous Instance?

Mar 20, 2009

Does creating a new instance of an Object that uses an identical name to an older instance, delete the previous instance? Or should the original instance be deleted first? The code uses a ridiculous amount of XML vars. Isn't it less memory intensive to parse the XML and save the properties to an Object, and then delete the XML Object, rather than keep the XML Object around and reference it's child nodes directly? Is it better form to break up a huge XML file (>600lines/3200vars) into smaller chunks?

View 1 Replies

ActionScript 3.0 :: Dynamically Loaded SWF Instance Names Missing?

Nov 29, 2010

I have loaded an externally SWF (sonswf) file inside my movie (parentswf).

son.swf has 2 objects inside its library: Character (Base Class = "flash.display.Sprite", Class = "Character") CharacterHead (Base Class = "flash.display.Sprite", Class = "CharacterHead")

The "Character" object has inside 1 instance of "CharacterHead" and "CharacterHead" does not have a instance name asociated with it.

This is something like what i have got so far inside parent.swf :

ActionScript Code:
var ipAddress:String = "NNN.NNN.N.NNN" // not important
var loadedSwf:Array = ["THIS IS WHERE I CAN GET SONSWF", null]
var loader:Loader = new Loader();

[Code]....

So i need it to trace the class (not the Base Class that it extends) when instanciated from the parent.swf

View 0 Replies

ActionScript 2.0 :: Dynamically Loaded MovieClips And Instance Names

Mar 3, 2008

I am using attachMovie in a for(var i=1; i<50; i++) loop.Everything loads fine, but I am having difficulty referencing the dynamically created instance names.I don't want to reference individually ie movieclip1, movieclip2 etc.but more by movieclip[i].Basically - if movieclip instance 1 is rolled over I want to display image 1, and so on?

View 2 Replies

Flash :: Create Instance Of Symbol Exported For Actionscript In Loaded SWF

May 5, 2011

In a flash project, I am loading an external SWF that has some symbols in its library exported for ActionScript. I need to create instances of those symbols but, since it's a loaded SWF I don't have direct access to that classes.

View 1 Replies

ActionScript 1/2 :: Load An External Xml In An External Loaded .swf

Jul 24, 2009

I've got a small (more than 100 hours of thinkwork up till now!) problem I can't seem to solve:

I want to populate an external loaded swf with an dynamicly loaded xml fil (loaded from my config.xml).

[Code].....

how do I get the external xml into the external swf as a variable for the actionscript in the external loaded swf (So I just want to put the path in the script in my external swf...).

View 5 Replies

ActionScript 3.0 :: Control An External Instance?

Nov 17, 2009

[code]...

which controls a component instance, i want to use this code in a button on another swf file, how can i do this?, is posible to use a statement, i do not understand the concept of target path yet.

View 6 Replies

ActionScript 3.0 :: Load External And Give Instance Name?

Jul 15, 2009

I'm using this code to load and external swf, now how do I assign an instance name for it?

var eventInitialLoader:Loader = new Loader();var eventInitialURL:String = parent['eventPath'+ie];var eventInitialRequest:URLRequest = new URLRequest(eventInitialURL);eventInitialLoader.load(eventInitialRequest);eventOdd_MC.addChild(eventInitialLoader);

View 3 Replies

ActionScript 3.0 :: External Swf Loses All Instance Names?

Aug 10, 2009

I load an external swf with some buttons into another swf.Now the buttons have lost their original instance names. A trace reveals their new names to be "button1", "button2", etcetera. If I run the external swf on its own, the same trace displays the original instance names.

View 7 Replies

Actionscript 3 :: Stopping An Externally Loaded Swf From "playing" When Another External Swf Is Loaded?

Nov 8, 2011

I have a homepage with five "links" to each swf. Now the first swf I have a custom cursor that hides the mouse. When I click on that link it plays and when I quickly go to the homepage again it hides the mouse there when it's not supposed to do it.

Same with every other link. When I was busy with the first swf and want to go to the last swf of the five, my mouse just disappears! It is almost as if it keeps on "playing" without seeing the swf...

Here is the code that I have so far!

var currentpage:uint = 0;
//one loader object per project:
var loadingobject1:Loader = new Loader();
loadingobject1.x = 445;

[Code]....

View 1 Replies

ActionScript 3.0 :: Use A Symbol Instance On The Stage In An External Package?

Jul 2, 2009

I have a symbol called s1 in the library and I also created an instance of it on the stage on the first frame, its name is myS01Before I linked the document to a class (this was for youtube player) I was able to add event listeners, such as mousevents, onto this instance in my actions panel. But, after I linked my document to the external class in a package without a name, I cannot add any code into Actions panel, because it gives me all kinds of weird problems.Instead I am trying to use this symbol and add listeners to it in my external class file (the one linked to the document) with no luck.my external class file looks like:

package {  import flash.display.Sprite;  import flash.display.Stage;  import flash.display.StageAlign;  import flash.display.StageScaleMode;  import src.com.enefekt.tubeloc.MovieSprite;  import src.com.enefekt.tubeloc.event.*; 

[code]......

View 3 Replies

Flash :: Call A Button Instance In An External As Script?

Dec 7, 2010

I've created a button in my stage. I've set the instance name to init and have the MainTimeline being called from an an external script[code]...

View 2 Replies

ActionScript 3.0 :: Flash Accesing Instance Name Of Button From External Swf

May 19, 2010

i have my main.swf that loads front.swf and i want my main to have an access to instance name of button that comes from front.swf, how to do that?

View 1 Replies

ActionScript 3.0 :: External Assets - Multiple Loader Sprite Instance

Jul 27, 2010

I'm loading some external assets with the Loader class. I've done this a lot over the years, but seem to be coming across a problem I haven't had before. I want to display two instances on the stage at the same time of a .png I'm loading externally. If I use the Loader instance's contentLoaderInfo.content object in more than one sprite, the bitmap just "moves" from the first instantiated sprite to the second. I've tried duplicating the sprite with Senocular's duplicateDisplayObject class, but for some reason, it's not working right. But shouldn't I be able to use multiple instances of an imported bitmap like this just as if it were in the library of the .fla? If so, what do I need to do?

View 3 Replies

ActionScript 3.0 :: Manipulate A MovieClip Instance Within That External SWF From The Main File?

Oct 6, 2009

I have searched the archives here, but cant get a clean answer on this.I am loading an external SWF sucessfully, but I need to manipulate a MovieClip instance within that external SWF from the main file.

Code:
// SLIDE 1 IMAGE LOADING
var slide1Loader:Loader = new Loader();
var image1:URLRequest=new URLRequest("slides/1.swf");
slide1Loader.load(image1);
slide1.slideImage.addChild(slide1Loader);

That is the successful code to bring it in - but now I need to be able to use a movieclip within it called COPYMC

View 4 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 :: Text Is Loaded From External Text Files And Styled With An External Css File?

Jun 7, 2009

I've managed to piece together a flash website with my limited as3 knowledge. The text is loaded from external text files and styled with an external css file.

It's working perfectly in Firefox and Explorer but it only works SOME of the time in Safari (on my mac).It's hit and miss. Sometimes it styles the text sometimes it doesn't.

[Code]...

View 1 Replies







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