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


Similar Posts:


ActionScript 3.0 :: Access A Public Function (main.as) From Main.fla?

Oct 8, 2010

If I have a main.fla and main.as (where I written a Main class).

How can I access a public function (main.as) from main.fla?

View 4 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 :: 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 :: Access Child.swf Function From Parent.swf?

Dec 22, 2008

I have to access a function in child swf from parent swf. This child swf gets loaded into a canvas object in parent.swf. Everything works fine but I'm unable to call any function that was in child.swf. My code is

Code:
var swf1:SWFLoader = new SWFLoader();
swf1.source = "CHILD.swf";
can.addchild(swf1);

I read on google and then I tried this in parent.swf's code

Code:
var myrequest:URLRequest = new URLRequest("CHILD.swf");
var myloader:Loader = new Loader();
myloader.load(myrequest);
canvas.addchild(myloader);

Now this one throws up a runtime error TypeError: Error #1034: Type Coercion failed: cannot convert flash.display::Loader@5934b01 to mx.core.IUIComponent.

I also tried this

Code:
var myrequest:URLRequest = new URLRequest("CHILD.swf");
var myloader:Loader = new Loader();
myloader.load(myrequest);

[Code]....

But in this case my swf does not show up at all and there are no runtime errors too!

How do I resolve this error and how do I then access the function in child.swf?

View 9 Replies

ActionScript 3.0 :: Access A Function Inside Child?

Jan 11, 2011

I have difficulty accessing a function inside a child object from parent.I've created an object named "dot" which has the following code in it:

ActionScript Code:
import com.greensock.*;
import com.greensock.easing.*;

[code].....

View 9 Replies

Flex :: Access Main Function From Component?

Dec 6, 2010

How do I get "close" button to run runFunction() from within component to outside declaration? FxGlobals.topLevelApplication doesn't seem to be working for this.

<fx:Declarations>
<fx:Component className="MyNativeWindow">
<s:Window>

[Code]....

View 1 Replies

ActionScript 3.0 :: Access Main Class Function From External?

Feb 9, 2009

I'm quite confused about how to do it, look at this [code]...

View 2 Replies

ActionScript 3.0 :: Call Function, Pass Value, Access Variable In Movieclip Class From Main Stage?

Nov 20, 2008

I have a movieClip named MC, and it's enabled with action script, with the class name MC_Rectangle and a Stage.I override the MC_Rectangle class file in a mc_rectangle.as external file.here is the code:

