How to make a dress up game
This is a simple tutorial that will teach you how to use the drag and drop system that is common in games such as dress up, tower defense, and any other games where you will need to be dragging objects around the screen.
The first thing you’ll want to do is draw the things that you will be dragging. Draw the object and select it. Now hit F8 and name it whatever you like. You’ll want to be sure you select the Movie clip option though. Now that the object you will be using is on stage, you’ll want to give it an instance name. Click it and give it the whatever instance name you want. I named mine myItem.
Now for the coding part. Go into the code of the button and put this in:
on (press) { // when your press the buttom startDrag(""); // start the dragging } // end of script on (release) { // when you release the mouse button stopDrag(); // stops the dragging } //end of script
Now hit Control+Enter to test your flash and see if it works. You should be able to drag your object around the screen. If it seems a little awkward, try changing the frame rate to a more smooth 20 or 25. You can put this dragging code into as many buttons as you wish. You can even make all your objects on separate layers to choose which objects will appear above or below the others. This is useful for dress up games, in which you will want to have certain objects above other ones.
That’s it for the drag and drop tutorial. This should have you making dress up games in no time. Pretty simple right?
If you liked this post, subscribe to my RSS Feed for more great tips on how to make flash games.
Related posts:



February 16th, 2009 at 12:32 pm
thanks for the info…its a great starting point
February 16th, 2009 at 4:21 pm
No problem. Best of luck if you decide to make one.
February 16th, 2009 at 8:30 pm
you can make puzzle game also and…etc.
February 18th, 2009 at 12:38 am
What do app do you have to use to draw stuff? ( paint, paintbrush, etc. )
February 18th, 2009 at 1:59 am
Flash is a good one. You can draw right inside it using either the brush tool or pencil tool. It helps if you have a graphic tablet though.
February 27th, 2009 at 9:44 pm
Very nice article. Thanks…
April 10th, 2009 at 7:53 am
dosn’t work
April 10th, 2009 at 8:39 am
Are you sure you followed the directions? I tested it again to be sure, and it worked fine. This code is in actionscript 2, perhaps you are using as3. Maybe you didn’t make it a button?
April 11th, 2009 at 11:02 am
Awesome, thanks for sharing this as well as all of your other Flash AS tips! I’ve been trying to learn how to program in AS, and you’re site has been a nice addition to my information arsenal! Keep up the good work!
April 16th, 2009 at 5:50 am
Hi I’m trying to use the code, and I’m new to Flash so sorry if I sound like an idiot, but I keep getting an error message:
**Error** Scene=Scene 1, layer=Layer 1, frame=1:Line 1: Syntax error.
n (press) {
Total ActionScript Errors: 1 Reported Errors: 1
Am I doing something wrong?
April 16th, 2009 at 9:07 am
It looks like you forgot the o in on. Try adding it and tell me if it works.
April 20th, 2009 at 10:46 am
where do i put the code? when i press f9 theres nothing about my button. Please help.
April 20th, 2009 at 2:27 pm
You put the code in the button’s actions panel. To get to the actions panel, you’ll have to first be sure the button is selected (click it). Then, hit F9 and the properties/actions panel will come up. Click on the actions panel to expand it, and you can now enter code.
May 8th, 2009 at 5:10 pm
What if I want to make a game where it’s Shugo Chara like I don’t wanna draw my own Character I wanna make it of a already exsisting Character. And how do you download the flash drive thing please!
May 9th, 2009 at 5:50 pm
I have made a dress up game and have no issues with the drag and drop. but I have each catogory of clothes on a different layer (tops, bottoms, swimsuits, hats ect.) I cannot figure out the coding I need to add to keep the clothes on the model when moving on to the next frame. any ideas?
May 30th, 2009 at 7:49 am
This Is Way To Complicated
June 10th, 2009 at 1:58 pm
I have a few problems actually.
I put in that script for all of my clothing and it was working fine when I would test it out but still said I had 2 errors for every piece:
**Error** Scene=THE HAPPENINGS, layer=yelloButton, frame=1:Line 1: Mouse events are permitted only for button instances
on (press) {
**Error** Scene=THE HAPPENINGS, layer=yelloButton, frame=1:Line 4: Mouse events are permitted only for button instances
on (release) {
I was wondering if I can just ignore the errors because they don’t seem to affect my game, but I would still like to know why it’s giving me those errors.
And as for my second problem, all my clothing was working out great and then I put in these 4 buttons as accessories. one of the buttons would move around, but the other three wouldn’t even get a pointer hand over them when I tested it. Everything is exactly the same as the other clothing. I have no clue what it could be, but then again I’m definitely a beginner when it comes to AS.
Help would be so much appreciated!
June 10th, 2009 at 2:21 pm
From your error messages, it sounds like you didn’t convert your clothing into a button. Make sure that you select the button option when you are creating your symbol.
For your other problem, again it seems like they weren’t buttons. Try making sure they are buttons, and tell me how it works.
June 10th, 2009 at 2:52 pm
You were right about them not being buttons. They were all movieclips.
I changed all the button accessories and a few clothing items to Buttons and they now have the pointer finger over them, but won’t move. That’s probably because they’re meant to press, not move. From what I understand at least. Is there a part I’m missing possibly?
And also, the error messages didn’t go away.
June 10th, 2009 at 3:05 pm
Do you have the code on the frame? That’s what it sounds like. If so, you’ll want to take it off the frame. Click on the keyframe to see if there is any code in it.
June 10th, 2009 at 3:43 pm
You mean the little italic ‘a’?
Well how might I go about putting the code anywhere else? I’m afraid I’m not following that.
I went in the symbol by double clicking it but you can’t put code in the action panel there.
Here’s a screenshot. I don’t know if it will help, it’s not very good quality.
http://img.photobucket.com/albums/v332/casodjawa77/DressUp_ss.png
June 10th, 2009 at 4:34 pm
Ok. Yeah the code needs to come off the key frame (where you have the italic a). To get into the button’s code, click on the button once and hit F9 to bring up the button’s code box. Then put the code in there.
Hope that helps.
June 10th, 2009 at 5:51 pm
I took it off, and went into the button. When I pressed f9 this came up:
http://img.photobucket.com/albums/v332/casodjawa77/DressUp_ss2.png
It will not allow me to put in the code.
And I’m sorry this is taking so long and I really do appreciate your help, very much. Thank you for tolerating me. :)
June 10th, 2009 at 8:07 pm
No problem. Don’t go into the button. Select the button on the main timeline, but don’t go into it. Once it is selected hit f9 and the actionscript box should come up.
Try that and see how it works.
June 11th, 2009 at 2:36 pm
YAY!
I about had a heart attack, it worked!
thank you so very much, this has been bugging me for a long time, you’re a lot of help, and very nice tutorial ^__^
June 11th, 2009 at 3:26 pm
Glad I could help :)
June 21st, 2009 at 11:21 am
Help! Cuz when I type the code and stuff and then I test it, the character moves with the clothing!
June 21st, 2009 at 11:46 am
Did you make them on separate movie clips?
July 5th, 2009 at 3:27 pm
okay, so where do u draw it, on paint or something? (isn’t very good at following instructions….)
July 9th, 2009 at 2:05 pm
Hello!
I would like to put conditions in the game, is that I want to show all clothing and according to what is requested, it is the proper attire in the character.
July 13th, 2009 at 10:25 am
Hi.I’m sorry for being so out there but, what program(s) do I need to use to make one?
AND where can I download them.
July 13th, 2009 at 2:24 pm
Elizabeth, you can draw it right in Flash using the brush or pencil tool.
Ana, I’m not quite sure what you’re asking. You’ll have to be a bit clearer. But, it sounds like variables could help you out.
Hailey, you need to use Flash to follow along with this tutorial. It can be downloaded from Adobe’s site if you want the latest version, or you could find older, cheaper version for a bit cheaper on eBay.
July 18th, 2009 at 7:25 am
hey, i have done it all right i pasted this in :
on (press) {
// when your press the buttom
startDrag(“”);
// start the dragging
}
// end of script
on (release) {
// when you release the mouse button
stopDrag();
// stops the dragging
}
//end of script
Am i doing something wrong, each time i test it, i go to drag the clothes and everything moves please help?
July 18th, 2009 at 11:09 am
It sounds like you put all the clothes into one movieclip Liam. They should each be in separate movieclips, that way they can drag independently. Try that, and tell me how it goes.
July 21st, 2009 at 6:15 pm
I have the same problem as cassy, only my object IS a button. im not sure what is wrong.
July 21st, 2009 at 7:08 pm
Are you sure you’re putting the code in the right place? On the main timeline, click the button you want to have code on and hit F9. Let me know if that works.
July 25th, 2009 at 11:38 am
do you have to have your own website to do this?
im so confused were do you draw the drag and drop
July 25th, 2009 at 12:02 pm
You have to make it in Flash, a program made by Adobe.
July 27th, 2009 at 8:00 pm
To make this actionscript work you need to take out everything written in gray. The code should look like this:
on (press) {
startDrag(“”);
}
on (release) {
stopDrag();
}
July 27th, 2009 at 8:04 pm
Also I would like to add you do not need an instance since none is specified in this particular code and you do not need to make your symbol a button for it to work, it could be a movie clip, button or graphic and it’ll still work. Just right click on the symbol go to actions and paste in the script.
July 28th, 2009 at 9:08 am
The gray code is actually comments. It shouldn’t have any effect on how the code functions Anonymous.
Agreed, it’s not necessary to have an instance for the symbol, but it’s helpful for keeping your buttons and movieclip organized.
July 31st, 2009 at 9:40 am
Nothing happens when I press f8 and i dont know what to do now :(
July 31st, 2009 at 10:07 am
I’m not sure why f8 wouldn’t be working, but you can select what you want to make into a symbol, then go to Modify >> Convert to Symbol.
August 2nd, 2009 at 4:15 pm
I don’t understand. How do you make separate movie clips? I’m confused, terribly.
August 2nd, 2009 at 5:01 pm
Each piece of clothing should be in it’s own movieclip. Just follow the steps for making one movieclip, and the do it for each new piece of clothing you want.
August 11th, 2009 at 3:10 pm
I still don’t understand. :/ I tried making them on different layers and it did the same thing.
August 12th, 2009 at 2:11 am
I have done everything in the tutorial and even readed all of the comments, but still I cant get my clothes to move. And i get errors:
1087: Syntax error: extra characters found after end of program. on (press) {
August 12th, 2009 at 9:12 am
It sounds like on line 1087 you have an on(press) event that isn’t closed. To close it you would use }. Let me know if that works. Also, you have over 1000 lines of code for a dress-up game? Must be big.
August 12th, 2009 at 10:05 am
I don’t have 1000 lines in my dress-up games. :O
Have i done somthing wrong?
But that “close”-thing don’t work. And my clothes still don’t move.
Sorry for my really bad english, but I am from Norway and not good in it!
August 12th, 2009 at 10:33 am
It’s fine, no worries.
Hmm… Do you have a screenshot of what your code looks like? That may help.
August 12th, 2009 at 10:42 am
Here: http://tinypic.com/usermedia.php?uo=bXcZ8DDMLuTLCytSb4D6iYh4l5k2TGxc
August 12th, 2009 at 11:45 am
It seems that you’re using Actionscript 3. The code is built for Actionscript 2.
If you want to make it with as2, you’ll have to click on the drop-down box where it says Actionscript 3.0 and change it to Actionscript 2.0. Then, replace the code you have now with the code up in the post. Try that and see if it works.
August 12th, 2009 at 12:14 pm
I did make it to 2.0 now, but when I go out and in of actionscript agen it is still 3.0. Do I have to save it or somthing?
August 12th, 2009 at 1:06 pm
Try going into publish settings. File >> Publish Settings. Then switch the actionscript version from there and hit OK. See if that works.
August 12th, 2009 at 1:25 pm
Yes it work, but I can still dont move my clothes and I keep get errors:
Mouse events are permitted only for button instances on(press){
Mouse events are permitted only for button instances on (press){
August 12th, 2009 at 1:53 pm
It sounds like you converted it into a movieclip instead of a button. Either that or you put the code on the frame, when the code should be put on the button. Is it either one of those?
August 12th, 2009 at 2:57 pm
I could move my clothes in a few seconds, but so the same errors came back:
Mouse events are permitted only for button instances on(press){
Mouse events are permitted only for button instances on (press){
August 12th, 2009 at 3:44 pm
Chloe, I just tested it in my flash player, and came up with the problem everyone is getting it seems like you need to have the symbols be movieclips, not buttons for it to work for more than one. So I updated the post for that, and now the items don’t all drag at once.
I think you put the code on the frame Sandra. The code should be placed on each movieclip. So click on the movieclip, and hit F9 to bring up the code box for that movieclip. Then just enter your code.
That should do the trick, but let me know if it isn’t working.
August 13th, 2009 at 2:13 am
You are a angle, I want to kiss you! Thank U!
And thank U for tolerating me all this time! ^^ But one more question. How can i make more clothes without that they all moves at the same time?
August 13th, 2009 at 8:04 am
Glad to help :) That’s the part I mentioned in the first paragraph in the above comment. When I was testing the code the first time, I was only using one object, so I thought buttons would work fine. But then I tested again with more objects, and I got the same problem you are having.
But, if you make your clothes all MovieClips instead of buttons, I think it should work. To do that, when you turn them into a symbol, just select the Movie clip option instead of button. Keep me posted on how it goes.
August 13th, 2009 at 3:32 pm
Thank U! ^^
I still have errors, but it not seems to effecting my game..
Mouse events are permitted only for button instances on (press){
Mouse events are permitted only for button instances on (release){
It is six of this.
August 13th, 2009 at 4:08 pm
Yeah, I’m not sure why you’re still getting those. But if everything is working fine, I guess it must be alright. Best of luck with your game.
August 18th, 2009 at 12:25 pm
so, i made a dogs dress up game, and i put the coding on the collar… when i tested it, the entire screen went with the collar!! what am i doing wrong??!! it doesnt say there are any errors with the script… im not sure what to do!!
August 18th, 2009 at 12:45 pm
ohh… never mind!! i got it working because i changed the items to movie clips…
August 18th, 2009 at 4:33 pm
Glad it’s working out Emily. Good luck with the game :)
August 20th, 2009 at 3:29 pm
Does anybody know how to make a “restart” button that puts all the clothes back to the original positions? Or a “save” button, so the user can save what they have created for next time. Last but not least, how about a “print” button for the user to print out the outfit they created?
Thanks for the help.
August 21st, 2009 at 9:52 am
hi erm i need to know how to make a dressing up game.i need ideas to lots of them. thanks :)
August 29th, 2009 at 12:12 pm
what program do i use HELP ME Im soo Confused.
August 30th, 2009 at 10:37 am
You use Flash. It’s a program by Adobe.
September 6th, 2009 at 6:37 am
Scene=Scene 1, Layer=halo, Frame=1: Line 2: on handlers may not nest within other on handlers
on (press) {
I dont know what it means!
September 6th, 2009 at 8:39 am
It sounds like you put the code inside the code. As in, you pasted in the code, then pasted the code again inside the code. Erase everything you have in that code block, and retype in the code to see if it will work.
September 6th, 2009 at 9:59 am
It still dosent work :(
And i still have no idea why.
September 21st, 2009 at 11:38 am
how would i make it like…drag…release..and it will like…stick onto the picture so i dont have to move it around to place it correctly? And how to i import pictures for example…my fully drawn avatar…to the flash so i dun have to draw stick mans on flash?(which doesnt look good compared to those drawn on photoshop)
September 21st, 2009 at 11:59 am
can someone link me the down load to the program everyone is using please :)?
September 21st, 2009 at 12:07 pm
I’m trying to find it but i try to down load it and it don’t work. . .
September 21st, 2009 at 12:12 pm
Please some one link me the download xD?!!
September 21st, 2009 at 2:41 pm
You can get Flash from Adobe’s website Holly.
September 21st, 2009 at 2:45 pm
To make it stick would require some coding knowledge Sherry. The way I would do it is to test whether the piece is a certain number of pixels from the space you want it to occupy. If it is, then set the piece’s x and y values to the spot that would center them in the slot.
To import a picture, you can do File >> Import >> Import to Library. Then the picture will be in your library and you can put it wherever you want.
October 15th, 2009 at 8:14 am
It was pretty helpful for me to apply it to my current project based on a gaming console. Thanks for all support.
October 20th, 2009 at 3:07 pm
No problem, glad you found it useful.
November 21st, 2009 at 10:14 pm
Well you see i want to make a dress up game and im a really good drawer but i dont know how to do any of this and every one ive asked just say what it says up there but i dont understand it when it talks about ur websites and adobe im sooooo confused i just dont know what to do to make my idea become real can u help me?
November 21st, 2009 at 10:21 pm
oh and when it says programs what does it mean and where do i download them on mylaptop??
November 21st, 2009 at 10:22 pm
plz plz plz plz plz plz plz help me
November 22nd, 2009 at 7:40 pm
You need Flash, the program by Adobe. Do a google search for it and it should come up with their website.
November 23rd, 2009 at 10:26 pm
will adone reader work thats aleady dowloaded on my pc or can it only be flash by adobe?
November 23rd, 2009 at 10:40 pm
one more question what is adobe flash i looked it up like u said 2 its on my other tab right now and its a movie thing i just wanna know how to make a dress up game so i can but that website totally confused me i just probably shouldnt try to make one
November 24th, 2009 at 2:18 pm
Here’s the link to the product: http://www.adobe.com/products/flash/
It can be used for movies or games. You’ll probably want to start with some beginner tutorials on game development just so you can learn the basics of flash and how to use it for making games. The product you’ll see in the link uses as3, so if you buy an older version of it, it will be cheaper and easier. A good book for learning as2 is Beginning Flash Game Programming for Dummies or Flash Game Design Demystified.
December 6th, 2009 at 12:29 am
thank you i will try it
December 12th, 2009 at 11:46 am
yay!! It works! Doumo arigatou!! *3*! I’m about to finish my little game *excited*
Mmmm… but I was thinking in put a little sound when you click the start button… but I don’t know how to do it. I was looking for it in internet and only find how to use a song with a play and stop button, but it’s not what I need so… do you know how can I add it? T^T It’s only a “click” for the start button and a “sound” when you move the cursor on the buttons… ;____;
*sorry for my english, I tried my best!*
December 12th, 2009 at 1:39 pm
where do you start at
December 18th, 2009 at 4:19 pm
can you do this on paint
December 24th, 2009 at 10:35 pm
What program do you use to make dress up games?
December 29th, 2009 at 8:11 pm
I tried using paint but that wouldn’t work. Where do I go to follow these instructions?
January 1st, 2010 at 6:41 pm
I tried that and this happens. I copied it right from the post?
**Error** Scene=Scene 1, layer=Eyes, frame=1:Line 1: Mouse events are permitted only for button instances
on (press) {
**Error** Scene=Scene 1, layer=Eyes, frame=1:Line 7: Mouse events are permitted only for button instances
on (release) {
**Error** Scene=Scene 1, layer=Eyes, frame=1:Line 2: on handlers may not nest within other on handlers
on (press) {
Total ActionScript Errors: 3 Reported Errors: 3
January 5th, 2010 at 9:19 am
as first i also made my pieces into buttons and typed the code in.then the pieces all moved together and i tried to convert them into movieclips, but now it won´t even let me use the code.
it says:Clipboard Actions: Line 2: Syntax error.
startDrag(“”);
but i can´t change the thing after startDrag
can you help me?
January 21st, 2010 at 10:48 pm
wat button ? i dont see any button i should select?plz help!
January 31st, 2010 at 4:49 am
Do you do this on flash player??? because I was thinking of installing it.
February 3rd, 2010 at 10:47 pm
Hello,may i asked,how to auto-setup the position for the costumes when you drop it down on the avatar?
February 4th, 2010 at 3:55 pm
To answer most of your questions:
No, you can’t do this in paint. You have to use a program called Flash. Flash is not Flash Player, but is a separate program designed for creating flash games that would run in Flash Player. You can purchase Flash from Adobe’s website.
Jici, I would go about doing that by testing to see if the costume hitTests the player. If so, then have the clothing’s x and y position moved to the spot on screen that you want the clothing to ‘lock’ at.
February 13th, 2010 at 3:39 pm
I got this error:
**Error** Scene=Scene 1, layer=Layer 1, frame=1:Line 2: on handlers may not nest within other on handlers
on (press) {
I tried to fix it several times, but nothing, as far as my knowledge goes, worked.
February 13th, 2010 at 9:11 pm
It sounds like you have one part of the code within the other Darkwater. Most likely you left out on of the ‘}’ brackets. Did you copy the code exactly as it is up there?
March 8th, 2010 at 11:38 pm
Hi,
I am just wondering, how much can I expect if I create a dress-up game and want to sell it? Let’s say I create one character and the player has 10 options for clothes, pants, shoes, hair styles, etc.
Thanks in advance.
March 9th, 2010 at 6:41 pm
Dress up games tend to be harder to sell than other types of games, as they rely solely on the quality of art that you produce. So if you produce good art, you could probably sell it for a decent amount of money. It all depends on how much someone is willing to pay for it. If you’re interested in getting it sponsored, check out flashgamelicense.com. They’re a great help when it comes time to sell your game.
March 13th, 2010 at 12:43 am
Thank you for that post.
I was just looking for a fashion game creator and those tips are great for me now.
March 13th, 2010 at 1:25 am
I tried using paint but that wouldn’t work. where can i find the exact instructions for that?
April 10th, 2010 at 6:48 am
CAN TELL HOW TO MAKE DRESS UP GAMES PLEASE !!!!……
April 12th, 2010 at 7:42 pm
help! what do u do? srry u will have 2 be more clear
April 16th, 2010 at 10:38 am
Pretty, cool. I think it needs to be more clear though.
April 17th, 2010 at 8:45 pm
on (press) {
// when your press the button
startDrag(“nectie_btn”);
// start the dragging
}
// end of script
on (release) {
// when you release the mouse button
stopDrag();
// stops the dragging
}
//end of script
It won’t drag at all :/
My mouse turns into a hand when over it, but when I try to drag/click there’s no response… What did I do wrong?
April 30th, 2010 at 12:06 pm
Thank you for the code, I tried it and it works perfectly.
July 19th, 2010 at 5:43 am
Thank you for the code, I tried it and it works perfectly.
August 18th, 2010 at 9:25 pm
i don’t know how to make a website plz can u help and what is this flash anyway???where to apply it…if i make my own website i have to give money for it or what????can u help im totally confused plz reply!!how to make dressup wbsite???
October 3rd, 2010 at 6:56 am
I CANT FIND A WEBSITE TO LET ME MAKE A DRESSUP GAME DO YOU GOT ANY ANSWERS? I COULD REALLY USE THEM
October 3rd, 2010 at 6:01 pm
You can use Flash to create the dressup game. That what this tutorial uses
October 27th, 2010 at 7:35 am
I want to start blogging too and what do you think, which blog platform is good for noob?
October 27th, 2010 at 2:39 pm
I’d recommend WordPress fortuna. That’s what I use.
March 16th, 2011 at 5:08 pm
hey i presed F8 but it did nothing
April 3rd, 2011 at 10:43 pm
Hey, this isnt working. Where do idraw at ? Would paint work ?
April 6th, 2011 at 11:36 am
Which program of adobe Flash do I download? I’ve seen lots of different ones and I don’t know which to download.
April 6th, 2011 at 8:25 pm
For this tutorial, which uses as2, you would be drawing on the stage or in a movieclip Khariya. I have a feeling you might be using a later version of flash.
For this tutorial, person, you would want to download something like Flash 8, which uses as2.
May 8th, 2011 at 7:18 pm
Hey, can you give me a link to an actionscript 2 download?
May 12th, 2011 at 3:06 am
hi, does the flash cost money? if so,about how much ?
May 13th, 2011 at 12:37 pm
Irene, I think what you want is an older version of Flash, such as Flash 8, which uses actionscript 2 to make games.
Cary, it depends on what version of Flash you buy and where you buy it from. Like I mentioned to Irene, Flash 8 and below uses Actionscript 2. They might cost you anywhere from $100-400 depending on where you buy them. Newer versions of Flash (such as Flash CS5), will cost you about $400 as well. Keep in mind, the newer versions use Actionscript 3, which is quite different from Actionscript 2.
June 14th, 2011 at 5:15 pm
What do i need to use to do this?
June 18th, 2011 at 3:05 am
F8 doesnt work.. its the mute button..
July 22nd, 2011 at 1:52 pm
You’ll want to use Flash 8 or Flash MX 2004, both of which use actionscript 2.
July 28th, 2011 at 9:31 pm
Hi!.. Your tutorial has been really helpful. But I have one problem. I’m trying to use an image from photoshop and I imported it on flash. But the image i imported does not “merge” with my frame on flash. It’s like it’s still not merged with the rest of the picture. So when I select the clothes and try to drag it over the character, parts of the background moves along with it. I hope you can help.
October 19th, 2011 at 6:54 pm
Ok, i’ve never used this before (or even heard of it) so this must sound like a stupid question: So uh. . . well how do I even draw the item in the frist place? I mean like in the tuturial it says “draw the item and then label it” and all the other stuff. Well, how do I draw the Item? All I wanna do is make a fun dress up game, so if you guys have any easier links to tell me that would help a lot! ‘Cuz I rly dont want to have to download anyting.
THANKS! :D
October 21st, 2011 at 9:21 am
If you have Flash 8 or Flash mx 2004, you can draw the item with Flash’s drawing tools right in Flash.
January 18th, 2012 at 3:26 pm
I tried to make an individual button for a dress up, but when I tested it out, both the doll AND the button were dragged! Please help!
January 23rd, 2012 at 2:53 pm
Is there any way I can do this for free?
January 23rd, 2012 at 3:11 pm
Hannah, you can do it for free using flex or a similar compiler, but it would have to be all code based, which would make things much tougher for a beginner.
April 17th, 2012 at 2:44 am
Hi, can you make score for that dress up game ? How to make score in that game?? thank you.. :)
August 3rd, 2012 at 12:52 am
Thank you !!! This Worked!! ^_^
August 4th, 2012 at 8:49 pm
Glad it helped Vanessa :) Nihlah, I would just use a simple integer variable to keep track of a score, and increase it whenever a certain event happens
August 10th, 2012 at 12:09 pm
What differences are there in this process with a mac instead of windows?
September 5th, 2012 at 2:08 pm
How do I allow people to “save” their dolls, besides telling them to printscreen. And do you know the code to let them glitter/animate dolls? Thanks!