Ever wandered how to make a form, that you can checkmark, or type in? well im about to show you!some basics- the basic setup of forms is -
Learn to make line avoiderDifficulty: 3/10 Time: 5 minutes Need to know: Actions panel, symbolsStep 1: Make a new document sized 500x by 500x.Create For this game, we will only need 1 layer.You can name the layer what ever you like.go to actions and type stop();Now, make a textfield saying play, convert it toA button(f8), then select it and type in: on (press){ gotoAndStop(2)} This is saying to go to the second frame when you click the button.Step 2: Now, go to your library, create a new buttonname it finish, and draw your finish area.Create a blank keyframe on frame 2. Switch to frame two.On frame two, go to actions and type stop();Step 3: Using the brush tool on blackdraw your boundry line. You want it to be inclosed, startingWhere your play button was. Now, select the whole thing, pressf8, convert it to a button, and type: on (rollOver){ gotoAndStop(1);}For every new level you make, you can put it to frame 1, or current frame - 1.Step 4: Now, still under frame 2, drag out your finish button, place it at the end of yourlevel. Now go under its actions, and type: on (rollOver){ gotoAndStop(3); }Step 5: Create a "blank keyframe" for frame 3, and go to actions panel and type: stop(); You have made your first level... you can continue to add as many levels as you wish.