ActionScript 3.0 :: Using A Variable As A Class Name?

May 8, 2009

Having just made the jump from Actionscript 2 to 3, I'm having problems.Is it possible (I hope so) to use a variable when creating a class?I have a movieclip 'exclam' in the Library, and want to programatically add it to the scene: I can use the code:var asset:exclam = new exclam();to do this. However, if I have a variable 'textvar' containing "exclam", I'd like to use code like:var asset:textvar = new textvar();Of course, it doesn't work, since it thinks 'textvar' is the name of the movieclip I'm trying to use. Hopefully it's just a matter of syntax.

View 4 Replies


Similar Posts:


ActionScript 3.0 :: Passing Variable From Document Class To Movie Clip Class?

Oct 12, 2010

i have a movie clip which is exported for ActionScript , i want to get a variable from the document class into the movie clip class i tried this but there was an error !!

ActionScript Code:
var main:Main=new Main();
main.txtScore.text="hello";

View 1 Replies

ActionScript 3.0 :: Accessing A Class's Static Functions From A Variable Of Type Class?

Feb 19, 2010

I realize this is kind of an odd issue, but I am wondering if there's any way to get Flash to allow me to access a class's static functions using a class variable that points to the class. Example:I create a class called FooClass that has a static function named fooI then create a variable of type Class that points to it

Code:
var class:Class = Class(getDefinitionByName("FooClass"));
However, when I try to call foo() using the variable, it errors saying the function

[code].....

View 6 Replies

ActionScript 3.0 :: Passing A Variable From The Document Class Into A Custom Class?

Dec 28, 2009

I'm trying to create a class which will create a tween for several different instances of an object. I am creating the instances in the Document Class. The trick is, I would like to specify how long each tween will take.

Here's what I have so far:

DOCUMENT CLASS

