ActionScript 2.0 :: Flash8 - How To Label Loops
Oct 3, 2009how to label loops?Like:
PHP Code:
outer:
for(...)
{
for(...)
[code]....
Like I have labelled "outer",(it does not work),is there an actual way to label loops?
how to label loops?Like:
PHP Code:
outer:
for(...)
{
for(...)
[code]....
Like I have labelled "outer",(it does not work),is there an actual way to label loops?
I can't find on FK (or other sites) the solution to make the labelfield of the RadioButton component in Flash 8 (not earlier versions!) multiline.
View 1 RepliesIs it possible to change a frame label within a gotoAndStop('label') with the parameters in a function?I'm playing around with updating code as I learn more and more techniques, and at the moment the code is a basic click-a-button to select the object shape, and on press the button disappears:
// Change the object into a circle.
circle_btn.addEventListener(MouseEvent.CLICK,function(){changeShape_fun(circle_btn,circle);});
// Change the object into a square.
square_btn.addEventListener(MouseEvent.CLICK,function(){changeShape_fun(square_btn,square);});
[code]....
However I can't/don't seem to know how to change a frame label through function parameters, or if what I'm trying to do is even possible.Also to note, while I'm all ears for any more efficient ways of doing what I'm trying to do, I would still like to know how/if you can change frame labels through function parmeters.
Shouldn't flash detect these before running the script and crashing and having to force quit and restart (and flash startup takes a while)? Like just give an error: infinite for loop or something? And this happened to me a bunch when working with for loops within for loops, when I accidentally used the same variable for both loops, so of course it never ended and crashed flash.
View 2 RepliesThe scenario is to create a lotto game that matches 6 user inputted numbers with 7 randomly generated numbers. The 7th number is a special case (eg bonus ball) WOULD LIKE TO SHOW A KIND HEARTED FALSH GENIUS ALL OF THE SCRIPT IF POSS! (its not tooo long) This code works, but it just outputs the default message: There seems to be a problem with my arrays not comparing? Part of the code is: (prioir to this the user inputs numbers, they are copied to text areas beginning with O, on a button press) On a second button press randomly generated number appear to a timer. //compareResult checks how many numbers match between the two sets of numbers to determine winnings.
[Code]....
I'm new here and I'm wondering if I can use the Sound Loops for commercial uses?
View 3 RepliesI have section of code which works for bouncing some fish movie clips off of the 'ceiling':[code].....
However, I would like to find a more succinct way to program this using a 'for loop'. I tried the following, which did not work and gave me an error (posted at the bottom). [code].....
TypeError: Error #1010: A term is undefined and has no properties.at Function/<anonymous>()
I'm pulling data from an xml doc and created 4 XMLLists to hold the children of the 4 different elements. Inside the onLoad function, I created a series of for loops to go through each list. But Flash stops after going through the first two. I'm very puzzled by this. I got around it by creating a 2nd onLoad function for the last 2 lists, but should I be using a different loop? Curious.. I inserted a break after the first 2 and then the 3rd loaded up...
View 1 RepliesI've got the following code and i would like to add an delay of 200 ms after each trace statement
for (var x_pos:uint = 0; x_pos <= 12; x_pos++){
for (var y_pos:uint = 0; y_pos <=12; y_pos++){
trace("hello world " +"("x_pos+","+y_pos+")");
[Code].....
i am new to flash and i was wondering if there is a way to slow down for loops.Like i can set how many seconds till it goes and loops again. I have tried setInterval but didnt work.here is my code:[code]
View 10 RepliesMy situation is that in the game I'm making, I have a movable turret firing duplicated bullets. I need to hittest them against a duplicated set of oncoming robots. I've tried using a for loop, but I just can't get it to work.I've attached the .FLA, and I would be grateful if anyone could point out what I'm doing wrong (ignore the values for removing the clips and the random duplication; I had to shrink the stage size to make the file size smaller!)
View 3 Replieswhy this code dosent work at the same time in the timeline, and why only envent put inside the attacHMovies or duplicated Movies work, if i put them in the forr loops they don work.
Code:
img01 = new Array();
img01 = ["001.jpg", "002.jpg", "003.jpg", "004.jpg", "005.jpg", "006.jpg", "007.jpg",
[code].....
are there loops in flash like Do while loops, or for next loops?
View 1 RepliesI would've thought of a better title but I honestly have no idea what's going on. I have this code on the main timeline:
Code:
dots = new Array();
for (i = 0; i < 10; i++) {
[Code]...
I want to attach a MC dynamically so that I have 12 rows and 12 columns of _mc box on the main stage:[code]I think it can be done only with a nested loop but so far, well, my head's in a loop!
View 11 RepliesCode:
var cityArray:Array = new Array();
cityArray[0] = "southland";
cityArray[1] = "otago";
cityArray[2] = "westland";
[code]....
What have I done wrong? I'm trying to give each mc it's own number based on the name position in the array etc etc - It returns 18 for all of them when I click them one at a time.
Why nested loops must be used. I have this code that I took from the Training from the source book:
v = 0;
i = -1;
while(++i < 2){
j = -1;
while(++j < 2){
[Code] .....
What I don't understand is why I have to have this to create two columns couldn't I just change the while (++i < 2){ to
while(++i < 4){ instead.
way to slow down for loops. Like i can set how many seconds till it goes and loops again. I have tried setInterval but didnt work.here is my code:
on (press) {
enemmyX = this._x;
enemmyY = this._y;
[Code]....
We have a For Loop that duplicates and movie Clip.
for (counter=2;counter<=15;counter++) {
duplicateMovieClip(enemy,"enemy"+counter,counter+1 00);
}
On a hit test we want to remove all the duplicated movieclips. I acomplished this using a new scene with a frame action contianing another For Loop and a remove movie clip action. Hit test true move to new scene play frame action.
for (counter=2;counter<=15;counter++) {
removeMovieClip("enemy"+counter);
}
This worked.Is there a way to put a stop of the For Loop or Put a stop on the Duplicate movie clip?
I am trying to make a sound crossfading between the loops (an example would be: same as in a "Winamp" media player you toggle the Crossfading function in a Modern Skin and select a duration of it). Say I got a loop of 10 seconds, altho it is not perfect as its cut of the song without a proper editing tool. Any way I could accomplish it by using the ActionScript?
View 2 RepliesI'm new to flash, and this is my first post.I'm using Flash MX Pro, 2004 V7.I have this code in the first frame:
________________________________________
for (i = 0; i < 5; i++){
_root.attachMovie("A","A_" + i, i + 10);
[code].....
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.
I've been trying to make a sound-loop player for quite some time now (i'm new to as3) and i'm pretty close to do it but still Ok, i've made six letters converted them into buttons and i want them to play a different wav sound loop each one whenever i click on them and to stop the sound when i click again.This works fine for the first button but not for the rest of them because i dont know where to insert the similar code for the rest of the buttons.
import flash.media.Sound;
var sound:Sound = new The_Rloop5();
var soundControl: SoundChannel = new SoundChannel();
[code].....
I am writing a loop and want to position 25 boxes in a square. I can make 5 boxes appear in a line, but can't make 25 boxes appear in a square without writing 5 seperate loops (e.g. j, k, l, m, etc.). This seems long-handed, can I shorten the code? Here is the code I have used so far:
var box:Box;
for(var i:int = 0; i < 5; i++)
{
[Code].....
I have a five mouse click functions, each with a different navigateToURL link, and each one appears on a different key frame. The probelm is that once the end of the swf is reached and it loops, it gets stuck on the last function and therefor only links to that last URL.Is there a way to reset functions at the begining? Or is there a better way to do this?Code from one of my keyframes:
First_btn.addEventListener(MouseEvent.CLICK,onMouseClickFirst);
function onMouseClickFirst(e:MouseEvent):void{ navigateToURL(new URLRequest('http://FirstLink.com'));}
[code]......
I have a test here which is for a more complex interaction, but the principle is the same. What I would like to know is how to make the code more efficient, possibly through array loops?
View 5 RepliesI am trying to create 6 TextFields with a loop which I have done but I can't seem to figure out the right syntax for setting the properties such as font, size, etc. in the loop. Here is my basic code:
var Tiles:Array = new Array();for (var i:Number = 1; i< 7; i++){Titles[i] = new TextField();
Titles[i].TextFormat.size = 17;}addChild(Titles[f]);}
I'm wondering how to properly for loop these blocks (and ones like them)
sense(pl.L2.s1); sense(pl.L2.s2); sense(pl.L2.s3); sense(pl.L2.s4); sense(pl.L2.s5);sense(pl.L3.s1); sense(pl.L3.s2); sense(pl.L3.s3); sense(pl.L3.s4); sense(pl.L3.s5);sense(pl.L4.s1); sense(pl.L4.s2); sense(pl.L4.s3); sense(pl.L4.s4);
[code].....
I have 6 buttons [btn0, btn1 ... btn5] I want to redirect the user that clicks on one of the buttons [btn4]. I want to send them to nextFrame(); when they click on btn4.
[Code].....
I have a very simple animation of a butterfly I would like to delay the animation from running again once the butterfly flies off the stage area. and then have it start about 5 minutes later.
[Code]...