TextField hied frame

Is it possible to hide the frame of a TextField?

thxs

You can hide it using QPalette and Color.clear:

(
p = QPalette();
p.setColor(Color.clear, \window, \active);
p.setColor(Color.clear, \highlight, \active);
q = QPalette();
q.setColor(Color.red, \window, \active);
q.setColor(Color.red, \highlight, \active);

w = Window("TextField Example", Rect(100, 500, 400, 120));
b = TextField(w, Rect(150, 10, 100, 20));
c = TextField(w, Rect(150, 40, 100, 20));
d = TextField(w, Rect(150, 70, 100, 20));

b.palette = p;
c.palette = q;
w.front
)

Best,
Paul