Hi Nick,
Regarding transparency question, I tried something in the alpha value of the constructor to create Color:
I list my findings if it helps you :
This is an
applet. You need to use appletviewer.
Code for applet
Code for html
To see the change that alpha value makes you alter the applet code line 19 as
from
c = new Color(0,0,255,20);
to
c = new Color(0,0,255); and see the result.
I hope I did not answer something you did not ask.
