Create Looping "For" in Actionscript 3.0
Diposting oleh
Unknown
on 09/04/15
Label: Flash tutorials
Here's an example of looping that you will be typing in Adobe Flash Actionscript 3.0 :
for (var i :int = 1; i<=5; i++){
trace(“hello gamer”);
}
And result :
hello gamer
hello gamer
hello gamer
hello gamer
hello gamerexplain :
- And i++ will print the phrase "hello gamer" repeated 5 times
~ Good luck
for (var i :int = 1; i<=5; i++){
trace(“hello gamer”);
}
And result :
hello gamer
hello gamer
hello gamer
hello gamer
hello gamerexplain :
- And i++ will print the phrase "hello gamer" repeated 5 times
~ Good luck
0 komentar:
Posting Komentar