ActionScript 2.0 :: [FMX] Naming The Mcs From An Array W/ AttachMovie?

Nov 28, 2002

ok, that's some basic question but it's 4 am, I can't find the answer in the tutz and I'm starting to get a headache...I'm creating some mc's on the stage with the attachMovie function in a loop. I have no problem naming them like that:foo.attachMovie("myClip", "myClip"+i, 200+i);But I need to name them with part of an array like that:foo.attachMovie("myClip", "myClip"+array[i]+"_mc", 200+i);I thought that would work but I guess my synthax is wrong... How do you mix strings and arrays elements inside the () of the attachMovie?

View 6 Replies


Similar Posts:


ActionScript 2.0 :: [FMX] Naming The Mcs From An Array With AttachMovie?

May 9, 2010

I'm creating some mc's on the stage with the attachMovie function in a loop. I have no problem naming them like that:

foo.attachMovie("myClip", "myClip"+i, 200+i);

But I need to name them with part of an array like that:

foo.attachMovie("myClip", "myClip"+array[i]+"_mc", 200+i);

I thought that would work but I guess my synthax is wrong. How do you mix strings and arrays elements inside the () of the attachMovie?I need to get something like: myClipArrayElement1_mc for the name of the attached movies...

View 2 Replies

Array's And MovieClips - Use The Naming Conventions Of An Array?

Nov 18, 2009

I received help on this site on this info-graphic im doing and the solution was to use an "array" which im not familiar with at all. the person that helped me added the following code that worked:

var city_arr:Array = new Array("louisville");//filll that array with all nedded cities//make all the boxes invisible at startfor (i=0;i<city_arr.length;i++){    var [code]...

since i dont know how to use arrays im stuck. i need to add at least 30 more cities to my info-graphic but don't know how to use the naming conventions of an array.Only one of the houses works (when you click on it a pop-up appears, is draggable and has an x to close the pop-up)

Attachments:
relocation_working.fla.zip (975.1 K)

View 1 Replies

AS3 :: Way To Array Index Naming

Mar 11, 2010

I thought that there was a way to be able to name array indexes. Like instead of myArray[0], it could be myArray["tileFour"]. I thought that instead of using index numbers one could use index words.

View 1 Replies

ActionScript 3.0 :: Naming Children In An Array?

Jan 4, 2011

I made a thread a couple days ago, but dont think i explained the problem well enough. What im trying to do is name each of the children.

Child 0 = A
Child 1 = B
Child 2 = C

all the way to Z. Then start at A again.

