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

extending buttons

 [1/6] from: ptretter::charter::net at: 21-Jun-2001 20:08


Anyone have that little tutorial that Carl made about extending buttons. Paul Tretter

 [2/6] from: arolls:bigpond:au at: 22-Jun-2001 14:04


http://www.rebol.com/how-to/btns-cust.html

 [3/6] from: petr:krenzelok:trz:cz at: 22-Jun-2001 6:10


Paul Tretter wrote:
> Anyone have that little tutorial that Carl made about extending buttons.
http://www.rebol.com/how-to/btns-cust.html -pekr-

 [4/6] from: ptretter:charter at: 22-Jun-2001 10:36


exactly what I was looking for. Paul Tretter

 [5/6] from: ptretter:charter at: 22-Jun-2001 7:06


Actually this isnt the same. Carl has posted on the list only the extending of the buttons where you take a button and make its length longer. Paul Tretter

 [6/6] from: gjones05:mail:orion at: 22-Jun-2001 7:30


From: "Paul Tretter"
> Actually this isnt the same. Carl has posted on the list only the extending > of the buttons where you take a button and make its length longer. > > Paul Tretter
Hi, Paul, Is this the one that you are seeking? --Scott Jones From: "Carl Sassenrath" 28-May-2001: 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] ]