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

RaiMan proposed the following answer:
A full-screen app in Windows 10 is an app, that gets a complete screen
additionally to the normal window area on the desktop.

The App class now works a bit differently than in 1.1.3

Switch debugging on by using
Debug.on(3)
just before the App.open()

You might try another sequence (see the complete App features in the docs)
Debug.on(3)
app = App(maxExecutable)
app.open(10)
if not app.isRunning():
    print "not started", app
    exit(1)
Debug.off()
wait(img.max_viewport)

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

_______________________________________________
Mailing list: https://launchpad.net/~sikuli-driver
Post to     : sikuli-driver@lists.launchpad.net
Unsubscribe : https://launchpad.net/~sikuli-driver
More help   : https://help.launchpad.net/ListHelp

Reply via email to