Posted: Tue Aug 27, 2024 7:26 am Post subject: How to change Find out what accesses this address hotkey
Just wondering how to change the hotkey for find out what accesses this address hotkey from F5 to B on the main cheat engine form. Below is what I have tried so far.
You can find names of components by iterating through their owner (probably the form they reside in) and search for specific properties- e.g. caption:
Code:
for i = 0, MainForm.ComponentCount-1 do
local c = MainForm.Component[i]
if c.Caption == "Find out what accesses this address" then
print(c.Name, c.Shortcut)
end
end
--[[ output:
Findoutwhataccessesthisaddress1 F5
miFlFindWhatAccesses Ctrl+F5
]]
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