ForumsProgramming ForumOk i got the stuff! now what....

5 3114
Jikek
offline
Jikek
1,187 posts
Nomad

Ok now that i have Macromedia Flash 8 I'm ready to start making a game. The only problem is i have no clue where to even start. I'm not even sure what button to press when it starts up. I tried a couple of tuts on Newgrounds but those didn't start where i want them to.

  • 5 Replies
Arax_Nisanu
offline
Arax_Nisanu
1,305 posts
Nomad

If you download adobe flash cs3 i can give you a 1 year trial code that i have. I am in no need of it. Do you want it?

Grey
offline
Grey
281 posts
Nomad

Er...It's incredibly complicated. Get yourself a manual on C++ or something.

dank
offline
dank
986 posts
Peasant

Okay...

When it starts, file > new > Flash file (AS3)
Press F9
Type:

trace("Hello World!"

Anything inside quotes is considered a string, a number of characters.
Now Ctrl+Enter

You get, 'Hello World!'

trace() is a built in method of AS3.
A method is a subroutine that executes a piece of code and can be called countless times. In this case, trace() outputs the argument (the stuff inside the parenthesis) to the output window.
If you do not know what a certain method does, highlight it and select help and Flash will show you the documentation for that method.

Also try some basic math in the trace like:
trace(5+5);
trace(5*5);
trace(5-5);
trace(5/5);
trace(5^6);
Jikek
offline
Jikek
1,187 posts
Nomad

ok i did that. im looking for a tutorial on making a simple game.

nqkoi1
offline
nqkoi1
382 posts
Nomad

You could always try Google...

Showing 1-5 of 5