← Back to team overview

sikuli-driver team mailing list archive

Re: [Question #630569]: hide cursor --- not possible with builtin features of SikuliX

 

Question #630569 on Sikuli changed:
https://answers.launchpad.net/sikuli/+question/630569

digitalbise posted a new comment:
I restored the system reinstalling everything, with robotframework-
sikulilibrary taken by source and compiled by maven to have the last
version and the problem look to be solver.

in order to hide cursor you can try something as

Hide Mouse Cursor
	Execute Javascript			window.style = document.createElement("style");
	Execute Javascript			window.style.appendChild(document.createTextNode(""));
	Execute Javascript			document.head.appendChild(style);
	Execute Javascript			window.style.sheet.insertRule("* { cursor: none !important }");

-- 
You received this question notification because your team Sikuli Drivers
is an answer contact for Sikuli.