Actionscript 3 :: Object Notation For Variable

Dec 3, 2011

I have some variables in the format: var like6Y:Number = 50; Later I am dynamically setting some: num=6; Then I am trying to use that num to get the variable like6Y: like+6+Y I know that is totally wrong but I seem to remember you could use some kind of object notation to accomplish this: ["like"+num+"Y"] Or something along those lines. But I can't remember how to do it.

View 3 Replies


Similar Posts:


ActionScript 2.0 :: Variable-Bracket Notation-Loops?

Mar 12, 2007

I have taken a bottle of Excedrin due to the headache I've developed from this problem I am having. I have some variables:

[AS]
var snd1:Sound = new Sound(this);
var snd2:Sound = new Sound(this);

[code].....

View 1 Replies

ActionScript 3.0 :: Object Literal Notation For A Custom Class?

Feb 10, 2010

I've created a custom class to represent a monster in a game. The class definition has "public class Monster extends Object". I'd like to know if there's a way to initialize the object using object literal notation. For example, this works ok:

[Code]...

I get this error: "Implicit coercion of a value with static type Object to a possibly unrelated type Monster." Is there a way to do this? I'd rather NOT have to call the Monster's class initializer each time, because in the actual code there are a lot more variables in the monster class than just those three, and it's kinda unwieldy to pass a dozen long strings into the new() function.

View 3 Replies

ActionScript 3.0 :: Flash FXON (Flash XML Object Notation) Project

Apr 16, 2011

I just started an open source project @ Google Code. I came up with this simple notation for a recent project. I have since used it on several projects and am happy to share it with anyone else who might benefit. I could also use a hand with the documentation and also features if anyone is interested in helping out. Take a look and feel free to provide feedback. [URL]

View 11 Replies

ActionScript 3.0 :: Object.VARIABLE - Call A Field Of A Object Using A Variable?

Sep 1, 2009

Is it possibile to call a field of a object using a variable? Something like:

[Code]....

View 5 Replies

Xml :: Flex Using XML Dot Notation String?

Mar 8, 2012

In the following example the first trace gives me the xml data at the node, but the second trace does not. This is AS3. How would I use a variable to do the same as inline dot notation?

var x:String = "animXML.home.version";
trace(animXML.home.version); // this works
trace([x]); // this does not

View 1 Replies

ActionScript 3.0 :: Scientific Notation In Conditionals

Nov 16, 2010

I have the following: ActionScript Code: if ((player.charVelocity < 9.0180945396304027e-26 && player.charVelocity > -9.0180945396304027e-26)) it seems to be firing as soon as charVelocity gets between 1 and -1. Am I writing that correctly? I assume it would work as I copied the syntax it was outputting for the variable value (which is set to 'int')

View 5 Replies

ActionScript 2.0 :: Using Array Notation And This Keyword

Feb 19, 2006

I am trying to create a number of movie clips in my main movie but I don't seem to be able to access these movies using array notation and the 'this' keyword. Here's some example code in a main timeline.
var i=0;
createEmptyMovieClip("clip"+1,0);
trace(this["clip"+i]);
////undefined - why?????
var clip=createEmptyMovieClip("clip_holder",1);
clip.createEmptyMovieClip("clip"+i,0);
trace(clip_holder["clip"+i]);
/////_level0.clip_holder.clip0.
This is ok. What's wrong with this["clip"+i] ?

View 1 Replies

ActionScript 2.0 :: Shorter Notation For Zillion OnRollOver's?

Oct 5, 2004

I have 10 or 100 or 1000 mc's on stage that do exactly the same on an onRollOver event and on an onRollOut event, what's the easiest way of writing this ? let's assume that the mc's are called mc1 to mc100, could it be done with an array and/or for statement ? Cause I'm used to old fashioned coding, I'm used not to try to cut corners So it kind of restricts my thinking a bit at times. So, do I need to start with an onRollOver event handler for each button in order to make Flash notice the onRollOver event for each button ?

View 1 Replies

ActionScript 2.0 :: Dynamic MovieClip Referencing Using Array Notation

Feb 23, 2009

I know that a dynamic mc can be referenced using array notation
viz: myArray['someName'+i]
My question is ... can mcs that have been placed on the stage and given instance names be referenced in some similar way? If I have placed 10 mc's with different instance names eg mg1, mg2, mg3 etc, can I reference them using array referencing?

View 6 Replies

ActionScript 2.0 :: Convert Decimal Number To Scientific Notation?

Jul 21, 2010

