This site requires JavaScript, please enable it in your browser!
Greenfoot back
steved
steved wrote ...

2012/6/27

How do you make text with a transparent background?

steved steved

2012/6/27

#
I've seen programs that have text without the colored background. Is there a way to easily do that?
danpost danpost

2012/6/27

#
Any color with an alpha value of 0 will be transparent. I use 'new Color(0, 0, 0, 0)' (transparent black). Check out the Color documentation for more information.
steved steved

2012/6/27

#
Thanks for the help, this works perfectly.
You need to login to post a reply.