how to use #PB_Event_LeftClick
Posted: Fri Feb 12, 2016 2:11 pm
I just don't get any events from this callback - here ist my code. Can anyone tell me what I have done wrong?:
Code: Select all
Procedure hasClicked()
Debug "HAS clicked"
EndProcedure
; Main init function
Procedure init()
OpenWindow(0,0,0,1000,700,"wurst")
BindEvent(#PB_Event_LeftClick,@hasClicked(),0)
EndProcedure
; End init()
init()