[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[sc-dev] SCTextView bugs



Execute the following, scroll down, and then click on the post window. The text view scrolls back to the top and the scroller disappears.

Also it often seems to happen the text view doesn't wrap correctly, and the text is hidden behind the vertical scroll bar.

S.

(
w = SCWindow.new("Text View Example",Rect(100,SCWindow.screenBounds.height-400, 520,300)).front;
t = SCTextView(w.asView,Rect(10,10, 500,200));
t.hasVerticalScroller_(true);

t.open("Help/Help.html");  // load an html file
)