ActionScript 3.0 :: Tracing An Object In An Array?

Aug 19, 2010

I have some simple Sprites that I'm putting into an array. However, when I click on them I want to trace what their position is in the array. How do I go about doing that?

ActionScript Code:
var myArray:Array = new Array();
var mySpriteOne:sprite = new Sprite();
mySpriteOne.graphics.beginFill(0x000000);

[Code]....

I want to add some mouse click listeners and then I want to trace the currentTarget's position in the array. I just have no idea what parameters to give the trace().

View 6 Replies


Similar Posts:


ActionScript 3.0 :: Tracing Array Index With XML And Getting -1?

Oct 30, 2009

I am working with a set of external XML data, and putting it into arrays. I have set up images and text on a page using XML data, which, when clicked on, will populate a popup window with XML data from the same index. For some reason, when I trace the index of the array, it comes up as -1.
 
stop();
itemNameTops1_txt.text = nme_array[0];
itemPriceTops1_txt.text = price_array[0];

[code]....

View 4 Replies

ActionScript 3.0 :: Tracing An Index Number From An Array?

Jun 27, 2009

I am trying to trace an index number from an array.

I know this must be about as simple as it gets, but I just cant figure it out.

I know the contents of the array are all asighned a number begining with 0.

I need to find out the index number of a thumbnail when you click on it.

Code:
function whenThumbsLoad(event:Event):void{
var thisThumbsLink:String = clipPathList[ c ];
var thisThumbsTitle:String = clipTitleList[ c ];

[Code].....

I know I can trace the thisThumbsLink and get that, but all I need is it's index number. Also I trace(c); and I get how many there are, but I just don't know what to trace to find the index number.

View 12 Replies

ActionScript 3.0 :: Tracing An Array Of Selected Movieclips?

Jan 29, 2012

I have 4 movieclips and I want to be able to track which one is selected or not, something like this:

I start with 4 unselected MC

I click on mc1 and a trace message says MC1 selected I click on mc1 again and a message says MC1 unselected I click on mc1 and a message says MC1 selected I click on mc2 and a message says MC1 and MC2 selected

I click on mc2 again and a message says MC1 selected and MC2 unselected

etc etc

I was looking at some arrays but I don't think I got the picture yet

View 3 Replies

ActionScript 2.0 :: Tracing Object In A Layer?

Sep 29, 2010

I basically want to trace an object within a layer (or the child within a layer), for example:

test.text = _level0.child;

And this would give me the movie clip name contained within the layer?

View 2 Replies

ActionScript 2.0 :: Tracing The Rotation Of An Object

Mar 14, 2006

check out the attached file. Don't ask me why, but I need that yellow rectangle to follow that grey dot, which rotates around randomly... but see, if you place the dot to the center left of the grey rectangle, you see that the yellow rectangle screws up. I've deducted that this happens for this reason: to the left of the grey rectangle, the rotation value is 178... 179... 180... then it jumps to -180... -179... -178... (you can try this out using an onEnterFrame function and tracing the rotation of an object that follows the mouse).

Since the yellow rectangle follows the grey dot with an ease, it doesn't just do: rectangle._rotation = dot._rotation But instead: rectangle._rotation += Math.round((dot._rotation-this._rotation)/rotatespeed) Some of you guys should already be familiar with this kind of movement, but it's usually used to move objects smoothly. The bug here is that whenever that dot randomly jumps up into -180 from it's original position at below 180, it screws up the yellow rectangle.

View 9 Replies

ActionScript 2.0 :: CS3 Tracing Current Array Index Position?

Apr 9, 2009

Is there any way of getting the current active index position from an array? As an example, something like this:

j=0;
current = myArray[index];
my_btn.onPress = function(){

[code].....

View 3 Replies

ActionScript 3.0 :: Dynamic Navigation Bar - Tracing Index No Of Array

Jun 28, 2009

The Action script code below takes the strings in the array (pgtit) and creates a dynamic navigation bar I am trying to trace the index number of the array being click I just seem to get -1.

var pgtit:Array=["link1","link2","link3","link4"];
var xPos = 0;
var menuHolder:MovieClip = new MovieClip;
addChild(menuHolder);
for(var i:uint = 0; i < pgtit.length; i++){
var btn:MovieClip = new MovieClip();
[Code] .....

View 1 Replies

ActionScript 3.0 :: Tracing An Array In MouseEvent Returns Undefined?

Feb 10, 2009

I have an 3 arrarys with names, if I trace them outside a MouseEvent it works fine, but as soon as I trace it inside a MouseEvent it returns as undefined.Here is my code:

ActionScript Code:
...
gallery["imageHolder_" + i].vote_btn.addEventListener(MouseEvent.CLICK, showVote);

[code]......

View 1 Replies

ActionScript 1/2 :: Tracing Properties Of My Class Object

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

Arrays :: Tracing Object Whose Property Equals To Certain Value

Mar 29, 2011

I have an array of objects. What I would like to do is get the last index of an object whose property equals a certain value.
Ex:
// this occurs on a mouse click
var stockObj:Object = new Object();
stockObj.ID = "an_id";
stockObj.category = "a_category";
array.push(stockObj);
//psuedo
trace(array.lastIndexOf(stockObj.category=="a_category"));
I would like this to trace the index of the object whose category property equals "a_category"

View 2 Replies

ActionScript 3.0 :: Tracing Contents Of Display Object?

Sep 19, 2008

The author shows a function that is supposed to trace the contents of any display object. In his example file he has several nested movie clips on the stage and everything works just as it should, this is the code.

ActionScript Code:
function showChildren(dispObj:DisplayObject):void {
for (var i:uint = 0; i < dispObj.numChildren; i++) {
var obj:DisplayObject = dispObj.getChildAt(i)

[code]....

The problem I am having is that when I open a new actionScript 3 .fla and try to recreate the nested movie clips and use the same code I get these errors:

ActionScript Code:
line 3  1061: Call to a possibly undefined method getChildAt through a reference with static type flash.display:DisplayObject.
var obj:DisplayObject = dispObj.getChildAt(i)
line 2 1119: Access of possibly undefined property numChildren through a reference with static type flash.display:DisplayObject. 
for(var i:uint = 0; i < dispObj.numChildren; i++){

View 9 Replies

Actionscript 3.0 :: Tracing Object Properties On Click?

Nov 29, 2011

I have a combine-based-on-click raining object game project.Here is my code:

Code: Select allfunction addText():void
{
addChild(pointText);

[code].....

View 2 Replies

ActionScript 2.0 :: Flash8 : Tracing All Unknown Variables In An Object

Mar 31, 2009

Is there a way of tracing variables in an object without expressly listing each of them?

e.g.

Code:
so.data.thename="derek";
so.data.thenumber=1234;
so.data.sex="male";

[Code].....

View 1 Replies

Flash :: Reference To Object - Nor Tracing A Value Define Outside The Function

Mar 18, 2011

I have object in which I have rectangle on one layer and following code on another layer:

[Code]...

And Object(this).play() or checking for current frame doesn't work, nor tracing a value define outside the function. How shall I reffer to the movieclip that events is called from?

View 2 Replies

ActionScript 2.0 :: XML From WebServiceConnector Is Tracing "[object Object]"?

Mar 16, 2010

I'm using the WebServiceConnector in CS3 to load some XML. The trouble is, whenever I trace out the XML, all I get is "[object Object]". Here's the code I'm using:

Code:
import mx.services.*;
import mx.data.components.WebServiceConnector;

[code]......

View 4 Replies

Flash :: Use Of The Array.filter() Method For Searching And Retrieving An Object Instance From An Array?

Jul 13, 2010

I am curious if this is an okay implementation of the Array.filter() method.

[Code]...

I was not able to figure out an implementation of the callback function for the filter() method, where the callback was outside of the getGallery() function. I wonder if there is a way to get the isGallery function outside of the getGallery scope?

View 1 Replies

ActionScript 3.0 :: Cloning Array - Get Back An Object Rather The Exact Duplicate Of The Array Itself

Jul 7, 2010

I have been trying for an hour to clone an array, It seems that nobody has a true reference on how to do it. Two arrays - movieClipArray 1 and movieClipArray2 I want to duplicate movieClipArray1 entirely so that when I addChild(movieClipArray2[0]), it doesn't take away from movieClipArray1 or reference it in any way.

[Code]...

View 3 Replies

ActionScript 3.0 :: Casting Object Into Array Results In Null Array?

Jun 18, 2009

I am trying to use the following code to convert an object read in from a ByteArray to an Array and store it:

var data:Object = ba.readObject();
var invObjects:Array = data as Array;

In debugging, I find that 'data' is indeed populated with the correct data and takes up memory and is in an Array friendly format. However, invObjects is NULL. How does merely saying 'data as Array' make the holding variable suddenly null?

View 3 Replies

ActionScript 3.0 :: Loading The Object With The Part Pushing The Object To The Array At The End - Not Working

Aug 4, 2009

I created an array in the var declarations with Code: var private eDrag:Array In a function that adds imported mcs to the stage, I also added code to push each to the array. Here is an example of a block of code loading the object with the part pushing the object to the array at the end:

[Code]....

View 4 Replies

ActionScript 2.0 :: Web Service [object Object] - Get The Array Values Back Out As A String?

Apr 4, 2011

I'm working with a web service and am returning an array to a field (that I set the data type as an Array). The result thus far is "[object Object]". How can I get the array values back out as a string?

View 0 Replies

ActionScript 3.0 :: Combining Object Array And Accessing Object Property Name

Apr 2, 2010

I have an xml say in following format

[Code].....

What I should do is parse an xml and from its node name create object property and then create an object array based on those property. Am I able to make myself clear.

View 4 Replies

ActionScript 2.0 :: Retrieving Object Properties From Object Array?

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

Xml :: Convert An Array In An Attribute Value To An Array Object?

Feb 14, 2012

I have an embedded xml file which I'd like to have a property like this:

<level missions="[m1,m2,m3,m4,m5]"/>

I'd like to know how can I convert the string value [m1,m2,...] into an array, in order to get its value by index (a[0] == "m1", a[1] == "m2", etc.)

I tried Array(xml.levels.level.@missions)[0], but to no avail :)

View 1 Replies

Flash - Copy XML Array From One XML Object To Another Xml Object

Dec 8, 2009

how to copy one xml object values from one xml object to another empty xml object.

I have one xml object from the xml array and need to copy that to another xml object. How can i copy xml from one object to another

if am parsing the XML object with for loop and i get the nodes

var myXML:xml = new xml();
for(...)
if(xmlObj.product[i].name == 'myproduct'){

[Code]...

View 2 Replies

ActionScript 3.0 :: Hittest Object Within An Object Array?

Mar 15, 2011

I have a function that checks if 2 objects are touching OB1 and OB2, if they do touch it runs the rest of the collision code where OB1 is the character and OB2 is a tile that the player cannot pass through.

I came across an issue where i wanted sprites to be separate from the hitboxes but my collision code works by checking the height and width of an object (you guys know the drill).

So i have a Tile class with 2 parts to it, a bitmap and a movieClip.

So i have this setup(pseudocode):

Code:
loop
{
function collision (ob1 , ob2[loop].movieclip)
}

This should work right? But it ONLY works for the first object in the loop!

View 4 Replies

ActionScript 3.0 :: Scope Within Package - Trace Always Shows A Blank Array Before Push And An Array With One Object In It After The Push

Nov 12, 2009

I have a class in which I have declared an array. The functions in that class are designed to make changes to the array, but it's not working:

[Code]...

Anything I do to customerCheck treats it as if it were a new array. This is especially obvious when using customerCheck.push in addCharToCheck() -- the trace always shows a blank array before push and an array with one object in it after the push... then next time it does the same. I know I'm making some sort of fundamental error regarding the scope of the array within the class but I just cannot find any good information on how to fix it! Moving to AS3 (been coding it for all of about 3 weeks) is a nightmare so far, and it seems to be the 'easy' stuff that causes me problems

View 6 Replies

ActionScript 2.0 :: Tracing The Variable Name?

Jun 29, 2011

i'm trying to create a function where when i pass a variable to it it displays both the var and the value...like:

sex = "yes please";
checker = function(var){
trace([var] +"=" + var);

[code].....

View 2 Replies

Tracing An Objects Path?

Aug 10, 2009

I am interested in making an animation that would be the equivalent to watching somebody write with a pen.  The line tip would start moving and the path that that tip traces would stay on the screen.

View 1 Replies

ActionScript 3.0 :: My SubClass Not Tracing

Jul 14, 2010

I have a document class and a subclass. In the subclass I have a trace. I've done this dozens of times before.I've checked everything and I'm stumped. I can't for the life of me figure out why it's not running a trace.

I checked AS3 settings like usual. The FLA finds the document class but I can't get the subclass to show up.[code]...

View 2 Replies







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