View previous topic :: View next topic |
Author |
Message |
Emanuel Leuname How do I cheat?
Reputation: 0
Joined: 04 Oct 2014 Posts: 3
|
Posted: Sat Oct 04, 2014 3:46 am Post subject: Hotkey to open Pointer Scanner |
|
|
Hello!
Is there a hotkey to open the Pointer Scanner window?
Quite often I just want to open a previous scan and resume the search, so I find quite silly to have to search for anything, put that anything into the watch list, right click it, and then finally being able to open the pointer scanner window.
Having something like "Open Pointer Scanner" in CE menu would also be nice!
Thanks!
|
|
Back to top |
|
 |
Dark Byte Site Admin
Reputation: 470
Joined: 09 May 2003 Posts: 25785 Location: The netherlands
|
Posted: Sat Oct 04, 2014 4:20 am Post subject: |
|
|
Hold down ctrl and then type mpo to open a poiterscan result, or mpp to setup a new scan
_________________
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 |
|
Back to top |
|
 |
Emanuel Leuname How do I cheat?
Reputation: 0
Joined: 04 Oct 2014 Posts: 3
|
Posted: Sat Oct 04, 2014 4:52 am Post subject: |
|
|
Through Memory Viewer is indeed a faster way; it is good enough for me.
Thanks for letting me know!
...on a side question, does the Pointer Scanner window support tabs like the normal scan does? At times my screen gets a little too crowded with many pointer scan windows open.
|
|
Back to top |
|
 |
Dark Byte Site Admin
Reputation: 470
Joined: 09 May 2003 Posts: 25785 Location: The netherlands
|
Posted: Sat Oct 04, 2014 4:58 am Post subject: |
|
|
Here's a lua script you can put in the autorun folder of ce: (or just manually execute once)
Code: |
toolsmenu=getMainForm().ools1
toolsmenu.visible=true
mainmenu=getMainForm().Menu
mi=createMenuItem(mainmenu)
mi.Caption="Open Pointerscan"
mi.OnClick=function() getMemoryViewForm().Dissectdata1.DoClick() end
mi.Shortcut="Ctrl+Alt+P"
toolsmenu.add(mi)
|
(Dissectdata1 is a really old name for the pointerscan)
As for tabs in pointerscan, no. But you can minimize them and they'll be in a row on the bottom left side of the screen
Just out of curiosity, why do you have multiple windows? Do you have multiple scans going on, or just results ?
_________________
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 |
|
Back to top |
|
 |
Emanuel Leuname How do I cheat?
Reputation: 0
Joined: 04 Oct 2014 Posts: 3
|
Posted: Sat Oct 04, 2014 5:43 am Post subject: |
|
|
Your lua script worked great, that was exactly what I wanted: a direct hotkey and an entry in the menu for mouse laziness (or in case of forgetting the hotkey). Thanks a lot!
As for the multiple windows in the pointer scanner, it is for the latter.
Even though I only scan one at a time, I usually keep many windows opened for different address searches, so when one ends scanning I just put the next one to scan. That way I do not have to select previous result files to load in between scans; everything is always "ready".
The only issue when using the minimize approach is that the title in minimized windows get truncated before the current file name and thus look all the same ("Pointer scan..."). But eh, it is no big deal at all.
|
|
Back to top |
|
 |
|