Posted: Tue Jun 21, 2016 9:58 am Post subject: Feature request: Hover box to show module in results list.
This is by no means a necessity, but I thought it would be a nice time-saving feature to see the module+offset of a base address in the results list via a hover box instead of having to add the address to the address list, then double-click on it to see that information in the "change address" box! _________________
AFAIK there's only one tooltip associated with the listview, and there's no (easy) way of getting which item you're hovering over. Still, you can get which one is selected and use that address. Here's some Lua code which does that:
Code:
getMainForm().Foundlist3.OnMouseMove = function(l) l.Hint = l.ItemIndex >= 0 and getNameFromAddress(l.Selected.Caption) or "This list shows all the found addresses that matched your last scan" end
_________________
I don't know where I'm going, but I'll figure it out when I get there.
AFAIK there's only one tooltip associated with the listview, and there's no (easy) way of getting which item you're hovering over. Still, you can get which one is selected and use that address. Here's some Lua code which does that:
Code:
getMainForm().Foundlist3.OnMouseMove = function(l) l.Hint = l.ItemIndex >= 0 and getNameFromAddress(l.Selected.Caption) or "This list shows all the found addresses that matched your last scan" end
Nicely done. Thanks! I really have to learn Lua soon. I'd love to be able to start doing these sorts of things without asking for them. _________________
You cannot post new topics in this forum You cannot reply to topics in this forum You cannot edit your posts in this forum You cannot delete your posts in this forum You cannot vote in polls in this forum You cannot attach files in this forum You can download files in this forum