(
w = SCWindow.new;
c = SCCompositeView(w,Rect(30,30,300,300));
c.relativeOrigin = true;
c.background = "">Color.blue;
// where it should be
d = SCStaticText(c,Rect(0,0,40,40));
d.background = "">Color.red;
s = SCScrollView(c,Rect(0,0,40,40));
s.background = "">Color.yellow;
//s.autohidesScrollers = false;
// inside the scroll
t = SCStaticText(s,Rect(0,0,20,40));
t.background = "">Color.green;
u = SCStaticText(s,Rect(20,20,20,20));
u.background = "">Color.black;
w.front;
)