Notifications
Clear all
[Closed] doubleclick dotnet button
Apr 29, 2013 12:01 pm
Hi,
I’m sure this is easy but I’ve tried to add a double click event for my dotnet button but it doesn’t seem to work.
on myButton DoubleClick do(
print "Double clicked"
)
a single click works though
Any help appreciated.
Cheers
Dan
2 Replies
Apr 29, 2013 12:01 pm
Howdy Dan, Hope you are well.
Here you go!
rollout clicky "" width:162 height:52
(
dotnetcontrol myButton "button" pos:[6,6] width:150 height:40
on clicky open do myButton.text = "Clicky Woo"
on myButton mousedown sender args do
(
if args.clicks == 2 then
print "Double clicked"
else print "clicked"
)
)
createdialog clicky