Skip to content

Instantly share code, notes, and snippets.

@aalmiray
Created August 11, 2009 03:42
Show Gist options
  • Save aalmiray/165611 to your computer and use it in GitHub Desktop.
Save aalmiray/165611 to your computer and use it in GitHub Desktop.
application(title:'fx',
pack:true,
locationByPlatform:true,
iconImage: imageIcon('/griffon-icon-48x48.png').image,
iconImages: [imageIcon('/griffon-icon-48x48.png').image,
imageIcon('/griffon-icon-32x32.png').image,
imageIcon('/griffon-icon-16x16.png').image]) {
gridLayout(cols: 1, rows: 4)
textField(id: "t1", columns: 20)
textField(editable: false, text: bind{t1.text})
fxswingScene {
fxtextBox(columns: 20, id: "fxt", text: bind{t1.text})
}
textField(editable: false, text: bind{fxt.text})
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment