Skip to content

Instantly share code, notes, and snippets.

@emoon
Created June 2, 2014 21:12
Show Gist options
  • Save emoon/4d3270284da15bb787ee to your computer and use it in GitHub Desktop.
Save emoon/4d3270284da15bb787ee to your computer and use it in GitHub Desktop.
VBox
{
PushButton { label = "Test", onPush = "MyNativePush" },
PushButton { label = "Test 2", onPush = function() print("Meh") end },
ComboBox
{
label = "test 4",
items = { "test", "test2" },
onSelectionChange = "MyNativeComboChange",
onEnter = function()
print("mouse hover over me!")
end,
onLeave = function()
print("mouse left.. phew!")
end
},
anchor = LEFT,
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment