ActionScript 3.0 :: External Swf Ended Up Having Wrong Parent?
Jun 25, 2010
i need to know why my loaded swf ended up having wrong parent, i mean i load multiples external swf and then add it into a main swf which have one mainContainer( an instance of sprite class) to hold background image and it also hold several SWFcontainer which will hold the loaded swf.what went wrong is that the the loaded swf parent is the mainContainer (or if do not use the mainContainer it wil become the child of the stage).
here is the code i used:
import flash.display.*;var myXML:XML;var SWFList:XMLList;var xmlLoader:URLLoader = new URLLoader();var totalSWF:int;var mainContainer:Sprite;var myCounter:Number = 0;var
[code].......
View 29 Replies
Similar Posts:
Nov 11, 2009
I have a parent swf which loads many child swfs (though only one is displayed at a time). My intention was to use the loaded SWFs document class to retrieve an array of objects to be assigned a tab index, combine this with the parent's own array of objects and apply sequential tab indices to them all. But what happens is actually that the parent's objects are assigned an index, but the external swf is unaffected. In fact, the external swf retains its automatic tab indexing, when I would expect that having set a value for InteractiveObject.tabIndex, automatic tab indexing would be disabled.
I've seen similar tales elsewhere. Most posts I've read are wanting to load an external swf, give it focus and loop through those objects, then close the swf and return to looping through the parent. However I would like loop through all objects as one. including manipulating the focus manager(s), and basically fiddling with every tab-related property I know.
View 2 Replies
Apr 14, 2010
I was working through the example AS code in Adobe's documentation[url]..
Usually, when working with video, I use the FLVPlaybackComponent, but for this project I don't really need any fancy skins/features, I just need to load and play an external video.
Anyway, I have a .MP4 video that when I right-click and look at its properties... its dimension is 640x480.However, when I try and test the [code]...
View 4 Replies
Jul 12, 2011
I'm using flash.net.NetStream and flash.media.Video to play a .flv, here is some code:
var stream:NetStream = new NetStream(connection);
//next line is to avoid an error message
stream.client = {onMetaData: function(obj:Object):void {}}
[code]....
View 3 Replies
Jul 1, 2009
So I've imported video into my flash using the "progressive download from a web server." When the video ends, I want it to automatically go back to the frame I played the video from. What code would I use to do that? I dont want to insert an "x" button, my boss wants it to be automatic. Do I insert a CuePoint? I don't know too much about flash so I'm not sure how to use onCuePoint or anything.
View 5 Replies
Oct 12, 2009
i have to following code to have my FLV start if it has dowloaded at least 15%.
var pct:Number = .15; // 15% load
flv.autoPlay = false;
flv.source = "../../flv/V01.flv";
[code].....
View 2 Replies
Aug 31, 2010
I have a white box on a grey background.When the movieclip starts, it fades in with a Transition.[code]...
The thing is: I want to fade it back out right after it's done. I've tried looking this up, but there's on documentation to be found on it. Is there an event that is triggered, or do I need to set it myself?
View 2 Replies
Aug 23, 2011
I am making a music player and I want to have the player start the next song when a song has finished. I am using a sound object. Is there a way to tell if the song has ended?
View 2 Replies
Feb 5, 2010
[code]All clips are squared.Ok, on the PlayerPlane, there are little soldiers, which have hotkeys. The effect I'm trying to create is I want to position the GameStage so that the currently selected soldier appears in the center of the GameClicker clip.The GameStage is movable by the player (to scan other areas of the map)by holding the CTRL key, so it's easy to kinda lose track of where your players are.I have tried using localTo Global and globalToLocal techniques, but I think I'm lost on the actual math of getting the GameStage to move the correct distance so that the selected soldier is centered to the GameClicker.[code]
View 2 Replies
Mar 29, 2009
What's the most efficient way to run code after a loop has finished? My guess is that there's an event that flash will listen for when the loop has completed, but I can't find anything like that.
Code:
for(var i:int = 0; i < array.length; i++){
Arr2.push(array[i]);
if(i == array.length - 1){[code]...........
View 8 Replies
Jan 16, 2009
I made a movie clip or movements and what not and put it on scene1 frame 1. And when the movie clip end I want it to go to scene1 frame2. I tried a few things I have:
_root.gotoAndPlay(2);
Right now it says
1120: Access of undefined property _root.
View 6 Replies
Mar 16, 2012
So, I loaded an external video with playback component.And what I wanted it to do is, after the video finished, it will play the next frame after the frame the video mounted on.here the screenshot.The video is on "frame 1" on "Layer 1", and there is no video on frame 2, just blank frame, with button link to home.I already browsing across various post regarding this, but I cant apply their solution to my project, maybe due to my lack of skills.
View 3 Replies
Jan 10, 2010
I have 3 sounds that i would like to play, they are in my library.I can play any of of them using soundName.start(0,1) with the code below:
firstSound = new Sound();
firstSound.attachSound("Sound1");
secondSound = new Sound();
[code].....
View 1 Replies
Feb 4, 2010
How do can you detect and dispatch an event when a drag and drop operation ends prematurely? I need to know that the user is no longer dragging an item. Even if the dragDrop and dragComplete events do no fire. Its almost as if I need to add an event listener to the dragManager, but that's not really possible..
View 2 Replies
Mar 22, 2010
I'm new to Flex, Flash, and ActionScript. I'm attempting to create a video player that starts another video when the previous video ends. I thought there might be an event that is thrown when the video finishes playing, but I have not been able to find it.
VideoEvent.COMPLETE is when the video is completely downloaded, not when it is completely done playing. Does such an event exist? how I could subclass SWFLoader, Image, or Video to support such an event?
View 1 Replies
Apr 10, 2008
who knows how you can prevent a tween to start before the previous one has ended. I have build a imagegallery kinda app. and by clicking a thumb images are tweened with a Fuse.Problem is that when you start "buttonbashing", the tweens apparantly can't finish and result is that images spontaniously end up in the wrong place, or rotated. I guess it most be possible somehow to use the FuseKit to say "first finish this tween, and only then start the next"
View 1 Replies
Jan 27, 2009
How can I detect when a FLV video is ended in order to dispatch an event?
View 3 Replies
Dec 22, 2009
I am studying yet. so I am using Macromedia Flash 8. I've created a swf file as (main project.swf) and Loaded a external swf using loader component. the file is main_slide. Now I want send a command or data to project file, from loaded main_slide.
View 1 Replies
May 11, 2011
I put external SWF file to the parent one. but everythin's working wrong now. How to let it work right. My code:
[Code]...
View 2 Replies
Jul 27, 2010
I have a external swf loaded into a parent swf. It loads fine and plays. I have an EventListener in the external swf, I would like to have trigger a function in the parent swf. Is there a way to do this in AS 3.0?
View 2 Replies
Jan 15, 2008
I have one PARENT swf and one EXTERNAL swf. on PARENT i have one movie clip called PARENT_MC. on EXTERNAL swf i have one button with the following action:
myButton.onRelease = function() {
_level0.PARENT_MC._visible=0;
};
all i need to do is control a movie clip on parent swf from an external swf file.
View 1 Replies
Feb 16, 2012
I have two different external .swf files that are loading onto a parent, I have the same code on each, one works fine but the other one is giivng me this error,
TypeError: Error #1009: Cannot access a property or method of a null object reference.at aavar/frame1() at flash.display::MovieClip/gotoAndStop() at aavar/mouseA()my FLA still runs, but I would like to work out what is going wrong. I do not have any references to this function in my document class but it doesnt like it! What is going on here?
[Code]...
View 1 Replies
Oct 24, 2008
What I am trying to do is that if I click on the button, another window (like a flash popup, not in html) will popup and only this layer (new popup layer) will have an access. There should be no access in the parent swf. The flash popup has to load external swf file.
View 1 Replies
Jan 22, 2009
[URL]
go to media >> aikido pictures
I am using this screen resolution: 1024 x 768
the whole website seems to work fine, but when I change my resolution to a higher resolution, everything works fine until I go to media >> aikido pictures, and then the whole parent swf is resized to a smaller size but the child swf is still filling the screen.
View 4 Replies
Jul 23, 2009
I am able to access main root from an external swf by doing this:
MovieClip(root.parent.root)
but how to avoid getting an error when testing external swf alone? Is there any try catch system I can do to avoid thoses errors?
View 1 Replies
Feb 11, 2011
I have created a flash movie for displaying several videos. Also it has a first 'menu' flash movie which will call this video displaying swf after checking some Identifiers in 'menu'.
I am using code like this to call video displaying swf. Inside Menu.fla I wrote the below code to call CFStarVideoAS.swf.
var mLoader:Loader = new Loader();
var mRequest:URLRequest = new URLRequest("CFStarVideoAS.swf");
mLoader.contentLoaderInfo.addEventListener(Event.C OMPLETE, onCompleteHandler);
mLoader.load(mRequest);
stage.addChild(mLoader);
It loads the other movie but both movies are displaying together.
I have to unload Menu.swf, which is the first swf running.
My colleagues were using unloadMovieNum(0) with as1.
I tried mLoader.unload for a trial in as3 but not works. I read from some article that unload will work but don't know how and where to insert it.
View 0 Replies
Mar 7, 2012
Currently, I have a main SWF (shell) that pulls in external SWFs via XML. I'd like to add buttons to the main SWF that allows me to control the content within the external SWFs (i.e. play, pause, etc). I've played around with a few different ways to get this to work, but have come up empty each time.
View 0 Replies
Mar 17, 2009
I want to call a function in my parent movie from my external swf wich is loaded through a loader. Can anyone give me a nudge
View 4 Replies
Jan 3, 2010
I got a "preloader" that creates an movieclip and loads an SWF. Now in the loaded SWF i want a close button to go back to the "preloader". The preloader isn't an actuall preloader but some sort of mainclip.Now i tried this:removeChild(MovieClip(e.currentTarget).parent.pare nt.parent)But i get error:ArgumentError: Error #2025: The supplied DisplayObject must be a child of the caller.at flash.display::DisplayObjectContainer/removeChild()at MethodInfo-6()
View 1 Replies
May 4, 2009
Essentially, i have loaded an external SWF (area-home.swf) w/in a MC (mc_loader) of the main SWF (base.swf). This is simple, not a problem, works like a charm. What I want to do from here is have the main SWF (base.swf) tell the external SWF (area-home.swf) to gotoAndStop at a certain frame (42). Below is the code that I have, and can't quite figure out why it won't work:
PHP Code:
var loader1:Loader=new Loader();
loader1.contentLoaderInfo.addEventListener(Event.COMPLETE, myFunction);
loader1.load(new URLRequest("area-home.swf"));
[code]...
When i trace the total frames, it does bring back the actual frame count from area-home.swf, so I know that it is communicating. It simply does not stop on the 42nd frame (even have a stop(); command on that frame in area-home.swf's timeline)
View 1 Replies