带有工具提示的 Java Applet
我有一个包含 JEditorPane
的 JApplet
。 JEditorPane
有一个与其关联的工具提示文本。第一次加载小程序时,工具提示显示正确,但在我单击 HTML 页面中小程序区域之外的某个位置后,工具提示停止工作。我怀疑这与小程序失去焦点有关。
有解决这个问题的方法吗?
此致, 担。
I have a JApplet
that contains a JEditorPane
. The JEditorPane
has a tooltip text associated with it. The first time the applet is loaded, the tooltip shows correctly but after I click somewhere in the HTML page, outside the applet's area, the tooltip stops working. I suspect it has to do with the applet losing focus.
Is there any workaround for this problem?
Best regards,
Dan.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
尝试“(...) 在 html 文档中命名 applet 元素,然后
使用 javascript onfocus 将浏览器焦点发送到元素。”
来源:http: //www.velocityreviews.com/forums/t671396-applet-focus-issue.html
Try "(...) naming the applet element within the html document and then
using javascript onfocus to send the browser focus to the element."
Source: http://www.velocityreviews.com/forums/t671396-applet-focus-issue.html