Inventory in Rpg in flash

Hello all,
I’m a newby in flash, and I wish to create an adventuregame (Rpg, first person view) similar to many others, just for testing my drawing abilities.

The general coding of the game is clear enough to me, but I need an inventory in which to keep useful objects during the game.
To store items inside the inventory, I used the simple tutorial suggested here in kirupa. I attached this code over the item-mc:

on (release) {
_root.addToSlot (this)

this code call the addToSlot function

function addToSlot (item) {
if (!item.found) {
item._x = eval ("itemSlot) + currentslotnum)._x;
item._y = eval ("itemSlot) + currentslotnum)._y;
item.found = true;

…and then one is added to currentslotnum (with currentslotnum++), a variable set to one in the beginning

With this code the inventory is actually functioning, the item goes to the first free slot in the inventory. But obviously I need to use later this item in the game (i.e. a key inside a hole). How can I do this? I tried with a Mc containing a button: with StartDrag and StopDrag method coded with hitTest or _droptarget nothing happens, that is the Mc don’t come out of the inventory - the drag command seems to be ignored.

anyone knows how to do?
I need something similar to skutnik’s Daymare town
http://www.daymaretown.com/dmt1.html

o something similar…

tankhing you all in advance

i did an rpg some time ago, what used was IDs for items (with linkage), and the hidden variables where items IDs stored, and when u open the inventory it do an attachmovie of each id in each slot, then if i want to remove an item i would use a function that check the hidden variables for the id of the item and then remove it, for droping and taking i used 3 frames for equipable items and 2 for normal items, first frame was for item in floor, second for item in inventory and third(if used) for equipment, each frame with his button for each function(take, drop, unequip) hope this help

http://www.n99creations.com/vieweg.php?id=19

thank you nathan and arosemena

I’m actually trying to develop your suggestion
see you