Posted: Sat Aug 24, 2024 2:58 pm Post subject: How to disable single-line assembler hotkey in Memory Viewer
Hi guys,
I am wondering how I could disable Single-Line assembler from popping up when I click on a keyboard hotkey and have an instruction highlighted when in memory viewer. I have tried using the LUA command below but it doesn't seem to work
Joined: 09 May 2003 Posts: 25804 Location: The netherlands
Posted: Sat Aug 24, 2024 3:19 pm Post subject:
Code:
local mv=getMemoryViewForm()
local oldkeydown=mv.DisassemblerView.OnKeyDown
mv.DisassemblerView.OnKeyDown=function(sender, key)
if (key>=VK_0) and (key<=VK_Z) then
return nil
else
return oldkeydown(sender,key)
end
end
_________________
Do not ask me about online cheats. I don't know any and wont help finding them.
Like my help? Join me on Patreon so i can keep helping
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