I am brand new to Red/Rebol. I love it so far, I am experimenting with the GUI system.
I am trying to align some buttons in a vertical column so to speak.
This is what I have so far
Red [ Title: "Editor" needs: 'view]
view [ size 800x600 title "Save Notes"
t: text ""
a: area 500x500 black
button "Click" [t/text: "Red is good !" ] return
text "" button "Close" [quit] return
text "" button "Save" [save %notes.dat a/text t/text "Saved"]
]
This is what it creates, which I have annotated with what I am trying to do: