<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<HTML><HEAD>
<META http-equiv=Content-Type content="text/html; charset=us-ascii">
<META content="MSHTML 6.00.2900.3354" name=GENERATOR></HEAD>
<BODY>
<DIV><FONT face=Arial><FONT size=2>I think the TEXT_AUTOSCROLL option in FXText
does not work (last line is not visible)<SPAN
class=919252714-23092008>...</SPAN></FONT></FONT></DIV>
<DIV> </DIV>
<DIV><FONT face=Arial size=2>Version: 1.6.16</FONT></DIV>
<DIV> </DIV>
<DIV><FONT face=Arial size=2>Example code:</FONT></DIV>
<DIV> </DIV>
<DIV><FONT face="Courier New" size=2>#!/usr/bin/env ruby<BR>require
'fox16'<BR>include Fox</FONT></DIV>
<DIV><FONT face="Courier New"></FONT> </DIV>
<DIV><FONT face="Courier New" size=2>class Scroller < FXMainWindow<BR>
def initialize(app)<BR> super(app, "Test", :opts =>
DECOR_ALL, :width => 800, :height => 400)<BR>
FXButton.new(self, "Go!!!").connect(SEL_COMMAND,
method(:onGo))<BR> @out = FXText.new(self, :opts =>
TEXT_AUTOSCROLL|LAYOUT_FILL_X|LAYOUT_FILL_Y)<BR> end</FONT></DIV>
<DIV><FONT face="Courier New"></FONT> </DIV>
<DIV><FONT face="Courier New" size=2> def create<BR>
super<BR> show(PLACEMENT_SCREEN)<BR> end</FONT></DIV>
<DIV><FONT face="Courier New"></FONT> </DIV>
<DIV><FONT face="Courier New" size=2> def onGo(sender, sel,
ptr)<BR> 100.times do |i|<BR>
@out.appendText "line #{i}<SPAN
class=919252714-23092008>\n</SPAN>"<BR>
end<BR> return 1<BR> end<BR>end</FONT></DIV>
<DIV><FONT face="Courier New"></FONT> </DIV>
<DIV><FONT face=Arial size=2><FONT face="Courier New">application =
FXApp.new('Scroller',
'Test')<BR>Scroller.new(application)<BR>application.create<BR>application.run</FONT><BR></FONT></DIV></BODY></HTML>