Eme Fibonacci Well-Known Member Licensed User Longtime User Apr 8, 2017 #1 Basically the title says it all.
Eme Fibonacci Well-Known Member Licensed User Longtime User Apr 8, 2017 #2 Excuse, is easy MousePressed (Mouse down) And then MouseReleased (Mouse Up) Upvote 0
jmon Well-Known Member Licensed User Longtime User Apr 8, 2017 #3 or "action" which I tend to use more than the other methods B4X: Private Sub myBtn_Action 'your code End Sub Upvote 0
or "action" which I tend to use more than the other methods B4X: Private Sub myBtn_Action 'your code End Sub
Eme Fibonacci Well-Known Member Licensed User Longtime User Apr 8, 2017 #4 jmon said: or "action" which I tend to use more than the other methods B4X: Private Sub myBtn_Action 'your code End Sub Click to expand... Yes, Too work. B4X: Sub Button1_Action Log("MouseUp") End Sub Sub Button1_MousePressed (EventData As MouseEvent) Log("MouseDown") End Sub Upvote 0
jmon said: or "action" which I tend to use more than the other methods B4X: Private Sub myBtn_Action 'your code End Sub Click to expand... Yes, Too work. B4X: Sub Button1_Action Log("MouseUp") End Sub Sub Button1_MousePressed (EventData As MouseEvent) Log("MouseDown") End Sub