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


-- 
To unsubscribe from this list, just send an email to
[EMAIL PROTECTED] with unsubscribe as the subject.

Reply via email to