ActionScript 3.0 :: Add Child To Main Stage From Within A Method?

May 11, 2010

I just began learning AS3. I'm simply trying to play an FLV video. How do you attach the video object to the main stage? I tried but it said that "stage" was undefined.

PHP Code:
package {
import flash.media.*;

[code].....

View 1 Replies


Similar Posts:


Actionscript 3 :: Load An External Swf To Main Stage From Instanced Child Class?

Apr 15, 2010

I am trying to get an instance of a class to the load an external swf and show it.So far I have the following:

1) I wrote a class that uses the Loader class to load an external swf "loadExtSWF".
2) I have a fla named "MainSWF.fla" that uses a document class "MainSWF.as".
3) I have the MainSWF.as file that instances "loadExtSWF" and calls loadExtSWF.startLoad to load the swf.

This almost works. The instance of loadExtSWF loads the external swf, but the swf is not displayed.If I replace the fla's document class with loadExtSWF (this has an empty constructor) instead of MainSWF, and run loadExtSWF.startLoad, then the external swf is loaded and displayed.[code]

View 1 Replies

ActionScript 3.0 :: Access A Child Of A Child's Stage?

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

Actionscript 3 :: Stage.addChild / Stage.removeChild << Must Be Child Of Caller?

Aug 11, 2011

If im usin function to add a mc to the stage like so:var myChild:MC= new MC();

