# Got any game tutorials?

**URL:** https://forum.kirupa.com/t/got-any-game-tutorials/182654
**Category:** flash
**Created:** [March 20, 2006, 12:53pm UTC](https://forum.kirupa.com/t/got-any-game-tutorials/182654 "2006-03-20T12:53:48Z")
**Posts on this page:** 3
**Page:** 1

<div class="post-metadata">

### Author: ![o111](https://yyz1.discourse-cdn.com/flex011/user_avatar/forum.kirupa.com/o111/32/2123_2.png) [@o111](https://forum.kirupa.com/u/o111)
#### Post date: [March 20, 2006, 12:53pm UTC](https://forum.kirupa.com/t/got-any-game-tutorials/182654/1 "2006-03-20T12:53:48Z")

</div>

Fellow flashers;

I’m just wondering if anyone has got any good game tutorials. Basicly for beginners.  
But everything is Ok! If you got any good sites with these tut’s on, i’d be happy:D  
(For those who didn’t understand: by game tutorials I mean tutorials for making games in flash)

Now take care! bye bye then!

---

<div class="post-metadata">

### Author: ![Elementss](https://yyz1.discourse-cdn.com/flex011/user_avatar/forum.kirupa.com/elementss/32/1698_2.png) [@Elementss](https://forum.kirupa.com/u/Elementss)
#### Post date: [March 20, 2006, 1:27pm UTC](https://forum.kirupa.com/t/got-any-game-tutorials/182654/2 "2006-03-20T13:27:10Z")

</div>

you can find allot of tutorials for games in flash at Kirupa 🙂

[U]introduction & creating a platform game:[/U]  
[http://www.kirupa.com/developer/actionscript/game\_programming\_1.htm](http://www.kirupa.com/developer/actionscript/game_programming_1.htm)  
[http://search.atomz.com/search/?sp-advanced=1&sp-q=paltform&B1=search&sp-a=00040c2f-sp00000000&sp-w-control=1;](http://search.atomz.com/search/?sp-advanced=1&sp-q=paltform&B1=search&sp-a=00040c2f-sp00000000&sp-w-control=1;)

in addition to that, making a game is just depends on your imagination with using flash . for Example , you can make a “Maze” game just by making a several frames and 3 Simple Buttons(that will be the Start,border & end) and linking them to a proper frame.  
code for that:

```auto

stop(); //in the first Frame for stopping it.
 
on(rollOver){
gotoAndstop(N) // N - the frame number
}
//this will be on the border button and linked to a frame that will tell the user that he touched the border
 
on(press){
gotoAndstop(N) // N - the frame number
}
//this will be on the End&start buttons and will be linked to the frame with the "Maze"(Start) and to the frame that tells the user that he passed the "Maze"(End)

```

Hope i Helped… 🙂  
$tas

---

<div class="post-metadata">

### Author: ![o111](https://yyz1.discourse-cdn.com/flex011/user_avatar/forum.kirupa.com/o111/32/2123_2.png) [@o111](https://forum.kirupa.com/u/o111)
#### Post date: [March 20, 2006, 2:04pm UTC](https://forum.kirupa.com/t/got-any-game-tutorials/182654/3 "2006-03-20T14:04:55Z")

</div>

Yes thanks:)  
I’ve actually made a maze game! 🙂  
And added some movieclips for “enemies”! 😃
