ActionScript 3.0 :: Display List Multiple SWFs?
May 11, 2010
trying to swap various children or change their index in the display list, and I think I might have painted myself into a corner (get ready, this one should blow your skirt up).I've got the following sequence of events:1. A pre-loader.swf (the parent) loads main.swf and about.swf, then adds main.swf to the stage.2. When main.swf is added to the stage, it displays all its content, including various buttons.3. When the "about" button is clicked, main.swf calls a function in pre-loader.swf that instructs pre-loader.swf to add about.swf to the stage.4. When about.swf is added to the stage, it displays all its content, including a text field.
At this point everything *looks* fine, but unfortunately the buttons in main.swf no longer work. They're visible, but they're no longer responding to mouse over/out/click events. I think maybe the buttons are being "covered" by about.swf (or its text field), so I'd like to place the text field below the buttons in the display list. However, since the objects are in different SWFs, I'm having all sorts of problems accessing them.
View 4 Replies
Similar Posts:
Oct 18, 2011
I am using several instances of the same custom component on the same SWF. The component is essentially just a textfield with special sizing requirements. I also have another "wrapper" component that deals with the info from the textfield components. I was initially planning on using the stage index to associate the data with the textfield component it came from. This became more complicated than I anticipated. When I trace from the wrapper i can't get the index of the textfield components. So I got it in the component code and sent it with the info to the wrapper via a custom event. The problem there is that i can't tell which component is which because they are indexed identically. I can also see the component shim as well as the textfield.I'm just really confused about how programmatic components work on the display list.
My main Question. Is there a better way to associate the info with the proper component? I guess that's my only question. Please point me in the right direction.
EDIT2: I created a dummy place-holder component that just draws a rectangle then at runtime replaces it with programmatically generated textfield component.
View 1 Replies
Aug 13, 2010
I am loading multiple .swfs into multiple .swfs, but the .swf are never being properly unloaded. I thought they were unloading until I started monitoring my Page File Usage and seeing it increase everytime I loaded another external swf.
In using this function to load my content, what would be the proper way/function to unload the content?
[Code]...
View 2 Replies
Aug 5, 2011
I have a list containing display objects from throughout the application (insertion order). I want to process the list either top-down (parent, child) or bottom up (child, parent). The only requirement is that either a parent is processed before any child or vice versa a child before its parent. What is a good approach? This question is not about sorting a list. It's about retrieving the depth of a particular display object.
Example
Display list:
A (root)
B1
C1
C2
D1
B2
......
My list:
list = [E1, F4, A, B2, B1, C3, ..., N9, N8]
Bottom-up:
N9, N8, F4, E1, C3, B2, B1, A
Top-down:
A, B2, B1, C3, E1, F4, N9, N8
Does not matter if N9 before N8 or N8 before N9. Important is that any N is before M (first run) or any M before its children N* (second run).
View 2 Replies
Mar 6, 2008
Is there any way to test if a display object has been added to the display list?
View 9 Replies
Mar 4, 2011
What's a simple way to detect if a display object is currently on the display list?
View 1 Replies
Jun 28, 2011
How do I identify all the display objects in the display list in ActionScript, bellow the one that I have clicked? All the other objects are shadowed by the first one. What if other objects have visible parameter as hidden?
View 1 Replies
Jul 8, 2011
I was wondering if there is a shortcut so i can always set a MovieClip to display at the tippy top of the display list?
Also i understand that WebViewLayer will always display above the display list.
View 1 Replies
Feb 9, 2009
It's my understanding that a display object cannot be in the display list more that once.So if I add something to the stage shouldn't a second addition of the same object replace the first? for instance:
[code]...
there should now only be one "myDisplayObject" on the stage.
View 3 Replies
Jul 12, 2010
I am trying to figure out how to read an XML file containing a list of the swfs I want to import, pause for 8 seconds to allow the swf to run and then continue the loop with the next swf.
I am reading the XML correctly but I am having an issue creating the timer to pause the for loop for 8 seconds between slide.
View 4 Replies
Dec 11, 2009
I'm looking for a way to randomly start an ordered list of SWF's. Well, that's not all I have my main SWF calling up external SWF's. I have 2 groups of external SWF's. From my main SWF Actionscript, I want to randomly play one SWF in Group A and continue cycling through Group A (in order) until it is finished. Then I want to randomly start playing one SWF from Group B and continue cycling through that list (in order) until the Group B is cycled through. Then repeat Group A (random start, but staying in order), etc.
Does this make sense?? I realize it's a challenge My current ActionScript works for Group A to randomly select and play in order, I need it to stop after it gets to the random starting point again (so it doesn't repeat) and start up Group B (which isn't in there yet)
[Code]...
View 7 Replies
Dec 11, 2009
randomly start an ordered list of SWF's.I have my main SWF calling up external SWF's. I have 2 groups of external SWF's From my main SWF Actionscript, I want to randomly play one SWF in Group A and continue cycling through Group A (in order) until it is finished.Then I want to randomly play one SWF from Group B and continue cycling through that list (in order) until the list is cycled through. Then repeat group A (random start, but staying in order), etc.
My current ActionScript works for Group A to randomly select and play in order, I need it to stop after it gets to the random starting point (so it doesn't repeat) and start up Group B (which isn't in there yet)
ActionScript Code:
var logos:Array = new Array();
logos[0] = "logo1.swf";
[code]...
I need it to completely play through the Group A list before it goes onto Group B
View 0 Replies
Nov 19, 2010
I'm trying to load a bunch of external swfs into a tile list. Once the swfs have been loaded I'm adding them to a dataprovider which I then sort and add to the tilelist. Like so:
dp.addItem({label:e.currentTarget.content.getLabel(), path:e.currentTarget.content.getPath(), source:e.currentTarget.content, cost:e.currentTarget.content.getCost(), category:e.currentTarget.content.getCategory()});
It works fine except that the way I'm doing it I have to add a bunch of functions to each swf to know which one is loaded and pass the correct info to the dataprovider.Is there another way to tell which swf has been loaded? Something like this.URLRequest. If I could tell something about it I could compare that to my original xml and find out all the other information I need for my dataprovider.
View 2 Replies
Nov 8, 2009
I was wondering if anyone knew of a component or 3rd party slideshow that supported displaying .swfs. Slideshow Pro is a nice component for video and images but lacks swf support.
View 2 Replies
Aug 13, 2010
Currently I am trying to load 5 different swfs in order. Everytime a button is selected I want to move to the next swf. And once I reach 5 the next image should be 1 (again - loop). I started with a code like this on frame 1 in "scene 1":
Code:
gotoAndPlay(50);
Stage.align = "T";
Stage.scaleMode = "noScale";
_root.j = 1;
where "_root.j = 1" ----- "1" is the first swf loaded. But it was stuck on 1.
My newbie skills figured this out so to avoid zero, but it's random. And things repeat too closely.
Code:
gotoAndPlay(50);
Stage.align = "T";
Stage.scaleMode = "noScale";
_root.j = random(4)+1;
My Question: What can "_root.j" equal so that 1,2,3,4,5 cycles? I have to work within these parameters cause this template is deep.
View 1 Replies
Aug 25, 2011
I have to create an app for iOS from an existing Flash project. On the stage of the main flash multiple swfs are loaded dynamically . Is it possible to compile, in addition to the main file, all the other swfs too? If I load the swf in the "Included files on Setting AIR for IOS menu, they are copied as swf, making impossible to use the app on iPad.
View 3 Replies
Jan 18, 2008
Does anyone know of a way (e.g. similar to those of which allows my swf to be divided into multiple swf based on the frames? So if the swf is 10 frames long, there will be 10 SWFs, each one containing a frame.
View 2 Replies
Jun 17, 2009
I am sure that this can be done, but can't seem to find it on google or in the forums...I have two swf files that I would like to add into one web page. How do I do this?
View 2 Replies
Jun 2, 2009
I'm having alot of trouble tracking down the name of an object on the display list so i can removeChild Is there a way to trace every object on the display list so i can get its name and remove it? my stage is changing dynmically and i can't jut trace each object through a whole whack of code.
View 4 Replies
Nov 6, 2009
I have a list box in my flash file that I would like to display a string from an xml file that has been run though html entities in php. So for instance I need the string.
Code:
Hey "Leonardo£$£$()*%£% '"' [1999]
to display as
Code:
Hey "Leonardo;$;$()*%$% '"' [1999]
I can get this to happen in my dynamic text boxes by using .htmlText to display but I have no idea how I would do this in the list box?
View 1 Replies
Jan 20, 2010
I've got MovieClips on the stage, both manually added, and added with code. I used this code to trace them all:
for(var i:int=0 ; i<stage.numChildren; i++) {
var myObject = stage.getChildAt(i);
trace(i);
trace(myObject);
}
All it returns is 0 and [object MainTimeline]. Is there something wrong with Flash, or did I do my coding wrong? The objects I put on the stage should be on the Display List, right?
View 5 Replies
Feb 3, 2009
How do I removeChild only if it's in the Display List?One button on my stage will addChild(radioButton) and another removes it. If the remove button is clicked first, then it obviously tries to remove something that has not yet been added and an error is returned. I've tried using the DisplayObjectContainer class with the contains() method to no avail.
View 12 Replies
Sep 14, 2008
in my Main.as file, this works as expected:
var t:TextField = new TextField();
t.text = "hello in main";
addChild(t);
However, when I create an instance of a class, and I have that same code in the constructor of that class, the text doesn't show up. I am creating the text field variable at the class level, not the contstructor level, so I think the variable should still hang around.
Do I have to get an instance of the stage, or something?
View 3 Replies
May 26, 2010
The documentation for the List component at[URL].. states "A list can also display graphics, including other components," but nowhere can I find an example of HOW to make this happen. Can anyone please point me to a working example, I really need to be able to leverage this functionality, but I cannot for the life of me find anywhere it's being done.
View 4 Replies
Oct 4, 2010
i have this really basic class and all it does is create a button...i have another class called main where i want to put the button on the stage...problem is it all compiles but can't get the button to display..
public class Main extends Sprite
{
public function Main()
{
[Code].....
View 6 Replies
Apr 26, 2010
I'm working on a game that has many elements on stage, so I'm looking to optimize my loops. I know that Vector is faster than looping an array, but I'm also in some cases using:[code]My question is when I use getChildAt, is that accessing an Array or Vector or linked list or other? Should I instead store references to my objects in a Vector and loop through that instead?
View 2 Replies
Oct 7, 2010
Is there a way to make a display object always be at the top of the display list?For example, I know you can set the childIndex, i.e:setChildIndex(myDisplayObject, numChildren-1);But is there a way that an object has sensed that something else has been added to the display list and restack themselves accordingly?
View 2 Replies
Apr 23, 2011
I am working on an air-application but written in as3. How can I still display an fileSystemList-Component(flex) written in actionscript?
View 1 Replies
Jul 31, 2009
Is addChild for "maskContainer" necessary in the following scenario?
[Code]...
View 1 Replies
Nov 23, 2009
How do i add to a display list thats already has items on it?
this is what I have already
ActionScript Code:
public function LotteryDraw() {
// get the display list positions for each MC and text field...
var startButton = this.getChildAt(0);
[Code].....
View 2 Replies