Great work thank you.
Running the Demo, when pressing F5 I get a debug dialog stating "Snapshot Nº0 not properly initialized". Pressing F5 again then it works as intended.
What can I change to init the snapshot Nº0?
; Demo FastFind (officielle)
#include "FastFind.au3"
#Include <WinAPI.au3>
#RequireAdmin
global const $DEBUG_DEFAULT = 3
global const $DEBUG_GRAPHIC = $DEBUG_DEFAULT + 4
global const $WINDOW_CLASS = "Notepad" ; CLASS of the target Window
global const $WINDOW_TITLE = "" ; TITRE of the target Window
FFSetDebugMode($DEBUG_GRAPHIC) ; Enable advanced (graphical) debug mode, so you will have traces + graphical feedback
FFSetDefaultSnapShot(0)
FFSnapShot(0,0,100,100)
I added a FFSnapshot() after the first FFSetDefaultSnapShot(0) and this seems to work for me. I'm new to this, is this the correct way to do this?
Regards