package{
import flash.display.*;
import flash.events.*;[ code].....

I have new a object in the main stage var

mc_rect:MC_Rectangle = new MC_Rectangle()

in main stage:

1. how can i access the variable "sequence" in "mc_rect"

2. how can i pass parametre from main stage to mc_rect via function setSequence(data:int)?

3. how can i call the function in addSequence() in mc_rect.

in asp.net, i usually use mc_rect.sequenct,mc_rect.setSequence(data), mc_rect.addSequence() to achieve my goals......btw, can function in mc_rect return out result to main stage?

View 1 Replies

Flex :: SWFLoader - Child Apps Couldn't Access Certain Objects That Were Instantiated By Another Child App?

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

ActionScript 3.0 :: Access Child Vars/functions Without Adding Code To Child?

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

ActionScript 3.0 :: Access Function At Main Class From A Sub Class?

Mar 3, 2011

My first experience is build an aquarium with a lot of fish swimming, and they can be clicked. When one of them is clicked we should receive a trace message saying ("I�m a Fish!"). To do this, I thought that the best way will be:

1- create a document class, named Main.as

2- create a base class, named Clicked.as

2- create a movie clip with a fish.

3- export the movieclip to actionscript. In the mc properties set Class as "fish" and Base Class as "Clicked".

View 6 Replies

ActionScript 3.0 :: Access A Function In The Main Class From Another Class?

Mar 1, 2010

i have a game that i want to put load screen on, which i created a separate class for. first the main class is initialized and in the constructor function, it does an addChild(loadScreen) which places an instance of the loadScreen MC on the stage. within the loadScreen is a "Play Button" that when a user presses this button i want it to continue startGame in the Main class. the way i tried it was Main.startGame from the loadScreen class, but that obviously does not work. is it possible to call a function from a different class.i have three files:

Main.fla
Main.as
loadScreen.as

the Main.as file:

Code:
package
{
import flash.text.*;
import flash.display.*;

[code]....

View 3 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 :: 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 :: Flash Call Function In One Child Class From Another Child Class?

Dec 1, 2011

I'm trying to call a function in one child class (Circle.as) from another child class (Wedge.as). Circle.as is instantiated by the document class (Tree.as), and Wedge.as is instantiated by Circle.as. How do I do this? This is my code:

Tree.as
package com.treediagram
{
public class Tree extends MovieClip
{

[code]....

How to call a function in a Class from another Class?but it was a bit hard to follow as it relates to my problem. One of the solutions worked, but was commented as being bad form, and another did not work, so I want to make sure I structure my code properly.

View 3 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

Flash :: Flex - Export SWC And Access Child

Mar 15, 2010

I'm creating an actionscript project in Flex Builder. I succeed to export from Flash a SWC file, and to use it succesfully in Flex. I have a good programming background and Flex looks very simple for me, but I have difficult times in flash. I'm trying to achieve something that might be very simple(not for me of course): I create a simple shape in Flash, convert it to symbol. Then I create a TextField. The I select both the elements and convert them to another symbol, and Export it as a movieclip in swc.

In flex I want to change the value from the textfield. How should I do? I'm trying to do:

var t:ExportedMC = new ExportedMC();
t....(what should I write here)

As I mentioned when I open flash I feel like an elephant in a porcelain store. I have 2 questions here: - how to assign a name to the textfield in flash? I'm using CS4. - how to access it as a child in flex?

View 1 Replies

Flash :: Embed Access Child Movieclips?

Sep 11, 2011

So I am using this code to embed my .swf file. I am creating classes for each asset in my library.

[Embed('assets/assets.swf', symbol='game.menu.levels')]
public static const LEVELS_MENU:Class;

It works just fine but how can I access a child element multiple depths down?

[Code]...

View 2 Replies

Flash :: Access Top Level Function When Class Has A Function Of The Same Name

Dec 16, 2011

I have a class Debug with a function called trace inside it which puts a TextField on the stage and outputs the text. Now I am trying to get the Debug.trace() function to do a "normal" debug trace as well from within side itself. of course this causes a recursive loop. I am trying to figure out how I can access the top level separately. I tried using namespaces such as AS3::trace but to no luck.

I know a solution is to rename my function to stop the conflict, but I would like that to be a last resort. It is being used in quite alot of places throughout my entire code so replacing it everywhere is going to be a ballache.

View 1 Replies

Flash :: Access Child / Nested Movie Clips With JSFL AS3 CS5.5?

Sep 22, 2011

How can I access a movie clip's children (specifically child movie clips) in jsfl? [code]...

View 1 Replies

ActionScript 3.0 :: Flash - Access Child Created By Document Class?

Apr 14, 2011

I am new to AS 3 and I tried to solve this (probably really simple) problem, but I couldn't, so I gotta ask here. All I did was create a child through a function in my document class.It is in fact an altered version of the rotate circles tutorial from kirupa.

Code:
function makeCircle (e:Event):void {
var circle:BlueCircle=new BlueCircle ;

[code]......

View 4 Replies

ActionScript 3.0 :: Flash - Access Nested MCs From Main Document Class?

Mar 11, 2012

I have 3 dynamic textfields that are added to the stage through an external class, (I only add the main container from the Main.as) the textfields are nested under 5 MCs (that's what i see when i list objects in the debugger) how can i access those textfield from the Main document class?I've tried by path, by getchildbyname, i've exported the font for AS (the textfields have instance names)... and nothing works, i either get an error or it tells me it has no properties, or null..

View 14 Replies

ActionScript 3.0 :: Calling Function From Child To Child?

Dec 9, 2010

I have a main.swf. I have loaded two child-SWFs into it, child1.swf and child2.swf.... There´s a videoclip inside child1.swf, can I stop that video from child2.swf?

View 2 Replies

Flash :: Call Parents Function From Child?

Jan 18, 2011

My parent ActionScript3 file has functions like these:

package
{
*lots of import.*
public class Tabu extends MovieClip
{

[Code]...

View 1 Replies

Actionscript 3 :: Main Function In Flash?

Feb 23, 2010

I'm trying to start off a as3.0 project with nothing in the maintimline, I want my default actionscript class to start things off. Like a main in C, so is there a main like function in AS3.0 ?

View 2 Replies

Flash :: Call Override Child Class Function?

Nov 14, 2010

I have two child classes ClassA and ClassB both inherit the same base class.

I also have a function that has a parameter which could be an instance of either child classes.

function Test(instance):void //instance is either a ClassA or ClassB instance
{
instance.DoSomething();
}

However, when I run the test, it's always the BaseClass.DoSomething() get called. How can I use the same function (DoSomething()), but call child class function instead of the base class one?

View 2 Replies

ActionScript 3.0 :: Flash Executing Parent Function From Within Child

Jun 11, 2010

I have this movieClip "Container" and within it on two different frames I have two movieClip/buttons, "pause_btn" and "play_btn", respectively. I would like to call a function on the main timeline on frame two of "Container" where "play_btn" is located.
I think I'm getting close but really have no idea. I know about the visible property and have been considering that, but isn't there a way to call a parent function from within a child movie clip? The code looks like this.

[Code]...

View 3 Replies

Flash :: Remove A Child Movie Clip Created By Other Function

Feb 14, 2011

I have added a listener function for mouse event

bar.addEventListener(MouseEvent.MOUSE_OVER,mouse_over_bar);

And defined the function

public function mouse_over_bar(ev:MouseEvent):void{
var hover:MovieClip=new Hvr();
var tween:Tween;

[Code]....

How i remove this child movieclip hover? I would like to remove the chil when i am roll out from the bar.

View 3 Replies

ActionScript 3.0 :: Flash Calling A Function On The Main Timeline?

Sep 27, 2010

So this was quite simple in AS2, but considering that _root is no longer around, how can I call a function that is on the main time line from a nested movie clip?

This is what I have inside my movie clip:

Code: this.hit_mc.addEventListener(MouseEvent.CLICK, updateScore); I tried using Stage.updateScore, but that didn't work either. This is the error I'm getting:

1119: Access of possibly undefined property Stage through a reference with static type flash.display:Stage.

View 2 Replies







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