ActionScript Code:
function moveBubble(Event) { // This function handles the movement of the bubbles
if (!inPlay) return;

[code]....

View 7 Replies

ActionScript 2.0 :: Dynamic Object Naming From Xml In Array?

Jan 20, 2009

This is the object array target structure I am looking to create

myObject.myArray[0].data=value;
myObject.myArray[0].data2=value2;
myObject.myArray[1].data=value;

[Code]....

View 2 Replies

ActionScript 3.0 :: Naming Movie Clips In An Array

May 11, 2010

In this code I created an array and am placing instances on the stage when I click on buttons relating each movie clip.

[Code]...

View 3 Replies

ActionScript 2.0 :: Array For Naming Buttons And Loading Movies

Nov 30, 2010

I've got about 50 buttons onstage with names like btn1a_mc, btn2B_mc, etc. Each one loads an external swf (called "Monosem1Aslideshow.swf", where the "1A" corresponds to the button name.) into a movieclip holder called slideHolder_mc. I'm trying to use an array instead of writing code for each button. I'm using the following:

Code:
buttonNumber = ["1A", "2B", "3C", "4D", "1E", "2F", "3G"];
for(i=0; i<buttonNumber.length; i++){
var btnName:String = "btn"+[i]+"_mc";

[Code].....

But I can't seem to get it to work.

View 7 Replies

ActionScript 2.0 :: Array For Naming Buttons And Loading Movies?

Nov 30, 2010

I've got about 50 buttons onstage with names like btn1a_mc, btn2B_mc, etc. Each one loads an external swf (called "Monosem1Aslideshow.swf", where the "1A" corresponds to the button name.) into a movieclip holder called slideHolder_mc. I'm trying to use an array instead of writing code for each button. I'm using the following:

Code:
buttonNumber = ["1A", "2B", "3C", "4D", "1E", "2F", "3G"];
for(i=0; i<buttonNumber.length; i++){
var btnName:String = "btn"+[i]+"_mc";

[Code].....

But I can't seem to get it to work. I'm a little shaky on array syntax and can't find a tutorial that addresses my particular problem.

View 12 Replies

ActionScript 2.0 :: Working With Array And AttachMovie

Sep 24, 2006

Code:
var numOfChars = 0;
setCharacters = new Array();
if (empty1.hitTest(_xmouse,_ymouse,false))

[Code]....

View 1 Replies

ActionScript 2.0 :: AttachMovie With Names From An Array

Jul 8, 2010

I'm trying to reduce repetition in my code by using a for loop with an attachMovie call. [code]So I have a bunch of clips in array that I want to attach, and I just want to use the name of the clip as the instance name, but it doesnt seem to work.

View 3 Replies

ActionScript 2.0 :: AttachMovie Only Creates Last Array Item?

Apr 21, 2010

Fla is attached (small file, simple function)I am going thrue an array and create instances of 'inputter'.It all works fine for the last one in the array but not the first ones.Shortening the array-count still creates only the last one and not the first ones.

My function:
ActionScript Code:
doinit = function()

[code].....

View 1 Replies

ActionScript 2.0 :: Put All Movies That Are Attached With AttachMovie In An Array?

Jun 7, 2007

is there anyway to put all movies that are attached with attachMovie in an array?

ex.

attachMovie ('ball','ball1',this.getNextHighestDepth())

then it will allso run a code that push the array with 'ball1' ? ?

View 2 Replies

ActionScript 2.0 :: Calling Moive From Array For AttachMovie Property?

Apr 18, 2010

I am trying to attachMovie from array.

Here it goes like this:

var __reg3 = new Array ("1", "2", "3", "4");
_root.p1.attachMovie(__reg3[0] + 1, "run1", 1); -- Not working

Then I tried using string:

[Code]...

View 3 Replies

ActionScript 2.0 :: Calling Movie From Array For AttachMovie Property?

Apr 17, 2010


I am trying to attachMovie from array.

Here it goes like this:
----------------------

var __reg3 = new Array ("1", "2", "3", "4");
_root.p1.attachMovie(__reg3[0] + 1, "run1", 1); -- Not working

Then I tried using string:

test1:String = __reg3[0] + 1

_root.p1.attachMovie('"+'test1+'"', "run1", 1); -- Not working

Then I tried this

_root.p1.attachMovie(" "" +test1+" "", "run1", 1); -- Not working

Then used this:

qt:String = '"';

_root.p1.attachMovie(qt+test1+qt, "run1", 1); -- Not working

But when I use like this, its working:

_root.p1.attachMovie("3", "run1", 1); -- working.

View 1 Replies

ActionScript 2.0 :: Generate Random AttachMovie - Create An Array With All The Objects That Belong To Container

Feb 17, 2006

I'm developing a game and the objective is to drag some objects to a container. Some objects add points, and some other subtract points. So, all the objects are in the library and have a linkage name to be called by attachMovie. I want to create an Array with all the objects that belong to container, like for example filename1 = ["obj1", "obj2", "obj3"]; etc... I have a var called count1 that defines the number of objects to appear on the Scene

[Code]....

View 4 Replies

ActionScript 3.0 :: Naming A Variable?

Aug 26, 2009

Code:var StringMine:String = "hello";And i want to use the value of that string, 'hello' to name a new variable, i thought like this,Code:var [StringMine]:String = "One";but not supprisingly, it doesnt work...

View 2 Replies

ActionScript 3.0 :: Dynamic Naming Of Mc's?

Jul 25, 2011

i have an array of coins that are layed out on a map for a character to come pick up.i have the coins displaying on screen but i cant get a simple hit test to work. it only seems to work on the last coin created, i presume because the 'i' value hasnt been appended to the name. i knew how to do this in as2 but dont know the syntax for as3. ive attached the file for you to have a look at.

code:
rectangle_mc.startDrag();
rectangle_mc.x = mouseX;
rectangle_mc.y = mouseY;

[code]...

View 4 Replies

ActionScript 3.0 :: Naming In Loader?

Dec 13, 2009

loader is display object but I could not set name to loader. In the documentation loader does not have property of "name". How to set name for loader instance. Example

var imgColl:Array=new Array("1.jpg","2.jpg");
var i:Number=0;
while(i<tot){

[code]....

View 2 Replies

ActionScript 3.0 :: Naming From A Loop?

Aug 8, 2011

is it possible to add variables and name them according to position in a loop? for example how can I do something like this:

[Code]...

View 5 Replies

ActionScript 2.0 :: Naming The MC In A MC When Attach Them?

Apr 18, 2005

I need to change porperites on MC that is in a MC I just attached something and for some reason I can't seem to find out how to get an instance name into them or to just use the one thye have in the library.

View 7 Replies

ActionScript 3.0 :: Naming Mc With Parameter?

Feb 5, 2009

I have created a function to load up my movies what I would like to do is two things

(i) change the ldr to a movieclip

(ii) add an extra parameter to add an instance name movieclip when I call the movieclip

loadMyImage('images/headers/logo.png', 80, 20 );
function loadMyImage(imageURL, xPos, yPos) {
var ldr:Loader = new Loader();[code]....

View 4 Replies

AS3 :: IDE - Dynamically Naming Movieclips?

Sep 23, 2009

Ok, I've been climbing the walls trying to figure this out, looked everywhere for an answer, learned a few bits and pieces along the way, but still can't do it.I've made my Class which is a little movieclip called 'block', it's fine and does what I tell it to do ie. I can reposition itstretch itotate it and stuff.The problem is.. I want to make more of them and reference them individualy so I can change the properties of them individualy ie, the x and y values etc.

for (var i=0; i<2; i++){
var newBlock:blocks = new blocks();
this.addChild(newBlock);

[code].....

View 6 Replies

AS3 :: Variable Naming With Loops And Arrays?

Aug 1, 2009

I am wanting to create an array. 10 values in it (couting from 0 index to 9). Each 'place holder' will have a corresponding value to it;s index i.e.

myArray[0]=0
myArray[1]=1 etc...

I can do that in a for loop. But then I want to attach each value to a single variable name. I then want to change that each variable to a string. I then want access to all the variables outside of the for loop.

var i:Number;
var aArray:Array = new Array();
for (i=0; i<10; i++) {

[code]....

The output error is 1084: expecting identifier before aArray.

View 1 Replies

ActionScript 3.0 :: Automatic Instance Naming?

Oct 29, 2009

When I instantiate a new object I want the object to automatically be named the same as the name used in the instantiation.var fred:Person=new Person();trace(fred.name); // traces "fred"Is there a reference I can use in the Person constructor to do this?

public class Person extends MovieClip {
public function Person() {  name = ??? // what goes here? }}

View 1 Replies

Flash :: Is There An Accepted Naming Scheme For

Jun 5, 2011

I'm working on a framework for game development in flash and I'm wondering if there's an accepted naming scheme for the main tick / update method name and a name for the functions to call before and after?I can think of:

onPreTick(), onTick() and onPostTick()
onPreFrame(), onFrame(), and onPostFrame()
onPreUpdate(), onUpdate(), and onPostUpdate()

[code].....

View 2 Replies

Flash :: Create/naming Var Dynamically?

Jun 6, 2011

or some reasons i need to create var dynamicaly.

Exemple

I have first an Array wich i want to use to "compose" my vars names

myArray:Array = new Array("aa","bb","cc");

In my final project this Array is created from a xml.

I want to do something like this, but doesn't work...

var ["myvar" + myArray[0]]:Sound = new Sound();
var ["myvar" + myArray[1]]:Sound = new Sound();
var ["myvar" + myArray[2]]:Sound = new Sound();

[Code].....

View 1 Replies

Actionscript :: Filenames - Naming Of Files

Dec 6, 2011

i create an application using Adobe flex 4.5 for recording videos and i was wondering how to give appropriate names to my files produced. What i was thinking is to give the current timestamp which is unique what's your opinion, is there a better solution and how can it be implemented using actionscript?

View 1 Replies

Actionscript 3 :: Naming The Buttons Components?

Apr 2, 2012

How to name through AS3 buttons components?I have 3 buttons components: a BackButton, a ForwardButton and a PlayButton.I have named them through the properties panel, (where it says 'Instance Name').But once I click on them and check for event.target.name I receive, always 'button_mc'.How could I name the buttons?

View 1 Replies

ActionScript 2.0 :: Naming More Than One Instance At The Same Time

Feb 6, 2009

what is the quickest way to name more than one instance at the same time as i have 84 in total and they have to be named:

MC1 - instance name: 1
MC2 - instance name: 2
MC3 - instance name: 3
MC4 - instance name: 4
MC5 - instance name: 5
etc etc...

View 2 Replies







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