Notifications
Clear all

[Closed] doubleclick dotnet button

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

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

wow, that was quick! thanks man.
Cheers
Dan