我在我的应用程序中使用了 scrolledittext 类,该类在 OL swf 运行时中运行良好,但在 DHTML 运行时中却没有。当我输入滚动编辑文本时,我看不到激活的滚动条。
我正在使用以下代码
<canvas>
<include href="incubator/scrolledittext.lzx" />
<include href="lz/vscrollbar.lzx"/>
<include href="incubator/newvscrollbar.lzx"/>
<include href="incubator/newvscrollbar_resources.lzx"/>
<button name="text">
<handler name="onclick">
canvas.sp.inp.onfocus.sendEvent();
</handler>
</button>
<scrolledittext name="sp" x="50" y="50"
height="300"
width="400"
focusable="true"
>
</scrolledittext>
</canvas>
我是否遗漏了什么或者这是 DHTML 运行时中的错误?