Never been to DZone Snippets before?

Snippets is a public source code repository. Easily build up your personal collection of code snippets, categorize them with tags / keywords, and share them with the world

double-click event snippet (See related posts)

; event/double-click
view layout [
	box "A Box" forest rate 1 feel [
		engage: func [face action event] [
			print [ action event/type]
			if action = 'down [
				print event/double-click
			]
		]
	]
]

You need to create an account or log in to post comments to this site.


Click here to browse all 5140 code snippets

Related Posts