<!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>&nbsp;</DIV>
<DIV><FONT face=Arial size=2>Version: 1.6.16</FONT></DIV>
<DIV>&nbsp;</DIV>
<DIV><FONT face=Arial size=2>Example code:</FONT></DIV>
<DIV>&nbsp;</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>&nbsp;</DIV>
<DIV><FONT face="Courier New" size=2>class Scroller &lt; FXMainWindow<BR>&nbsp; 
def initialize(app)<BR>&nbsp;&nbsp;&nbsp; super(app, "Test", :opts =&gt; 
DECOR_ALL, :width =&gt; 800, :height =&gt; 400)<BR>&nbsp;&nbsp;&nbsp; 
FXButton.new(self, "Go!!!").connect(SEL_COMMAND, 
method(:onGo))<BR>&nbsp;&nbsp;&nbsp; @out = FXText.new(self, :opts =&gt; 
TEXT_AUTOSCROLL|LAYOUT_FILL_X|LAYOUT_FILL_Y)<BR>&nbsp; end</FONT></DIV>
<DIV><FONT face="Courier New"></FONT>&nbsp;</DIV>
<DIV><FONT face="Courier New" size=2>&nbsp; def create<BR>&nbsp;&nbsp;&nbsp; 
super<BR>&nbsp;&nbsp;&nbsp; show(PLACEMENT_SCREEN)<BR>&nbsp; end</FONT></DIV>
<DIV><FONT face="Courier New"></FONT>&nbsp;</DIV>
<DIV><FONT face="Courier New" size=2>&nbsp; def onGo(sender, sel, 
ptr)<BR>&nbsp;&nbsp;&nbsp; 100.times do |i|<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 
@out.appendText&nbsp; "line #{i}<SPAN 
class=919252714-23092008>\n</SPAN>"<BR>&nbsp;&nbsp;&nbsp; 
end<BR>&nbsp;&nbsp;&nbsp; return 1<BR>&nbsp; end<BR>end</FONT></DIV>
<DIV><FONT face="Courier New"></FONT>&nbsp;</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>