ForumsProgramming ForumNeed help with basics of AS3 looping

2 3188
Rasengone
offline
Rasengone
3 posts
Nomad

Can anyone give me some tips on looping? I'm brand new to Action script 3.0 and am totally lost.

  • 2 Replies
KhimaeraUK
offline
KhimaeraUK
24 posts
Nomad

Almost identical to loops in most other languages. There are various types.

A 'while' loop (the hint's in the name):
while (conditions) { actions }

E.g.

var i:uint = 0;
while (i < 10){
trace("Loop Number "+i);
i++;
}

Google is your friend in this case, and there are some very simple and thorough tutorials out there to get you started. Try this republic of code tutorial to start with.

PadanFain
offline
PadanFain
1 posts
Peasant

Adobes webpages are a good help too...

Adobe documentation pages

Showing 1-2 of 2