PDA

View Full Version : Dress-Up game Help



Monstrphil
February 27th, 2006, 02:14 PM
I am having problems with a dress up game I am creating for my daughter. I have 3 menus (clothes, items, backround)

How do you make it where if you pull a hat from one menu-it stays off the menu when you view it again? Is there a tutorial for one of these? Thanks

Joppe
February 27th, 2006, 04:44 PM
well you could check for every item like


if(!item_name.hitTest(menu)){
item_name = true;
}
if(item_name = true){
item_name._alpha = 0;
}

would that work with what you have?

Monstrphil
March 7th, 2006, 11:55 AM
so with your scripting, if the item is on the person(doll)-the menu item would get alpha=0? I'll try it-thanks