Moderators: time-killer-games, Vengeance66, Candle, reneuend, GM-Support
Function HideItem(ItemName)
For Each X in InventoryItemObject
If X.Tag = ItemName Then
X.Tag = ""
End If
Next
End Function
Mikael wrote:Is there any way to remove the inventory hints (the text displayed over the inventory icon while the cursor is on them)? My distributor has a problem with this when translating my older AM games. Renaming (translating) all inventory items would be too complicated.
I got this string from an old post on this forum, but can't get it to work:
For Each X in InventoryItemObject
X.tag=""
next
Thanks for any help!
Mikael, MDNA Games
Sub HideItem(ItemName)
For Each X in InventoryItemObject
X.TAG = ItemName
If X.TAG = ItemName Then
X.visible = False
End If
Next
End Sub
HideItem key
Function HideItem(ItemName)
For Each X in InventoryItemObject
If X.Tag = ItemName Then
MsgBox X.Tag
X.Tag = "Object"
MsgBox X.Tag
End If
Next
End Function
Sub HideItem(ItemName)
For Each X in InventoryItemObject
If X.Tag = ItemName Then
X.ToolTipText=""
end if
next
End Sub
Sub HideItems
For Each X in InventoryItemObject
X.ToolTipText=""
next
End Sub
Sub HideItem(ItemName)
For Each X in InventoryItemObject
If X.Tag = ItemName Then
X.Visible=false
end if
next
End Sub
Return to Adventure Maker Technical Support and Bug Reports
Users browsing this forum: No registered users and 0 guests