FOR or WHILE or any type of looping statement?
FOR or WHILE or any type of looping statement?
(OP)
I basically want to do an incrimenting loop, does anyone know how I can do this, cant find it in any of the help files! Here's a basic form of what I want to create from it all.
for(var i=0; i<5; i++)
{
trace("I am greater then 5");
}
so outputs text five times...
Dan
for(var i=0; i<5; i++)
{
trace("I am greater then 5");
}
so outputs text five times...
Dan
RE: FOR or WHILE or any type of looping statement?
In Lingo it would be:
--
repeat with i = 1 to 4
put(i)
end repeat
--
Kenneth Kawamoto
www.materiaprima.co.uk