views:

57

answers:

3

If I have a designer make the necessary graphics, what do I need to learn to make a flash based game?

Is it action script only?

I already understand the backend server work that would need to talk to the 'front end' part of the game i.e. how the flash game will make requests to the backend servers for storing/retrieving data in xml/json etc.

A: 

You can easily create an Actionscript only game. If you learn the Actionscript drawing API, you can even programatically draw graphics and may not need a designer (depends on the complexity you want).

Even if you want to use imported graphics, you can do it without paying for the full version of Flash by using the Flex compiler. You can use it to create Actionscript only files without the Flex framework, or with it if you want.

Alan Geleynse
A: 

I've written games/activities, albeit standalone, entirely in ActionScript without any graphics. So, Yes :)

Lazarus
+2  A: 

Yes, you only need ActionScript. All game logic and what is neccessary for rendering can be done directly in code.

There are some very good game libraries out there, flixel and flashpunk come to mind. There is even a physics library, box2dflash.

Here is all you need to get started: gamepoetry.com

I could also provide you with some very good tutorials on the subject, if you'd like.

EyeSeeEm