I would like to find out if the control key is press.
I tried like that but it doesn't work:
Thanks in advance,
Otto
oWnd:bLClicked := { |y,x,flags | test() }
func test
if oWnd:bKeyDown() = VK_CONTROL
else
endif
I would like to find out if the control key is press.
I tried like that but it doesn't work:
Thanks in advance,
Otto
oWnd:bLClicked := { |y,x,flags | test() }
func test
if oWnd:bKeyDown() = VK_CONTROL
else
endif
I find a solution with:
if GetKeyState( VK_CONTROL )
else
endif