I've got a calculator that i created in as2 that converts different units of measurement. However, right now it always converts the numbers into a decimal number like 0.33333333 or 450.72. How in the world would i convert these decimal numbers to scientific notation? For example, say i have a number: 12,700. Expressed in scientific notation, this would be 1.27x10^4.I hope there is an easy way to make flash convert to such a number system? I know its easy to round numbers in decimal, but have never worked with scientific notation before.

View 9 Replies

ActionScript 2.0 :: Create An Xml Object (or Any Object In Fact) Named After A Variable

Oct 28, 2003

How can I create an xml object (or any object in fact) named after a variable, i.e variable called section with value "names" create object [section value + "XML"] = new xml(); result: empty xml object called namesXML

View 3 Replies

AS3 :: Accessing Attributes Of A Static Variable Of An Object From Another Object

Nov 7, 2009

I have 2 classes, Display holds the currently selected Component:

public class Display
{
public static var selectedComponent:Component;
}

Component has an ID string and the selectedComponent variable is set on click:

public class Component extends MovieClip
{
public var id:String;
addEventListener(MouseEvent.CLICK, function() {

[Code]...

Removing the selectedComponent variable type so it reads public static var selectedComponent; removes the conversion error and seems to change the ID variable but it appears to only be a copy of the object.

View 2 Replies

Actionscript 3 :: Use One Object's Method To Update A Variable In Another Object?

Feb 27, 2012

I am not sure if I worded the question correctly, however, I have code to detail it. Firstly, I have a class Class1:

[Code]...

View 1 Replies

ActionScript 2.0 :: Php Variable In <object> </object>?

Feb 15, 2010

i'm building a band website in joomla. Each band has it's own page. I want one mp3 player to cover al bandpages by just editing the url of the playlist.xml (the variable)

I want to connect the pageid (itemid as it is called in joomla) to the xml.

So artist nr 22 has page 22 and playlist 22.xml

with the following code i got the page id:

PHP Code:

<?php
$band = JRequest::GetVar('Itemid','');
echo $band;
?>

[Code]....

Behind autostart=false i can set "playlist=(itemid).xml

how can i get the value from itemid into the flash object?

I've tried going the other way around by saying the actionscript i wanted it to load a variable, but i didn't succeed..

View 0 Replies

ActionScript 2.0 :: Centralize Code In All Movies Using Dot Notation Instead Of Spreading Code All Over The Place?

Jul 10, 2003

I have attached a simple test fla.I am trying to centralize my code in all my movies using dot notation instead of spreading my code all over the place. It never works, I must be doing something wrong.The test .fla has a movieclip with a timeline animation. I used the linkage identifier to name it 'reload' AND named the instance 'reload'.

_root.reload.onRollOver = function() {
this.gotoAndPlay(2);
}

The pointer doesnt even change to a hand.

View 4 Replies

ActionScript 3.0 :: Getting A Compiler Error On The "." But That Seems To Be The Defacto Vector Notation?

Apr 2, 2009

Is there any reason why Vector would not be supported in CS3?

I have the following line:
private var pageRequests:Vector.<PageRequest>;

I'm getting a compiler error on the "." but that seems to be the defacto Vector notation. If for some reason this isn't currently supported in my version of CS3, then does anyone know how I can update the actionscript library to allow it?

View 1 Replies

Flex :: Filtrate XMLList Using ".." Notation

Jun 22, 2011

There is something I couldn't solve: when I search a specific node in a XMLList containing several level of hierarchy, filter never search in the top parent node. For example, if I have a tree like this:

[Code]...

View 1 Replies

Actionscript 3 :: Getting The Value Of A Property Within Another Property Via Square Bracket Notation

Nov 29, 2011

I have a class Inhabitant with a property skin which is of type DisplayObject.

Within Inhabitant I need to access the x and y properties of skin using this method:

this["someProperty"];
Rather than:
this.someProperty;

This is fine with properties defined within Inhabitant but I'm not sure how I could do this for a property of skin. This obviously doesn't work but it might give you an idea of what I'm trying to do:

this["skin.x"];

The reason behind requiring this notation is that I have a function which I can parse a String though that will represent a property:

public function addTokenable(property:String):void
{
if(!isTokenable(property))
_tokenables[property] = true;
}

And then a related getter that will return a representation of this instance of Inhabitant as a String:

public function get token():String
{
_token = "class:" + getQualifiedClassName(this).split("::").join(".");

[Code]....

View 1 Replies

ActionScript 3.0 :: Variable Name As Object?

Jun 9, 2010

Code:
theMap = new XML(mapXML.returnXML());
tSheet = new this[theMap.sheet](0, 0);

[code].....

View 2 Replies

ActionScript 2.0 :: Using Variable Value As Object Name?

Jul 2, 2006

[AS]
stuff = setInterval("fun",20);
myVar = "stuff";
clearInterval(myVar);
[/AS]

Obviously, the above clearInterval won't work, because the clearInterval looks for "myVar" instead of "stuff". I want it to be the other way around.

I tried using the following, but with no luck.

[AS]clearInterval(this[myVar]);
clearInterval(_root[myVar]);[/AS]

View 2 Replies

ActionScript 2.0 :: Name Object From Variable?

Oct 28, 2003

How can I create an xml object (or any object in fact) named after a variable,

i.e

variable called section with value "names"

create object [section value + "XML"] = new xml();

result: empty xml object called namesXML

View 3 Replies

ActionScript 3.0 :: Placing A Variable Value Into A XML Object?

Jul 11, 2011

I am trying to figure out how I would get the value of a variable into an XML Object.
 
I have the variable
var dragonName:String = "Samuel";
var listing:XML = new XML();
listing = <thedragon>

[Code],,,,
 
However, the dragon name does not show up when I go trace(listing); How do I do it and should I have imported something as well or what?

View 7 Replies

Flex :: Object Reference Through Variable Value?

Dec 29, 2011

Is it possible to reference an object using a variable value?

For example, I have a function that is supposed to hide an image and add that image to an inventory list when the item is clicked.

All the image info is stored in an object (name, imgSource, visible, x, y);

I was thinking I could do something like this:

<fx:Script>
<![CDATA[
public var item:Object = new Object();

[Code].....

I want "item" to stand for knife so that I could change knife.visible, knife.xPos, ect.

View 2 Replies

As3 :: Flash - Dynamically Name A Variable On An Object?

Feb 11, 2012

So, if I need to give a custom variable name to an object how would I do that?

For instance, if I have a gameID that is 12345 and its rating is 3 I want to save a variable called gameRatings_12345 thats value is 3 in my shared local object.

//share object
protected var mySavedData:SharedObject = SharedObject.getLocal("mySavedData");

I have the game id in a string

var gameID:String = "12345";

Then when I try to assign the value like this...

mySavedData.data.gameRatings_gameID = 3

I think it's literally reading it as "mySavedData.data.gameRatings_gameID" instead of "mySavedData.data.gameRatings_12345"

How can I give the variable a custom name?

View 2 Replies

ActionScript 3.0 :: Relate A Variable To An Object?

Jun 30, 2009

How do I relate a variable to an object on the stage? I want to have a mouse over and a mouse out effect on a button yet when I use the code below I get the error:

ReferenceError: Error #1065: Variable button is not defined.

obviously the object on the stage is called 'button' but I didnt think I had to define objects as variables? I thought the below code was correct?[code]....

View 1 Replies

ActionScript 3.0 :: Get Object Name Onclick To A Variable?

Jan 19, 2010

I cannot get the name from a object that was click to a variable.

The code is the following:

var newQuadrado: Quadrado;
var Name:String;
stage.addEventListener(MouseEvent.CLICK, onClick);
function onClick(event:MouseEvent):void

[Code]....

View 4 Replies

ActionScript 3.0 :: Cannot Access A Variable From Within An Object

Jan 11, 2012

So ive made a custom message system for my game and the scrollpane component requires me to have the info inside one movieclip. I have a couple of textfields there that i want to change to some variables on demand. The vars are in an external as file and im able to reference them well on the main timeline. The problem is when im inside the scrollable object, all the vars return blank instead. This is the code which is placed inside the object:

Code:
import Variables;
var variables:Variables = new Variables();
function setMsgSlot (e:Event) {

[Code]....

View 0 Replies

ActionScript 2.0 :: Object Property From Variable Value?

Mar 28, 2012

I'm wanting to set an Object property using a variable value. I just can't get it to work as it assumes the variable name is the name of the property: I've simplified the issue rather than posting my whole code.[code]It always applies 'attrName' as the property name rather than the value of 'attrName'.Tried loads of things but just can't get it to work.

View 1 Replies

ActionScript 2.0 :: Variable Object Referencing

Jun 14, 2007

I am in no way very knowledgable with ActionScript, so this might be very simple and I am looking in all of the wrong places... but basically here is my issue: Instead of accessing an objects attributes like this, _level0.thumbnails.thumbnail0._width = 500; I want to be able to access it with _level0.thumbnails. (this.id) ._width = 500; where as (this.id) is a variable that could be equal to "thumbnail0" or "thumbnail99" depending on which object gets clicked. I have everything working to if I hardcode thumbnail0 it works fine, and this.id does get set to whatever thumbnail I click's "thumbnail" + ID

View 2 Replies







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