Mailing List Archive: 49091 messages
  • Home
  • Script library
  • AltME Archive
  • Mailing list
  • Articles Index
  • Site search
 

Resizing Panels

 [1/2] from: chris::ross-gill::com at: 13-Jul-2001 13:15


Hi folks, How do you resize a panel? - Chris -- REBOL [] win: layout [ pan: panel 400x100 [ backdrop gray banner "hi" ] button "resize" [ pan/size: 300x100 show pan ] ] view win

 [2/2] 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