Actually, u can do this method if you like......I used Hotspots to make this happen..but u can also use frames ..
Create a variable for each item description image.
and a VARIANT variable called FRAMEVAR
Create 2 hotspots on the FRame..One for IMAGE Description..---Make it
transparent..
One for X that is already on the image..--drawn on it..
You draw an X to look like they can close each image description....at the top right corner..on each one.--Is just one way..
Make sure each image description..is exactly the same size as the hotspot.
Does't matter what size..just make sure hotspot.move is the size of image..it looks better. For example mine is 395 x 324
Put this in the Manage Inventory items..with using items on each other..
So if its magnifying glass..being used on the Key lets say..
Put this..in the Advanced
- Code: Select all
ShowKey=1
If ShowKey = 1 Then
Action.LoadAPicture Hotspot(1),"Key.jpg"
Hotspot(1).move 237*15,148*15,395*15,324*15
Framevar = Action.GetCurrentFrameName
End If
THen put in the using items on each other..Magnifying glass on say the Light ... Put this in the Advanced.
- Code: Select all
ShowLight=1
If Showlight = 1 Then
Action.LoadAPicture Hotspot(1),"Light.jpg"
Hotspot(1).move 237*15,148*15,395*15,324*15
Framevar = Action.GetCurrentFrameName
End If
In the X hotspot put this..
- Code: Select all
Action.GoToFrame Framevar
That should do it...
With this..they can keep dragging the magnifyier on each item..and for whatever item.---A picture will load-- and it won't matter the order , nor the frame they choose to examine the items..and they can do it right after the last one..so it won't matter if they keep doing so.
They can close the image..when they choose..

--Only one image description appears at at time..and they close the image when done viewing it..Or not..the next one will load either way..when they drag an item onto the next one..In this case magifer..
Peace~