ActionScript 3.0 :: Two Child Swf's With Same Document Class - Constructor Gets Overwritten - Flash Bug?

Jul 22, 2009

here is the scenario we ran across while working on our Flash AS3 project today.

/main/root.fla
/main/root.as
/main/sub1/sub.fla

[code]....

We have many sub swf's that are loaded by the main root swf. The root swf shows the art on the stage of the sub swf, and also runs some code from the sub swf's document class. However, we noticed the constructor was not getting called on the second sub swf if the document class is the same name- even if they are in different folders. Note that we publish our swf files to a separate directory (with the same structure as above) so it is easily copied to the web server.

-root.swf loads sub1/sub.swf
-the constructor of the document class sub.as in subfolder sub1 gets called
-root.swf shows sub1/sub.swf assets with the correctly constructed sub1/sub.as document class
-user chooses to switch to sub2

[code]...

We decided to use a workaround where we basically changed the two document class .as files to be different names (e.g. renamed sub1/sub.as -> sub1/sub1.as and sub2/sub.as -> sub2/sub2.as, and updated the .fla's to point to the renamed document classes), and it works as expected. Hopefully that workaround is useful for someone.I realize most people just name every single file differently and keep everything in one folder, but when you have a sufficiently complicated project, things like this come up.

View 2 Replies


Similar Posts:


ActionScript 3.0 :: Constructor In Document Class Runs Twice?

Sep 17, 2009

I'm working on my document class and the contructor is running twice, hence it is running almost all of my code twice.[code]

View 5 Replies

ActionScript 3.0 :: Pass Value To Document Class's Constructor?

Jun 24, 2009

I want to pass values to document class's constructor form html while embedding.

View 2 Replies

ActionScript 3.0 :: Delay Constructor Code In Document Class?

Jul 20, 2011

I'm learning how to work with a document class. Using the class below, I am learning that this initiates immediately when running the Fla. The problem is that the "scrol" Movieclip is not present in the first frame, which is a menu with a list of topics. Scrol comes later in and is in it's own section/frame label and goes to that section when selected from the main menu of topics.

Is there a way I could call this action only when the Movieclip is present or when that section is shown? Also, I'd like to apply it to other movieclips, not just scrol. Underneath se = new SwipeEngine(scrol,400,0); can I just add a duplicate line but change the mc name? A possible concern is that the mcs may be different sizes in length and might not need to scroll as far.

[Code]....

View 3 Replies

ActionScript 3.0 :: Call A Document Class Funtion From Constructor?

Feb 17, 2011

I've got a simple program that consist of a document class and a buttonTemplate constructor class. I need to call a function called updateText that should be in the document class, when someone clicks on a button. My event listeners for the buttons are in the buttonTemplate class. My question is, how do you call a function in the document class from a constructor class? Here is my simplified code below

DOCUMENT CLASS

Code:

package {
import flash.display.MovieClip;
import flash.text.TextField;

[Code].....

View 8 Replies

ActionScript 3.0 :: Error On Using An Untyped Parameter In The Constructor Of A Document Class?

Aug 9, 2010

I got an error like "Incorrect number of arguments.. Expected  0." when I was trying to make an instance of a user-defined class that I've written in the document class of my project.Here's the line in my document class:private var myNotice:myNoticeClass = new myNoticeClass(this);An untyped parameter is supposed to be the only argument to the constructor method of class myNoticeClass and the constructor is something like this

public function myNoticeClass(ref:*)
{ ......
}

[code].....

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

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 2.0 :: Child Class Calls Super Constructor

Sep 22, 2006

I got something just like that:

[code]...

I dont know if that is normal, but this code create an infinite loop, because when i create a new instance of class Two, because of the extends, the class One constructor is called again, and creating a new instance of class Two, and so on...I know how can i get this fixed, but, what i want to know is, this is correct? Its a Flash bug? Isnt that way in AS3?

View 8 Replies

ActionScript 2.0 :: F8: Objects Returned From Class Being Overwritten?

May 5, 2007

I have four movieclips on the stage. They can be dragged around. I have a class that creates a segment from two points, and returns the x-intercept, y-intercept, slope, and inverse slope of a linear function going through the two points.On every enterFrame() i create one segment for each pair of points, then the information is displayed in a bunch of dynamic text boxes.

The Problem: whichever object is sent over last overwrites the data from the first. I am creating two different objects with different names, but the first is being overwritten by the second. What is going wrong here?

FLA included. But you will need to make this class file:

Seg.as:

Code:
import flash.geom.Point;
class Seg {
// variables
private var p1:Point;

[code]....

View 2 Replies

ActionScript 3.0 :: Flash - Dispatching An Event From One Document Class And Listening For It Via Another Document Class?

Dec 14, 2010

I am dispatching an event from one document class and listening for it via another document class.My code in class A.

Code:
this.dispatchEvent(new MYEvent(MyEvent.APERTURE_DONE));
trace("Dispatching APERTURE_DONE");

my code in class B.

Code:
addEventListener(MyEvent.APERTURE_DONE, onDoorsOpen,true);
trace("Lisetning for APERTURE_DONE");

[code]....

My listener is registering before the event is dispatched, based on my output window, however I never get the "Open Doors" trace statement to fire.

View 2 Replies

Actionscript 3 :: Referencing A Document Class From A Child MovieClip?

Apr 13, 2010

I have a document class with a child MovieClip on the stage. I have the clip already on the stage because it's part of an complex layout provided by the designer and it seems easier to leave it on the stage than to use addChild (since I would have to add about 60 objects).What is the best way to reference the document class from inside the child MovieClip class?

View 1 Replies

ActionScript 3.0 :: Where Is Document Class In Parent/child Hierarchy

Jan 19, 2011

I have a class linked with a movie clip, and in this movie clip I want to be able to add an event listener that calls a function in the Document class (the class you link with the fla as a whole). How can I do that? Say the name of my document class is KPScript.as. In my GameController.as class, I want to listen for key input and call pageChange() in KPScript.as when it gets called. Would I have to import KPScript.as into the GameController.as? If so, I wouldn't want to create another instance of the KPScript object.

View 1 Replies

Actionscript 3.0 :: Access Child Swf Document Class Using ApplicationDomain

Jun 22, 2009

i m getting an error, i am loading an external child swf file to main parent swf, and want to access the document class of the child swf through parent swf document class using application domain. Now when both child and parent swf resides in same directory it's works properly with application domain means we can access the document class of the child swf see the attachment samedirectory.zip and when we move child swf and it's document class to sub directory that time we are unable to access the document class of the child swf see the second attachment subdirectory.zip

View 1 Replies

Actionscript 3.0 :: Access Child Swf Document Class Using ApplicationDomain?

Jan 17, 2010

i m getting an error, i m new to as3, actually i am loading an external child swf file to main parent swf, and want to access the document class of the child swf through parent swf document class using application domain. Now when both child and parent swf resides in same directory it's works properly with application domain means we can access the document class of the child swf see the attachment samedirectory.zip and when we move child swf and it's document class to sub directory that time we are unable to access the document class of the child swf see the second attachment subdirectory.zip and give me right direction

View 2 Replies

ActionScript 3.0 :: Root And Document Class For Child SWF Loaded By Parent SWF?

Feb 12, 2011

I'm using a PreLoader as a parent SWF that loads the actual website as a child SWF. In the website SWF, the child SWF, will MovieClip(root) still work and refer to it's own root, or the PreLoader's root? And would I still access the websitite's document class (the child's document class), through MovieClip(root)? What if both files have a document class?So my main question is how do document classes and MovieClip(root) behave in the scenario when you have:

Parent SWF - document class, MovieClip(root)
|
Child SWF (loaded by parent) - document class, MovieClip(root)

View 2 Replies

ActionScript 3.0 :: Access The Document Class From A Child Movie Clip On The Stage?

Jul 22, 2010

i know this may seem kind of dumb, but how does one access the document class from a child movie clip on the stage?

i have a property in my class. Just a string for testing:

Code:
public var s:String = 'can you see me';

it traces on the root time line, but it errors out if tracing it from a movieclip on the root time line.

View 1 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 :: Reference Main Document Class From Document Class Of Loaded Swf

May 7, 2011

I have a FLA (say Main.FLA) document class with a child MovieClip on the stage: into the child MovieClip I load other swf files: each of the files contains its own Document Class (every swf is a somewhat independent application, say quizzes and so on).For some reason I must use the Main document class to store data (scores or so) from the child swfs loaded into the Main swf. HOW do I reference the Main class? I can't find a way.[code]and dispatch an Event this way from the loaded swf document class to the Main class:[code]Now, first of all I don't know if this could even work. Secondly, I tried to make it work by adding an event listener to my Main class but id did not work.

View 9 Replies

ActionScript 3.0 :: Flash - Class Constructor Not Being Run?

Nov 22, 2010

i have some pretty simple code, i have my document class trying to add a santa class to the stage (simple game ) - but it will not add and i get not errors at all,Santa class:

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

[code].....

View 5 Replies

ActionScript 3.0 :: Use The Constructor Of A Class Which Has Been Placed With The Flash IDE?

Oct 22, 2011

I have a custom class, MyMC. The only argument the constructor takes is a string, which sets the text of a label inside MyMC.

In the Flash IDE I've placed an instance of MyMC, which is called mcOnStage, on the stage. Through the document's class Main I'd want to perform the constructor function of mcOnStage.

View 2 Replies

ActionScript 3.0 :: Moving Document Class .fla Cannot Find The Document Class - WTF?

Sep 22, 2008

So I had a working .fla, with a document class package in the same directory. Everything was fine, until moving both to a new directory, now the fla cannot find the document class. WTF?

View 2 Replies

Flash :: Make A Class Constructor Be Callable As A Function?

Dec 1, 2010

Some of the top level classes can be instantiated as well as called as a function (e.x. new Number() and Number(), new Boolean() and Boolean(), new Array() and Array()).

Usually this is used for type conversion or as a shortcut for instantiation. I would like to be able to do the same thing:

[Code]...

What I wanted to do originally was to create a logging class to interact with Flash/JavaScript, and be cross-browser compatible. I wanted to be able to use the log function as an alias of a method in the log class. This got me to wondering whether I could implement a custom casting function just because. I've now realized it's not possible, but was fun to play with anyway.

View 2 Replies

Actionscript 3 :: Flash Define Variables Before Or In Class Constructor?

Dec 15, 2011

what is the difference between something like

package {
public class Myclass {
var txt:TextField = new Textfield();

[code]....

View 1 Replies

ActionScript 2.0 :: Delayed Child Constructor?

Jul 16, 2009

I have a timeline instanced movieclip which i'm calling a method on its parents movieclip constructorproblem is that even though the object already exists, its methods are "undefined", i have put some traces in, and noticed the child constructor is calling after its parent constructor..

View 2 Replies

Actionscript 3 :: Flash CS5 Reference A Display Object From A Class Other Than The Document Class

Jul 28, 2011

Using Flash CS5 Professional I have created a symbol, dragged it onto the stage, and given it an instance name of GreenLight1. If I want to make this visible from the document class, I can simply do the GreenLight1.visible=true; and poof it's good to go when I test the file. As long as I stay in the document class I am good to go, but now I'm trying to move to another class and hitting ALL kinds of trouble just trying to get Flash to allow me to access this simple object. All I am looking to do is have this GreenLight1 go invisible (visible=false) when a certain condition occurs in this new class and Flash just won't let me access GreenLight1 at all. Things I've tried thus far:

stage is passed to the class and is referenced by _stage and is working just fine when I do _stage.addchild or anything like that. So I have tried "_stage.GreenLight1.visible=false;" and I get "ReferenceError: Error #1069: Property GreenLight1 not found on flash.display.Stage and there is no default value." My document class extends Sprite, so I figured I'd try the root function. So I tried "Sprite(root).GreenLight1.visible=false;" and I get "1119: Access of possibly undefined property GreenLight1 through a reference with static type flash.display:Sprite." I tried to create the Resource class as described therein. To which I came across the same problem that I started with in that it doesn't know what GreenLight1 is to begin with so I got "1120: Access of undefined property GreenLight1." Here is my code for Resource.as (am I supposed to pass something to this class from the document class?)

[Code]...

View 2 Replies

ActionScript 3.0 :: Flash Access Component Params From Class Constructor?

Jan 18, 2011

have a movieclip on the stage, whose Class is "com.nestor.elements.letterKey". The class funcKey extends "key" which contains a "public var val:String". I have many instances of letterKey(asdfghj.... a full keyboard), so I'd like to use the IDE to arrange and pass variables. SO, within the Flash IDE/Library, I rightclick the symbol to access its component definition, and add a parameter for the var in the baseclass name:value,variable:var,default:whatever,type:Str ing).Now, in the constructor function for the baseclass, if I trace my variable: it is null.

View 1 Replies

Flash :: Loader Class Problem Tracing The Swf (document Class)

Oct 12, 2010

I am using the Loader class to load 3 external swfs: sharedTopics.swf (does not have a document class) fonts.swf (document class is FontManager) main.swf (document class is Main) The same loader is used to load all 3 assets.

[Code]...

View 2 Replies

ActionScript 3.0 :: Flash - Calling Method On Document Class From Another Class?

Jul 5, 2010

I have a rather silly question but as3's document class always gets me confused.I have a public method on my document class. I want to call this method from another class that is instantiated from within an object in the library of the flash file (the same one on whose document class I want to call a method).

View 6 Replies

ActionScript 3.0 :: Flash Call A Function From The Document Class In Another Class?

Apr 20, 2011

I have a Document class that instantiates a class named Other. I need to call a function in the Other class from the Document class.I'm getting this error: Call to a possibly undefined method OtherFunction through a reference with static type Other.I have read online that you need to use make the functions static or use a getter function but I'm unclear how to do that. I haven't been able to make it work and I feel like i'm missing something fundemental with this problem.below are simplified versions of the classes.

Document class

Code:
package {[code]......

View 1 Replies







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