ActionScript 2.0 :: Get A List Of All The Properties Of The Object?
Dec 12, 2002
I am having a hard time understanding for...in loops. I have seen David use it in his signature, and I understand what the loops is doing, but only from the context of the rest of the signature. If somebody could explain how the for..in loop works, I'd be greatful. Here's what I know:
PHP Code:
for (proprtyThing in objectThing) {
trace (proprtyThing);
}
My understanding of this loop tells me that if I run it, I'll get a list of all the properties of the object named objectThing....but this makes no sense to me!!
View 12 Replies
Similar Posts:
Jun 25, 2010
i'm attempting to cast an object's property as an actual property of another object. here's my object variable: var propObj:Object = {prop:"width", width:50}; now i want to assign the property of a sprite using that object's properties. var sp:Sprite = new Sprite(); sp.(propObj.prop as Sprite.property) = propObj.width; now, i'm not even going to try that because i know the compiler will explode all up in my face. but you should be able to see what i'm trying to do. why i'm trying to do it is because i'm reading in an XML file with an undetermined list of usable properties for specific objects. so instead of writing something like a huge switch statement to evaluate whether the XML file has a value for that specific property, i'm trying to assign properties dynamically based on what's available in the XML file. if what i'm trying to do is possible, what's the best way to do it?
View 1 Replies
Jan 30, 2008
I forgot to put it in the title so I'll just place it here; I am using AS 2.0. I know that there are other ways to accomplish the goal that am after, but I was wondering if anyone knows of a way to access the properties of an object's properties?
Here is the code that I thought of, even though it doesn't work
var a:Object = new Object();
a.bproperty = 0; //lowerlevel properties
a.cproperty = 1; // lowerlevel properties
[Code].....
This really just boils down to how I am organizing the code(I have ideas on what do next, and i am 99% sure that I can get them to work), and if there is a way to dynamically access the properties of the objects properties, It will save me from creating yet another large block of code for my project. If you want to see the unfinished project, go to [URL]
View 3 Replies
Oct 6, 2010
How can i list all the names (and values) of public (and private / protected) const defined in a class ?
[code]...
View 3 Replies
Jan 1, 2011
I have the following problem in AS3. I have a string like this one: "prop1:val1,prop2:val2,..."; I want to split and parse the string to obtain a dynamic object like this one: {prop1:"val1", prop2:"val2"}.
The simple way to solve it is to cycle through the string values and to do[code]...
Since I know the property names I expect, this works for me, but doesn't seem to be an elegant solution. I'm wondering if there is another way in as3 (similar to the reflection api in java).
View 2 Replies
Aug 5, 2009
I am working on an enterprise application and creating a base class for some stage components that has knowledge of the class extending it. More specifically, I need a way to loop through the inspectable properties in a class file and place the names of these variables into an array. For example:
Code:
[Inspectable(name="My First Variable", type="String", defaultValue="")]
private var _myVar1:String;
[Inspectable(name="My Second Variable", type="String", defaultValue="")]
private var _myVar2;
[code]....
View 1 Replies
Jan 3, 2011
I'm trying to make a simple flash application providing interface for taking tests as a high school assignment. One of the requirements is to use an XML file as data source.Now, having a List component bound to the XML file with questions consisting of data such as question body, question type (ie. single choice, multiple choice, open, image etc.) and possible answers (where applicable), I was wondering if I could add some additional data (and what is the best possible way to do so) to each question upon its transfer to the List component.
I am trying to achieve two main goals with this: firstly, to mark the questions to which an answer has already been given, like with such code in ItemRenderer class:
<s:Label color="{data.color}" text="{data.label}"/>
Where data.color would be set whenever the user gives an answer to a question.
Secondly, while at it, I thought of such possibility as a great way to store answers given to particular questions. In this case, the Class of the answer object would have been Object, since there has to be many type of questions (where the answer could also be a Bitmap for example).
View 2 Replies
May 17, 2005
Allright, i receive a string and want to convert it to object. here a test that i have made:
[code]....
this work pretty fine... but i am receiving the object property as follow: "{a:'test',b:'testAgain'}" How can i easily convert it to object properties?
View 4 Replies
Dec 4, 2009
Does anybody know of a website that gives a full list of all as3/cs4 methods, properties, keywords, classes, etc?
I bought a book on beginning AS3, but it only introduces some properties and methods as it uses them in examples.
View 4 Replies
Nov 11, 2007
I'm basically loading an XML file to assign instances of a movie clip a distinct value, which it uses to modify its height. So, I'm looping through the xml and instantiating my class Object each time (Rect) and then placing that Object into an array:
Code:
function loadXML(loaded){
if(loaded){
var boxArray:Array;
xmlNode = this.firstChild;
[code]....
the trace here always comes up undefined. "listPosition" in this bit is an Rect parameter, defined in the previous bit of code as "i", so I can keep track of the order of the stack.I've found one or two examples of putting objects into an array and getting them back out, but it doesn't seem to work with this, maybe because I'm using a class. I don't know.Could this be an area where I need to use the array access brackets, like around the movie clip the object is loaded into. I've tried everything I can think of -- referencing back to the movieclip, adding extra objectRef type parameters... nothing has worked yet.
View 3 Replies
Sep 4, 2008
how to trace all properties of an Object regardless of data type?
View 4 Replies
Jul 7, 2011
I'm doing some work with JSON in as3 using as3corelib (very useful) and was wondering if it is possible to get an object if all you have is one of its properties, also an object. Here's an example of some JSON:
"parentObject": {
"propertyObject": {
etc.
}
}
so what i'm asking is, if I have propertyObject, can I access parentObject somehow?
View 2 Replies
Sep 11, 2008
Back in the day (AS2), I used to create what I called an"ivar" property that collected the index of a series of buttonsthat were clickable (see attached code). Imagine 10 buttons on thestage with names (selectButton0, selectButton1, ...selectButton9).The code under the //----------BUTTONS header would make a propertyof the button that was clicked, call it "ivar" and then send it upto a function that would use it as an index to then load theappropriate content with MovieClipLoader (remember that Class?).I have tried something similar in AS3 without any luck sincethe whole button thing is now steered by events. Does anybody knowan elegant solution that would achieve a similar result. That is,click a button called "selectButton0" and have returned the zero asan index variable that could be used further?
View 14 Replies
Sep 30, 2009
I would wish to create a class extending Object class to create it's own properties in a FOR loop to save some space. However, it seems impossible...
The following won't work:
[Code]....
Is there a way around it so an object can create it's own properties using functions?
View 1 Replies
Mar 1, 2012
Does anyone know how I could remove properties that have been set on a static object in AS3? it would be something like -
foreach(property in GlobalStaticVar.properties) {
GlobalStaticVar.removeProperty(property);
}
View 1 Replies
May 4, 2010
can i modify the property inside its class, and then get it from another class with the modification done on it?
View 1 Replies
Jan 4, 2011
I have an object that I'm creating as such:
ActionScript Code:
public static var places:Object = new Object();
places["MyHouse"] = ["My House", new Point(PointX,PointY)]
places["YourHouse"] = ["Your House", new Point(PointX,PointY)]
[Code].....
View 0 Replies
Feb 16, 2012
Is there something that will let me trace all of an object's properties? (and wow typing the message before coming up with a title makes a difference)
View 1 Replies
May 5, 2008
Code:
pic[
{
clip2:{
[Code].....
i load this data from an xml and need to place the images in stage according to details given.i convert the xml to an object so its convenient.
now i need to loop through this data (properties of the pic object) and load each image and set their properties.
how to loop through the properties as there can be any number of them. here you get 3 (clips0,texts1,clips2)..
View 4 Replies
Feb 23, 2009
I'm working on a project that has to pass variables to (and later read them from) a URL encoded text file.
Code:
getURL("process.cgi", "", "POST");
This has worked until now, dumping all of _level0's variables into the document, retrieving the relevant ones on load.I've recently made some modifications so that I'm no longer storing all the variables in _level0, but some of them as custom properties of objects, e.g.:
Code:
t1c1r1.customproperty = 6;
t1c2r1.customproperty = 5;
In these cases, the properties are not being passed to the process.cgi, and not getting recorded in the text file.
I suppose I could flatten the variables out, record them on _level0,
Code:
t1c1r1_customproperty = 6;
but I'm wondering if there's a way to send these variables as is.
View 3 Replies
Apr 25, 2009
I'm having trouble accessing objects on new frames.On frame 1 I have:
Code:
var HelloWorld:Object = new Object()
On frame 2 I have:
[code]....
View 3 Replies
Apr 21, 2011
For the first stage, I was able to build a walk-through demo in flash pro by creating buttons that when clicked caused the flash to change to different frames. easy enough. Now for the final part of this project, I need to make the interface fully interactive, as I was trying before. ie: you can click any button and lights go on and off or a loop counter increments, etc. Since there is logic involved and too many permutations to do a frame for each possible state, I'm back to trying to do this in an object oriented way. I've got some test code here.
<fx:Script>
<![CDATA[
protected function button1_clickHandler(event:MouseEvent):void
{
[code]....
debugger has some errors, so i don't know what exactly it will do. the errors are at the last two if statements where i'm trying to change the object property setting of the label. there is another error at the last curly bracket.
the idea is that there are two labels and a button. the first label starts out visible. when the button is clicked, a counter is checked, and incremented, then the counter is again checked and the appropriate label has it's visible property set to true. the intent is that in a list of several labels, pressing the button scrolls down them, until you press while on the last, which resets the counter and the first label becomes the visible one.
View 3 Replies
Aug 22, 2009
I'm just starting to learn about classes in actionscript, I am following along with Moocks book Actionscript for Flash MX and are trying to execute a trace on the properties of my ballclass but all I get is undefined. He is what I have in my actions panel.[code]
View 5 Replies
Mar 28, 2011
I want to set it up so the size properies will pass over to the block (same object size - height and scale) but also changing the collision properies so the player will be enable push the block around the screen but I'm not sure how to implement such functionality/feature. I've experimented with two ways so far; 1.) The enemy changes to a frame of a block when he dies (illusion of a different object but the same object with a different frame on the timeline) using the same size properies but I can't seem to the change the collision properies from it's prior setting of causing damage and re-bound/bounce to the player. 2.) The enemy is removed completely from the game and a new block object is added in the same position where enemy died but I can't share/code the same size properies to this new block object making obvious that is a different object. Here is a code I've what I've done so far (which is attempting to do first approach);
[Code].....
View 13 Replies
Feb 19, 2010
I have following data[code]...
AdvancedDataGrid does not displays properties of nested User object, but the simple DataGrid does.
View 2 Replies
Mar 19, 2010
In actionscript an object's property can be accesses in this way: object["propertyname"] Is something like this possible in c#, without using reflection?
View 2 Replies
Aug 4, 2010
In order to send a POST request I need to enumerate all properties of a given object. This object may or may not be dynamic. I'm looking for the most elegant solution. This is what I've got so far:
[Code]...
View 1 Replies
May 1, 2011
I have an engine I created a while back that loads objects into a container based on XML data. A really quick example of the XML would be like this:
<level>
<object cname="enemies.Robot">
<pos x="200" y="400" layer="mobiles" />
</object><object cname="Player">
<pos x="12" y="89" layer="mobiles" />
</object></level>
I have a class Environment that has a method loadLevel(data:XML) which I parse the XML through, then the function runs through the XML finding all object nodes and uses getDefinitionByName to determine which Object I want to create based on object.@cname. From here, I have to manually define each property based on the XML like so:
obj.x = xml.pos.@x;
obj.y = xml.pos.@y;
etc.
I was wondering if there's an inbuilt method for setting a property based on a String. By this I mean something like so:
var mc:MovieClip = new MovieClip();
mc.someInbuiltFunctionThatSetsAProperty("alpha", 0.5);
This way I could change my XML to be more like so:
<object cname="Player">
<props>
<x>200</x>
<y>221</y>
<alpha>7834</alpha>
<health>Something</health>
<power>3</power>
</props></object>
And iterate through all the children of props to set all of my properties on the fly. I know if I create an Object and set properties within it like so:
var obj:Object = {
var1: "hello",
var2: "there",
name: "marty"
};
That you can then iterate through names/values using the for(String in Object) loop like this:
var i:String;
for(i in obj){
trace(i + ": " + obj[i]);
}
/**
* Output:
* var1: hello
* var2: there
* name: marty
*/
Surely there's a way, as here's an example of identifying a property using a String:
var ar:Array = [new MovieClip(), new MovieClip()];
ar.sortOn("alpha", Array.ASCENDING);
So just to make my question more to-the-point: I want to be able to get and set properties that I can identify using a String.
View 2 Replies
Aug 14, 2011
I'm doing some Actionscript work right now and I'd like to know whether there's a way to initiate an empty object's value programatically like this:
var myObj:Object = new Object;
myObj.add("aKey","aValue");
To add a property called aKey whose value is aValue.I need to create a "Dumb" (data-only) object to use as a parameter to send via POST. So I don't know offhand how long and/or how many attributes it's gonna have.
View 1 Replies
Feb 1, 2012
What is the difference between the code (i) and (ii) written below ?
[CODE]...
View 1 Replies