If you are a beginner, I suggest you try some basic actions.
1. Create a circle or a rectangle.
2. Select your circle or a rectangle.
3. Convert it into either:
a. Movie Clip - This can be your player in a game, or an obstacle.
b. Button - When you click it, it goes to another frame.
c. Graphic - These are the most basic objects in every Flash.
4. You don't need Actionscript in movies, only for buttons, but for games, you need to have a lot of experience. If you need further help, you may contact the Flash Mods. To see the current Flash Mods, look at the right side. It is the person who posted the latest person. To make this easier, a topic that has already been locked is a good option. The actionscript of the buttons is:
on (release) {
gotoAndPlay('whatever frame you choose');
}
You can also use on (press) { instead of on (release) {.
If you are making a game, the 2 onClipEvent handlers are very important. These are:
onClipEvent (load) {
onClipEvent (enterFrame) {
In onClipEvent (load) {, just add any variables and their set number. Example:
range = 50;
In onClipEvent (enterFrame) {, the player should do anything while pressing a button. Here's an example:
onClipEvent (enterFrame) {
if (Key.isDown(65)) {
_x =- xspeed;
}
}
Also, as for the letter codes, you need to use numbers. Add a number from 64. So, if you add 64 by 23, then the button you will need to press is W. I hope this helps.