巴比伦文字选择

时间:2009-10-02 22:46:38

标签: api text hook

巴比伦如何识别任何软件中的文本选择?我必须实现这个。

感谢。

1 个答案:

答案 0 :(得分:0)

如果您仅将Babylon用于3D内容而将html用于UI,请尝试window.getSelection()。您可以在mouseup事件上调用它,因为您希望这会在突出显示过程结束时发生。

类似...

const elem = document.getElementById('yourDiv);

let textSelection;

elem.addEventListener('mouseup', ()=> { textSelection = window.getSelection() })

https://developer.mozilla.org/en-US/docs/Web/API/Window/getSelection