ActionScript Code:
package {
import flash.display.MovieClip;
import mcCloud;

[Code].....

As you can see, I have a variable "myTime" which syncs the timer and the tween. This causes to tween to repeat and the clouds to continually scroll across the stage. How can I determine the var myTime at the time I create each instance of the Movie Clip mcCloud?

View 6 Replies

ActionScript 3.0 :: Reassign Class Variable To A Blank Instance Of Its Class?

Aug 31, 2011

When I declare a class variable
 
private var myVar:MyClass = new MyClass(); 

It creates a new instance of that class that will trace as [Object MyClass].
However, as soon as I assign it to something
 
myVar = thisOtherVar; 
It will now trace as [Object thisOtherVar].
 
I need to get it back to where it's just an "empty" blank class instance, if that makes any sense at all.

View 14 Replies

Professional :: Accessing A Variable Defined In One Class From Another Class

Mar 14, 2011

I've only been programming in as3 for a couple months, and so far I've written several compositional classes that take MovieClips as inputs to handle behaviors and interactions in a simple game I'm creating. One problem I keep coming upon is that I'd love to access the custom variables I define within one class from another class. In the game I'm creating, Main.as is my document class, from which I invoke a class called 'Level1.as' which invokes all the other classes I've written.Below I've pasted my class 'DieLikeThePhishes'. For example, I would love to know the syntax for accessing the boolean variable 'phish1BeenHit' (line 31) from another class. I've tried the dot syntax you would use to access a MovieClip inside another MovieClip and it doesn't seem to be working for me.[code]

View 1 Replies

Professional :: Accessing A Variable Defined In One Class From Another Class?

Mar 14, 2011

I've only been programming in as3 for a couple months, and so far I've written several compositional classes that take MovieClips as inputs to handle behaviors and interactions in a simple game I'm creating. One problem I keep coming upon is that I'd love to access the custom variables I define within one class from another class. In the game I'm creating, Main.as is my document class, from which I invoke a class called 'Level1.as' which invokes all the other classes I've written.Below I've pasted my class 'DieLikeThePhishes'. For example, I would love to know the syntax for accessing the boolean variable 'phish1BeenHit' (line 31) from another class. I've tried the dot syntax you would use to access a MovieClip inside another MovieClip and it doesn't seem  to be working for me

package  jab.enemy
{
import flash.display.MovieClip;

[code].....

View 1 Replies

Actionscript 3 :: Referencing Variable In Document Class From Another Class?

Mar 11, 2011

I need to increment an integer variable in a function within the document class upon transpiring event in another class. I can't seem to figure out how to call the function and reference the variable.

View 2 Replies

AS3 :: Listen From The Main Class To A Sub Class For A Variable Change?

Apr 25, 2011

How do I listen from the main class to a sub class for a variable change?

package {
import flash.events.*
public class DataBase extends MovieClip {

[Code].....

This is what I have so far for the sub class but I can't seem to figure out how to listen to this variable change from Main() or even if I am dispatching the event properly.

View 2 Replies

ActionScript 3.0 :: Accessing Variable In Document Class From Within Another Class?

Mar 11, 2009

I have an array in my doc class that I'd like to access from an external class. Can you do this and if so what's the syntax?

View 6 Replies

ActionScript 3.0 :: Changing Variable Values In One Class From Another Class?

Sep 7, 2010

I have two document classes. One is Main.as the other is Step2.as. I want to declare a public variable in Main.as then need to give it a value from Step2.as. That value will later be used in my next Document class Step3.as How would I write the code that gives the value in my Step2.as and then how would I write the code that retrieves the value in my Step3.as?

Note I can't import my Step2/ or Step3 document class into my Main.as.

View 2 Replies

ActionScript 3.0 :: Accessing A Variable Name Containing A Class From The Class Itself?

Jul 21, 2010

would it be possible to access a variable name containing a class from the class itself?

Example:
Code:
var __NAME__ = new TestClass();
package com.Test
{

[Code]...

View 14 Replies

Flash :: How To Get Variable From Another Class

Feb 16, 2012

I am developing flash game.

first class:
public class Game{
public var age;

[code].....

View 1 Replies

ActionScript 3.0 :: How To Get Variable Out Of Class

Sep 28, 2011

ActionScript Code:
private function xmlLoaded(e:Event):void{
xml = new XML(e.target.data);
for (var i:int = 0; i < xml.item.length(); i++) {
var btn:Button = new Button(xml.item[i].label, xml.item[i].@id, xml.@colorOver, xml.@colorOut);
btn.y = Math.floor(i * btn.height);
[Code] .....

Simple, inside my Button class I gave a value to "id" how can i retrieve it from the event? Tried lots of stuff, just don't know how:
trace(e.target.id);
Something like that.

View 3 Replies

ActionScript 2.0 :: Getting A Variable From A Class?

Sep 9, 2007

I have just created a class 'ClassA' that loads an XML file.Within that class I have a public function that navigates through the XML and populates arrays with the XML content.

I am now creating another class, which will be called 'ClassB' which I plan to extend 'ClassA'.

>From 'ClassB' I would like to reference the array variable (which is not in the constructor) to re-use in the 'ClassB' class. I have tried tons of different ways all of which I get undefined.

View 2 Replies

ActionScript 2.0 :: Can't Set A Class Variable To Id

Mar 3, 2005

i'm having an issue fitting setInterval() methods into an AS2 class--basically, since setInterval works by calling a function at a set interval, and it returns an object reference, like this:

Code:
public function loadSplash():Void {
var id=setInterval(loadSplashMC,1000);
var sM:Object=new Object();
Mouse.addListener(sM);

[code]....

the problem is that i can't set a class variable to id--i tried defining it as a generic object, like this:

public var id:Object;

but it didn't work...i'm not used to working with setInterval, so maybe i'm just not using it right--perhaps i should put it all into one function?

View 4 Replies

ActionScript 3.0 :: Getting Variable Definition From Class?

Jan 7, 2010

Any way that I could get a variable definition straight from a class (or some sort) without having to create an object and read it from the object. Basically I need to know a whether an object will have a specific true or a false variable definition but I don't need to create the object right away for anything else. It seems a bit of extra processing to create an object I may not use for sometime but just needed to know a true/false early on. I can give it the name of the class just hoping to bypass the object creation and hope garbage deletion will take care of it.

View 1 Replies

Access Local Variable From Another Class?

Apr 11, 2010

How to access a local variable from another class? I have this powerup class that changes the speed value of the enemy in enemy class(it's a game). For instance, if player hits the powerup it changes the local variable 'speed's value inside enemy class.

View 3 Replies

ActionScript 3.0 :: Get A Variable From Another Class Subfunction?

May 7, 2009

I am calling a function in one class from another (primary) class. That works with a straight function call.However, the function I am calling loads an XML file and, upon load completion, calls a handler function.My problem is that all data in the handler function disappears when the function terminates so I cannot access the result from the primary class.

View 4 Replies

Using Public Variable From Document Class

Jun 9, 2009

I've created 2 public variables in my Document Class...
 
public var _wall1:Wall=new Wall();public var _wall2:Wall=new Wall();I've then added them to the stage and given them relevant instance names...
  
stage.addChild(_wall1);_wall1.x=32; _wall1.y=510;_wall1.name = "wall1";I then want to use these variables in another Class (Ball.as). They need to be accessed in a function within the Ball Class constructor.
  
function bubble(event:Event):void{if(this.hitTestObject(_wall1)){    this.x += 1;}else if(this.hitTestObject(_wall2)) {    this.x -= 1;}However, the following Error message keeps appearing...
  
1120: Access of undefined property _wall1.1120: Access of undefined property _wall2.Any pointers? Do I need to import something into the Ball Class to point to the _wall# public variables in the Document Class?

View 1 Replies

ActionScript 3.0 :: Use Gloabl Variable Without Class

Dec 22, 2011

I am Created One Animation in Action Script 2.0, in that I am Using Global Variables.Now I Create that animation in Action Script 3.0. But the Global Variable was shows Error.Any Passible for Using the Gloabl variable in AS3 Without Class.

View 1 Replies

ActionScript 3 :: Access Variable In Class Through Another One

Dec 9, 2010

I have a class with a var textFieldObjets:Textfield in my class environment. What I'd like to do, is access this var from another class and change the text. I tried things like
environment.textFieldObjets.text = ".....";
Got error 1119, Access of a possible undefined property textFieldObjets trough a reference with static type Class.
I can't even access my environment class...

View 2 Replies

Actionscript 3 :: How To Pass A Class As A Variable

Feb 10, 2011

Is there a way to pass a Class as a variable in Actionscript 3.0? For example:

[Code]...

View 1 Replies

Actionscript 3 :: Use SWF Height For Class Variable?

Sep 18, 2011

I want to use height in [SWF height=200] for class variable.

I tried the following code but it causes compile error.

const SWF_HEIGHT:int = 200;
package {
import flash.display.*;

[Code].....

If I use the number, 200 instead of const SWF_HEIGHT, the compile error doesn't happen. But I don't want to write the same number on 2 places.

Is there way to avoid writing the same number on 2 places?

View 2 Replies

ActionScript 3.0 :: Get A Variable From Base Class?

Feb 22, 2009

How do I pass a variable to the subclass? [code]...

When I run this, I get back. Access of underfined property. How I get the subclass inherit the variables from the base class?

View 1 Replies

ActionScript 2.0 :: Variable In Class Cannot Be Access Within Itself

Aug 12, 2009

[code]...

I keep on getting the output "undefined" everytime trace was called.

View 2 Replies

ActionScript 3.0 :: Pass Variable From One Class To Another In It?

Nov 13, 2009

I am newbie in the actionscript, and i don't know how to pass a variable from one class to another![code]...

View 2 Replies

ActionScript 3.0 :: Access Variable In One Class From Another?

Feb 10, 2010

I have a class file by name [code]...

i have written this following code to be able to access the previous class, but even though the value of the wrongclick isnt 0, i always get teh value as 0.[code]...

View 1 Replies

ActionScript 3.0 :: Setting A Class Variable?

Aug 3, 2010

trying to get a variable set so that I can use it in another class.I am trying to set the class variable animate. My "intended" goal is that I am trying to load in an external SWF file that is a pulley In this external SWF file I have a function that stops the animation called "stopAnimation()". I want to be able to access this stopAnimation function in a couple of class files. So I pass this object to those classes and then I should be able to access the stopAnimation() function from where ever but I cannot seem to get the contentloader info into a class variable in order to call it from other objects.

Here is the code

PHP Code:

package com.ahicks.assets{
import com.ahicks.Main;
import com.ahicks.Trace;
import com.ahicks.ndTween.easing.*;

[code]....

View 0 Replies

ActionScript 3.0 :: Using A Variable In A Tween Class?

Oct 16, 2010

I am creating a load of tween classes, but the outcome of the tween, the "end" variable, depends on a users action, e.g. a combo box selection...How can I feed this through into the end variable in the tween class.THis was my educated guess, but it doesn't want to work?...

ActionScript Code:
my_Combobox.addEventListener(Event.CHANGE, Asizes);
var CanvasType:String

[code].....

View 6 Replies







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