02-05-2020, 03:06 AM
Is it possible to detect a left click + drag?
(Just like you drag select multiple items)
Could it be done with a timer? And can it be used to a compiled .exe?
Function click_drag_detect
(Just like you drag select multiple items)
Could it be done with a timer? And can it be used to a compiled .exe?
Function click_drag_detect
str dd=
;BEGIN DIALOG
;0 "" 0x90C80AC8 0x0 0 0 224 136 "Dialog"
;1 Button 0x54030001 0x4 116 116 48 14 "OK"
;2 Button 0x54030000 0x4 168 116 48 14 "Cancel"
;END DIALOG
;DIALOG EDITOR: "" 0x2040601 "*" "" "" ""
if(!ShowDialog(dd &sub.DlgProc 0)) ret
#sub DlgProc
function# hDlg message wParam lParam
sel message
,case WM_INITDIALOG
,,SetTimer hDlg 1 50 &sub.Timer
,case WM_DESTROY
,case WM_COMMAND goto messages2
ret
;messages2
sel wParam
,case IDOK
,case IDCANCEL
ret 1
#sub Timer
;; detect left click drag