<a>http://www.swfcabin.com/open/12318465 24<a>
Ive been working with this for not too long and its a inside joke. Anyways, I wanted to add Mario's Hat in the ItemBag after the skill is used. Basically I want to move a Movie Clip into another Movie Clip thats within ANOTHER Movie Clip. Ive tried everything its just not working
I put this in the frame
currentslotnum = 1;
stop ();
function addToslot (item) {
if (!item.found) {
_root.itembag.item._x = eval ("itemSlot" + currentslotnum)._x;
_root.itembag.item._y = eval ("itemSlot" + currentslotnum)._y;
_root.itembag.item.found = true;
currentslotnum++;
}
}
I put this one the item "Mario's Hat"
onClipEvent (enterFrame) {(
_root.itembag.addToslot (this));
}
I renamed all the Itemslots in the Itembag Movie clip in properties to names like itemSlot1, itemSlot2, etc. Please help!