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

[REBOL] Extending button images.

From: carl:pacific at: 28-May-2001 13:29

Shows how to reuse a button image but keep that nice look.... Let me know if it works ok on your system. REBOL [] if not all [view? system/version >= 1.2.0] [alert "Update now." quit] img: load-thru/binary http://www.rebol.com/how-to/graphics/button.gif view layout [ backcolor white image img "Orig" image 140x38 img "Long" effect [extend] image 200x38 img "Longer" effect [extend] image 70x70 img "Square" effect [extend] image 200x70 img "Big Button" effect [extend] image 200x38 img effect [extend 3x0] ]