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

[REBOL] [View] invisible background

From: ingo:2b1 at: 18-Nov-2003 11:39

Hi /Viewers, I just wrote the following script to create a batch of buttons for teaching website creation, but how do I set an invisible background on these buttons? [REBOL [ Title: "Button Creator" Author: "Ingo Hohmann" ] colours: [ red green blue yellow water white forest snow coffee gold] texts: [ "Home" "About Us" "Info" "Contact" ] repeat c colours [ repeat t texts [ save/png to-file rejoin [ c "-" trim/all t ".png"] to-image layout compose [ btn (reduce c) t ] ] ] ] Thanks for your help! Ingo