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

    Status: Open => Answered

RaiMan proposed the following answer:
ok, sorry for the inconveniences.

-- 1. with the new jar, you can delete the libs folder. It is no longer
created in the folder of the sikulixapi.jar, but in a folder Sikulix in
the folder pointed to by the environment variable %APPDATA%

--2. Screen screen = new Screen();
is this the first statement executed, that references SikuliX stuff?
Before any usage of SikuliX classes put:
Debug.on(3);

and run again.

I cannot recreate the problem with a test consisting only of this:

import org.sikuli.script.*

public class Test {
  public static void main(String[] args) {
    Screen s = new Screen();
  } 
}

the version with Debug:

import org.sikuli.basics.Debug;
import org.sikuli.script.*

public class Test {
  public static void main(String[] args) {
    Debug.on(3);
    Screen s = new Screen();
  } 
}

You received this question notification because you are a member of
Sikuli Drivers, which 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