Skip to content

Instantly share code, notes, and snippets.

@rebolek
Last active December 17, 2015 13:29
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save rebolek/5618033 to your computer and use it in GitHub Desktop.
Save rebolek/5618033 to your computer and use it in GitHub Desktop.
REBOL []
;print ""
stylize [
dragger: box [
facets: [
init-size: 100x100
max-size: 100x100
]
actors: [
on-click: [
if arg/type = 'down [
return init-drag face arg/offset
]
if arg/type = 'up [
]
]
on-drag: [
face/gob/offset: arg/offset - arg/base
show face/gob
]
]
]
]
view [
hpanel 200x200 red [
dragger
] on-drop [
append-content face arg/face
return true
]
hpanel 200x200 blue on-drop [
append-content face arg/face
return true
]
]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment