Here I will show you how to make a simple dress-up game with Flash.
I really hope this helps you!
- Draw the person who needs to be dressed up.
- Make a new layer where the clothes are going to be.
- Draw the clothes. I recommend drawing the clothes on the person, to make sure they are going to fit properly, so it doesn't look funny!
- Now use the Lasso Tool or the Selection Tool to select the clothes (you have to select them one by one, or otherwise when we add the ActionScript they will move together).
- Now press F8. In the Box that you see, select "Movie Clip" and then press OK.
- Now select the clothes again one by one and press F9.
- Add the following code when the ActionScript menu appears:
Code:
on (press) { startDrag (""); } on (release) { stopDrag (); }
Comment