function somefunc()
{
stage.addChild(myMC)

[code].....

View 4 Replies

ActionScript 3.0 :: Child-parent Relationship \ Adding Them All As Children Of The Stage And Creating A Parent-child Hierarchy Between Them?

Jun 6, 2011

i am slightly confused about the parent and child relationship. lets assume we have several different instances, what would be difference of adding them all as children of the stage and creating a parent-child hierarchy between them(other than the access path).

View 5 Replies

ActionScript 3.0 :: Referencing A Child's Method

Nov 6, 2008

I'm trying to make a small card simulation that creates a pile of cards, and when I click on the deck it flips the top card over and moves it to another pile. Clicking on the other pile flips it back. I'm using Flash CS3 so can't use Flash 10's 3D abilities. So far, I'v created a Card class (extending sprite) which draws 2 rectangles (for the front and back faces), and contains a public method flipTo(). which when called starts a tween which moves the card and flips it (by adjusting it's scaleX value to negative, and when scaleX = 0 toggling the visibility of the card's faces).

This works fine, and so I have a for loop that creates 10 instances of the Card class on top of each other (and within a sprite container called rightPile), giving me my pile. I've attached an event listener to the pile, so when I click it, it performs the onRightClicked function, which calls the top card's flipTo() method. So when I click on the pile, the top card flips. However, when I click again, the same card flips again, and I can't figure out how to make the next card flip. I've tried keeping track of the index of the current card, and using rightPile.getChildAt(currentCard).flipTo(), but I get the following error...

[Code]...

View 5 Replies

ActionScript 3.0 :: Add Child Removal Method?

Dec 7, 2009

ActionScript Code:
if (pMenu.AccSel.iconSel.child != undefined) {
pMenu.AccSel.iconSel.removeChildAt(0)
}

i was trying to do a child removal method that would work on command instead of me trying to find a child to remove each time in the code... it would find and remove it wisely... however, i've tried this method and it doesn't work... and i was wondering if there was another way for actionscript to check for Children and if there are any it'll remove it...

View 2 Replies

ActionScript 3.0 :: XML Append Child 's Equivalent Method?

Mar 14, 2009

XML append Child 's equivalent method?

View 2 Replies

Flash :: Call A Method Of A Child Of A Datagroup

May 2, 2011

I'm looking for a way to call a method for ALL children elements of a DataGroup from the DataGroup. The problem is that when using the creationComplete event to call a method of a child that method is only called once for every itemrenderer (child) object. after the item was drawn once. now i want the children component to call a function everytime the datagroup containing it changes its data. Using "updateComplete" or "dataChange" inside the children (itemrenderer) component would work, BUT "updateComplete" and "dataChange" is called everytime i change the view (e.g. scroll my list) - thats not what i want.

[Code]...

View 1 Replies

ActionScript 3.0 :: Call Parent Method From Child?

Dec 22, 2009

I loaded external swf named child.swf from parent.swf. i am having a function called parentFunction() in parent.swf. I want to call parentFunction() from child swf.

View 2 Replies

IDE :: Get Child Swf To Communicate With Main Swf?

Feb 2, 2009

how do I get my child swf to communicate with my main swf?

(this is main1.swf)
var homeRequest:URLRequest = new URLRequest("window1.swf");
var homeLoader:Loader = new Loader();

[Code]....

Obviously, MovieClip(root) is not getting to the main.swf's root timeline. What code do I need to do this?

View 1 Replies

ActionScript 3.0 :: Trigger The Parentclass Method From The Child Class?

Aug 9, 2011

i am new to AS 3.0. I am preparing the game, which will initially display login page, after username validation. It enters into the game. I have prepared login page and a game in a separate file. To load all these files, I have main file which loads the login page and game file. When the preloaded completes, ill show the login page. Using application domain Ill access the login button. When I press the login button, ill send the entered user name and password to the server for validation. Based on the response will allow the user to enter. Now my problem is, I want to show game screen based on the username validation response. I am not sure how to do this.

View 1 Replies

Actionscript :: Trigger The Parentclass Method From The Child Class?

Aug 9, 2011

I am new to AS 3.0. Please clear my doubts. I am preparing the game, which will initially display login page. After username validation, it enters into the game.

I have 2 separate pages for login and a game. To load all these files, I have main file which loads the login page and game file. When the preloaded completes, the login page opens. Using application domain, I will access the login button.

When the login button is pressed, the user name and password entered will be sent to the server for validation. If authenticated, the user enters the game. Now the problem is, I want to show game screen based on the username validation response. I am not sure how to do this.

View 1 Replies

Flash :: Adding Child To Document Class Vs Adding Child To Stage?

Nov 24, 2011

The name of my DocumentClass is Main. So, what's the difference between :

var myClass:Main = new Main();
var mcInLibrary:MovieClip ;
/////////////////////////////////////////[code]............

View 1 Replies

ActionScript 3.0 :: Read Main Var From Child SWF?

Apr 8, 2011

i have main.swf with var car:String = "my car";then i addchild a new swf; child.swfinside child, how can i trace my "car" var?MovieClip(root).car give me Undefined

View 3 Replies

ActionScript 3.0 :: Remove A Child From The Main Movie?

Nov 30, 2009

Code on main movie.

Code:
function loadPhx(event:MouseEvent){
var ldr:Loader = new Loader();
var url:String = "websites/phx.swf";

[Code]....

This is the code im using to try to remove a child from the main movie.

The error i get is undefinded property ldr.

View 1 Replies

ActionScript 3.0 :: Adding Child And Stopping Main Timeline?

Sep 3, 2010

So I am loading in external swfs and once loaded in I want to stop the main timeline. so I do the following.

var swf : MovieClip = e.target.content ;
swf.stop();

which doesn't work, because I have trace statements in the external swf which fire off after that command is called. Which, here is another weird thing, When I trace through the loaded swf, it says it has two children, a shape, and a Loader. The shape is weird because what I have is another movieclip on stage so I should get instaceXX, and I dont know where that Loader class is coming from.

which also brings me to another question which is everytime I add the swf to the stage it duplicates the instance, and I run out of memory really fast after I keep removing and re-adding it. all I call is.

targetMC.addChild(swf);

then after the swf dispatches an event saying its done.

targetMC.removeChild(swf);

View 1 Replies

ActionScript 3.0 :: Controlling Movieclip From Main Timeline & Child?

Sep 26, 2010

This code is currently contained within my "mc_1" movieclip. I want to be able to have this code on my main timeline, however no matter what I try I constantly get errors, multiple different versions. I've tried adding mc_1 infront of everything, but that just gives an output error about a Sprite.Also, I'm currently using visible to control whether the back image to the textbox should show - What I'd really like to do is control it using a child, but they're movieclips not buttons, so when I try to addChild within the function it errors saying I'm trying to control a movieclip within a simplebutton function.

import flash.events.MouseEvent;
stop();
mc_textbox.visible = false;

[code].....

View 12 Replies

Flex :: Adding MXML Component As Child Of Main App Using AS

Apr 26, 2010

How can I add an MXML component as a child of the main application using ActionScript. It's not possible to instatiate it, is it? Assuming that behind every mxml file stands an actionscrpt3 class, I tried to import it but id didn't show up.

View 1 Replies

Flash - Closing Child NativeWindows When Main App Gets Closed (via OS)?

Mar 14, 2012

I have been going crazy over this! I have an Air (2.6) app which, when running opens up a pop up NativeWindow, to handle alerts.

public var _alertWindow:NativeWindow;
_alertWindow = new NativeWindow(windowOptions);
_alertWindow.stage.scaleMode = StageScaleMode.NO_SCALE;
_alertWindow.stage.align = StageAlign.TOP_LEFT;

[code]....

I have had no problems with this across all platforms. But in Windows7, when right click on the taskbar and selecting 'close-window' only closes the main app and not its child NativeWindow. ( This keeps the app running in the background - so when a user tries to access it again it does't run ) I have tried adding event listeners like Event.CLOSING, and various other methods but have failed.how to close windows from the 'close window' option in windows7.

View 1 Replies

ActionScript 3.0 :: Access Child Swf Function In Main Flash?

Sep 5, 2010

I have a very serious issue and need to be fix ASAP. Kindly check [url]... it is a flash based website, there on main flash file which have all the navigations (menu tab), when user click on any tab its load a external swf according to that tab, that swf has flv player which take videos dynamically, If user click on the trailers tab its load trailers.swf which have the player and the playlist when the user click on the video of the play list its player that video but the problem is that if the video is still in loading process and the user click on another tab so the main.swf load the swf according to that tab but the audio of the previous video is running...

thats i m trying to make a function in the child.swf(trailers.swf) which will pause the video so i will call that function the other tabs, so if the trailers.swf is loading and user click on comedy so that function will pause the video of trailers.swf and play the comedy.swf, So kindly tell me how i will access the function of [url]...

View 5 Replies

ActionScript 3.0 :: Overlapping Classes In Main Swf And Child Swfs

Dec 20, 2011

I have a project which has a main swf file that is compiled with a bunch of classes. The main swf also loads in other child swf objects, created in the flash IDE, that happen to reference some of the same classes.

It seems redundant to have the child swfs include the main swfs classes, especially if I update the classes which means I have to recompile all the child swfs, not just the main swf.

Im using FlashDevelop 4.0 RC3 with Flex 4.6/AIR 3.1 to code the main swf, and the child swfs are flas made in CS5.

I was thinking of using SWC's, but I'm not sure how to incorporate that into FlashDevelops workflow. I tried the SWC export plugin but that doesnt seem to work very well, it attempts to export everything in the project and doesnt seem to offer me an option to be specific...

Surely there is a way to compile flas from the IDE and allow for classes to be used for compile type checking etc, but not actually include them in the compiled swf? I know with the flex command line compiler you can generate a link-report xml from the main swf then use that xml file to exlude classes from the compile of the child swfs, but I cant see how to do something like that when exporting swfs from the flash IDE.

View 7 Replies

ActionScript 3.0 :: Remove A Child From The Main Timeline From Within A Movieclip

Feb 3, 2010

Someone the other day provided me with this code to a remove a child from the main timeline from within a movieclip.

parent.removeChild(MovieClip(parent).mc1);

This works fine, but how can I write an if statement to test if its in the display list before removing it?

As I'm getting an error if I try to remove it once its already been removed.

View 4 Replies

ActionScript 3.0 :: Event Handler - From Child To Main Button

Feb 26, 2010

How do I get a button event handler to refer back to the main timeline from within it's movie clip inside another movie clip?

View 1 Replies

Actionscript 3 :: Flex 4 Accessing Public Method In Main Application From Component

Sep 13, 2010

I need to be able to call a method from a component located under the main application in Flex 4. Can anyone tell me please how to do this without using FlexGlobals please?[code]

View 3 Replies

ActionScript 3.0 :: How To Access Instance Property Through Child In Main Class

Jan 23, 2011

I have make 3 classes objecthandler, box and nav. Nav is child class of objecthandler, I have make an instance of box into objecthandler and now I wanna access property of box through nav.
See the code:
Objecthandler class
package code{
import flash.display.MovieClip
import code.box
import code.nav
[Code] .....

View 1 Replies

ActionScript 3.0 :: Shutting Down Activities Of Loaded CHILD SWF In Main PARENT?

Jul 15, 2011

Scenario: in MAIN file, i have a door, when door is open, we can see activities behind the door - LOADED SWF - when the door is shut i would like all the activities behind the door - LOADED SWF to stop
 
Problem: my first attempt was to REMOVECHILD when the door closed, however, still functions in child=loaded file are continuing Possible Solutions i had in mind: I assumed if PARENT, dispatches an event and CHILD listens, i can say, if the door is closed, dispatch event to the child to stop functions. but it doesnt work, because i assume i dont know how to listen for an event dispatched from parent

[Code]... 
 
I am also open to any alternative solution that helps me shut off the activities when the door closes down, dispatching event was the first thought that came to my mind, not necessarily the only answer i m looking for.

View 1 Replies

ActionScript 3.0 :: Can't Access Variables That I Declare In Main Timeline From A Child

Sep 14, 2009

I can't access the variables that I declare in the main timeline from a child.

I attach the child to the stage during runtime.

View 3 Replies

ActionScript 3.0 :: Flash Call Metode In Main From Child Class

Oct 7, 2010

I have a child/ Background class there must call a metode in the main class.But this fail coms: BackGround.as, Line 35.1061: Call to a possibly undefined method resizeHandler through a reference with static type flash.displayisplayObjectContainer.[code]

View 3 Replies

ActionScript 3.0 :: Call To A Possibly Undefined Method Child Through A Reference With Static Type Function

Mar 29, 2011

public var blob:Blob = new Blob()
addChild.child(blob)

i get this error Call to a possibly undefined method child through a reference with static type Function.

View 4 Replies







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