ActionScript 3.0 :: For & While Loop Not Working
Jan 23, 2009
PHP Code:
var trail1:MovieClip=new trail_1;
var trail2:MovieClip=new trail_2;
var trail3:MovieClip=new trail_3;
[Code]....
This is what I want to happen but attempt at making a for/while loop gives me this:
TypeError: Error #1007: Instantiation attempted on a non-constructor.
at momentum_fla::MainTimeline/frame1()
PHP Code:
var i:Number = 1;
while(i < 7){
var NameTemp:MovieClip=new ["trail_"+i];
[Code]....
View 5 Replies
Similar Posts:
Feb 4, 2010
Why does the first loop work but not the other?[code]
View 5 Replies
Jan 6, 2009
I have a project I am working on in Flash CS3 using AS3.I have a drag and drop quiz that contains 8 boxes. 4 of the boxes contain dynamic text boxes with the vocabulary words. 4 of the boxes contain the definitions to the vocab words. The students drag and drop the vocab words onto the definitions. My issue is that hitTestObject is only working on the first box everytime. I have a for loop in my endDrag code that should loop through each object and test against it to see if there is a hit. Can anyone see anything wrong with my loop?
View 2 Replies
Jun 30, 2010
I have set up the XML as follows:
[Code]...
View 5 Replies
Dec 21, 2011
I create 30 text fields dynamically on the stage and want to set text format for all text fields. I use 'setTextFormat'. It works fine for single text box. But not working if I give this in loop. See the code below. It creates thirty input text boxes on the stage. But it assigns text format only to the last text box. When code Copied and placed in frame 1. The stage size should be 800 x 600. Execute the program and type in the last text field. I want that to happen for all text boxes.
ActionScript Code:
var xtpos:Number = 10;
var ytpos:Number = 10;
var i,j:Number=0;
var depth:Number = 100
var k:Number=0;
[Code] .....
In the above it traces only the last text field.
View 3 Replies
Feb 24, 2007
I am having some trouble with some code. buttons are not working.
Code:
menuLoc = new Array("menu_main", "menu_philosophy", "menu_portfolio", "menu_resume", "menu_contact");
for(i=0; i < menuLoc.length; ++i){
_level0.navMenu.menuLoc[i].onRelease = function() {
trace("hit");
}}
The array has the instance names of the movieclips which are located in navMenu.
View 9 Replies
Feb 25, 2009
I'm trying to create a "for" loop to load thumbs into existing movie clips using the following code:[code]This should load thumbs 9-17. The trace shows the variable is incrementing but I'm not getting the thumbs to load.
View 2 Replies
Jul 16, 2009
I'm loading a variable from a .txt file into flash (per client request).The variable is as follows &ClientNumberOf=4 so the variable = 4, this works on trace, happy, joy When I try and add the variable to my for loop..[code]I've tried a slew of different options...(for example)var newVariable: Number = ClientNumberOf; Nothing works, again, trace works, but script fails to work when I try and dynamically set the loop?!
View 1 Replies
Dec 17, 2011
I'm very new to Adobe Flash CS5.5. Can you create a common instance EG: "Enemy" and then control it like so:
Enemy.x += 1;
So that all instances of Enemy will move forward one pixel each frame? Instead of just one enemy? If this is not possible could I set up some sort of array of enemies like you can in C and try something like:
int EnemyNo = 1;
for(EnemyNo = 1; EnemyNo < 5; EnemyNo++) {
Enemy[EnemyNo].x += 1;
}
Does Flash even support "for" loops?
View 21 Replies
Nov 21, 2005
Why doesn't this work?
[AS]
times = 6;
for (i = 0; i <= times; i++) {
_root.createTextField("txt" + i, _root.getNextHighestDepth());
_root["txt" + i].text = i;
trace(_root["txt" + i]);
}[/AS]
It works for empty and library-linked mc's but not textfields...
View 2 Replies
Dec 1, 2005
Code:
var temp:Array = new Array();
temp[0] = 0;
[code].....
View 6 Replies
Jan 16, 2007
In the following code, I create 12 buttons, label them, and control their onRollOver,onRollOut, and onRelease actions. Everything is working fine except for the line containing the "slideTo" method. Reading from the two arrays for the x and y values, it appears to be inserting the largest number in each array instead of stepping through all 12 values. Currently, clicking on any of the buttons moves the object (ralphMC) to x=100 and y=800. I am pretty stumped about this, as I've inserted quite a few various numbers into each array during testing. Can anyone tell me what I am doing wrong?slideTo is part of the mcTween package, in case anyone wanted to know. code follows:
Code:
//Creates an array of numbers that will evenly space the buttons out vertically
var mcPosY:Array = new Array();
[code].....
View 1 Replies
Nov 2, 2003
i'm trying to check the passwords and names and i want it to goto the next frame if they match, security isn't really an issue so i'm not going to go through php and mySQL and stuffhere's the code:
Code:
on (release) {
i = 0;
[code].....
View 3 Replies
Apr 5, 2010
i have attached the flash file and also xml file. Here i duplicate the movieclip, first for loop is working perfectly but inside of second for loop is not working properly.
View 5 Replies
Apr 5, 2010
i have attached the flash file and also xml file. Here i duplicate the movieclip, first for loop is working perfectly but inside of second for loop is not working properly.
View 0 Replies
Sep 27, 2011
The problem is my buttons stop working after a certain point. Now I think it's because I need some kind of loop somewhere, but I'm not too sure. I've included a trace in the code so I know the button is not working anymore. (At least the function of what I want it to do).
[Code]...
View 0 Replies
Apr 15, 2008
I have a class file that contains a for in loop. basically there are 50 states (movieclips) on the stage and here is what I have:
[Code]...
I don't think I understand enough about arrays or for in loops to understand why this isn't working... it traces the array, but not statesArray[states], and it doesn't change the alpha of anything.
View 1 Replies
Aug 2, 2008
As the title suggests, I cant get function at end of the code to attach to each MovieClip I create dynamically within a loop.Only the last image will follow the mouse. What am I doing wrong? Im really not sure.
Code:
//now do something with the xml data
PopulateLists = function(final_array)
[code]....
View 4 Replies
Mar 20, 2010
How can i change movie clips apha property slowly one by one in for each loop? I can't undestand what's wrong((( From XML data i create for each loop, where my MC creates. But i can't chang their alpha property slowly. When i'm trying
Code:
mc.addEventListener(Event.ENTER_FRAME, alphaShow)
function alphaShow(e:Event):void{
e.target.alpha += mcAlphaPlus;
[code]....
View 4 Replies
Feb 9, 2004
I'm building a small XML menu where I want to call a function for each subitem's onrollover
part of my code:
[AS]
//*** build submenu items ****
for (j=0; j< numSubItems; j++){
curSubItemName =
[Code].....
The menu gets populated from the XML file, no problem. However, the onRollOver simply isn't working, but why?
View 12 Replies
Oct 28, 2002
I have the following which works fine just out side of the loop statement:
loadMovie("icons/test.jpg", "pIcon0.Icon");
But inside the loop statement no image shows up.
I need it in the loop statement because eventually the code will call the jpgs out of an array based on the loop variable. And put them in a movieclip number by the variable also.
View 1 Replies
May 2, 2010
I'm trying to have my program select from a random assortment of pictures in the file, and each one is labeled Transition1, Transition2 etc. Each instance of the symbol is named transition1, transition2, though 4. The 4 symbols are in one other symbol with the instance name TransitionImages. For some reason when I run the program it doesn't put the files in the symbols though
stop();
var checkNumberArray:Array=new Array ;
var transitionimageLoader:Loader;
[code].....
View 12 Replies
Nov 25, 2011
This is an if stament on a frame on the root. I want to loop Carrera(a lenghthy movieclip) from frame 2 back to frame 1. (For testing purposes) This is the code:
[Code]...
View 3 Replies
Nov 25, 2009
I have a for loop updating a dynamic text element but it seems to iterate so fast that only the last item in the loop is updating the text. I'd like the dynamic text element to be updated with EACH item in the loop, not just the last.
1. I have a single frame movie where I create a simple array of strings from an external text file:
[Code]...
View 3 Replies
Sep 16, 2005
The duplicate "for" is not starting, it should duplicate the button, but for some reason the first loop is undefined.
Code:
xmlData = new XML();
xmlData.ignoreWhite = true;[code].....
View 1 Replies
Apr 16, 2010
I would like to create a loop so the icons in the menu continually loop indefinitly.[code]
View 2 Replies
Dec 11, 2010
I am attempting to use a loop to create text field with the loop's current value. The code looks like this:
ActionScript Code:
for (var i = 1; i<=10; i++) {
var 'nameHolder'+[i]+'_txt':TLFTextField = new TLFTextField();
'nameHolder'+[i]+'_txt'.x = 40
'nameHolder'+[i]+'_txt'.y = 40
'nameHolder'+[i]+'_txt'.text = "Hello World"
}
So essentially what it should do is create 10 text fields at 40, 40 with the text: "Hello World".
View 7 Replies
Jun 13, 2004
i'm trying to do an infinate loop for my m.clip.the looping part does not want to loop...it loops back to my firrst frame even though there are two same picture in the movie clip.....here's a sample of what i use for the infinate loop script..
[Code]...
View 2 Replies
Jul 20, 2009
I have need of loops / nested loops that pick different figures depending on where you are in the loop. The whole function needs to run through 'ml' times. 'ml' is a dynamic figure. Loop 1 = While the loop is within the first 12 iterations, 'exconemp' must equal 100. For iterations 13 - 24, 'exconemp' must equal 102.5, for 25 - 36 it will be 105.06, for 37 - 48 it will be 107.69. This needs to change every 12th iteration until it has reached 'ml'. The calculation takes the value of the previous 'exconemp' and then multiplies that by 0.025.
Loop 2 = While the loop is within the first 120 iterations, 'abc' must equal 0.015 and any further iterations must use 0.01. This must also work in a way to figure out whether 'ml' is higher or lower than 120 and work accordingly. My main issue is this - how do I get the loops to run through as this: While the iteration is < 12, do this, THEN take the final figure (12th iteration) and start on 13 - 24, do this THEN etc etc. How do I produce a THEN statement? I can get the code to pick up the final values, but not change along the way.
[Code]...
View 6 Replies
May 5, 2011
Say, I had a loop in a function...
[Code]....
How would I refer to a in another function
View 8 Replies