[REBOL] Re: Resizing Panels
From: chris:ross-gill at: 13-Jul-2001 14:53
Hi folks,
Found a workaround...
Anyway, I was looking at this for a way to change the GUI of RIM - opening
up the possibility of skins...
If you have some time, look at http://www.ross-gill.com/test.r on the
desktop (only through 'goto'). None of the networking/functional code was
changed from 1.2.0, only graphics.
- Chris
--
REBOL []
win: layout [
pan: panel 400x100 [
backdrop gray
banner "hi"
]
button "resize" [
pan/parent-face/size: pan/size: 300x100
show win
]
]
view win