Ask a Question related to Macromedia Flash Actionscript, Design and Development.
-
equinox007 webforumsuser@macromedia.com #1
What is this objects name in the array?!
I have this code sniplet..
function dragalong() {
this.startDrag();
}
function dropper() {
this.stopDrag();
}
combo.onRollOver = function() {
myCombo = attachMovie("Circle", "Circle"+i, i);
trace ("Name = " + combo.name(1));
addArray();
myCombo._x = this._x;
myCombo._y = this._y;
myCombo.onPress = dragalong;
myCombo.onRelease = dropper;
i++;
};combo.onRollOver = function() {
Basically, from my understanding... This allows me to duplicate and drag the duplicated object.
My question is, how can i later manipulate the parameters of the duplicate? or of duplicateX?
I have tried refering to it as:
myCombo.name
Circle.name
combo.name
etc..
What is the name of duplicateX?
Thanks to all those who help.
equinox007 webforumsuser@macromedia.com Guest
-
Array out of Objects
Back in the old days of Flash, I was able to walk through all of the objects on the stage, and filter them by the type of object. I could then... -
How to search into an array of objects?
Hi, Is there a way to find an item into a array of object without parse each object? Ex: var : myArray : Array = new Array( {label : "cup",... -
Array of objects copy
I have an array of objects, lets call it 'myArrayofObjects' I need to copy the information from this array onto another array because it seems that... -
Custom objects in an array
I have tried to store instances of a custom class in an array. When I retrieve the object actionScript seems to have forgotten what type of object... -
array of objects
I currently have a number of buttons, which have image icons and when clicked, will display th associated image in a large viewing fram I would... -
equinox007 webforumsuser@macromedia.com #2
Re: What is this objects name in the array?!
Here i am answering my own question...
after much research.... it is simply written as:
Object._name <-- This is for retrieving the name
To name it correctly, you need to alter the Symbols linkage to match the desired object name, and then you can write:
myCombo = attachMovie("Combo", "Combo"+i, i);
Where the text "Combo" is the name given to the symbols linkage..
Hope this helps someone else next time...
equinox007 webforumsuser@macromedia.com Guest



Reply With Quote

