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