03-08-2011, 05:45 AM
So... um... Let's see if this bit of code you wrote even functions. Try THIS slight edit.
The p "I am Working" is an annoying popup that is brought onto the screen if this if...end block is even working. If you don't see it, then your @itemdetail_window is not being turned on.
The 'p' (aka print) feature can help you trace things.
Code:
alias new_update update
def update
$currenthighlighteditem = @item_window.item
if @itemdetail_window.active
p "I am Working!"
update_detail
return
end
new_update
end
The p "I am Working" is an annoying popup that is brought onto the screen if this if...end block is even working. If you don't see it, then your @itemdetail_window is not being turned on.
The 'p' (aka print) feature can help you trace things.