Question #251168 on Sikuli changed:
https://answers.launchpad.net/sikuli/+question/251168
RaiMan requested more information:
To not just make a quick-and-dirty fix, it would help me, to have a list
of the class path just before the first access to any SikuliX features
in your sikulixapi.dll.
this is a code, that prints out the class path content at runtime, as it
is seen by the class loader at that moment (the environment class path
might not help, since I guess in your context the class path is managed
dynamically at runtime):
import java.net.URL;
import java.net.URLClassLoader;
URLClassLoader sysLoader = (URLClassLoader) ClassLoader.getSystemClassLoader();
URL[] urls = sysLoader.getURLs();
for (int i = 0; i < urls.length; i++) {
System.out.printf("%d: %s\n", i, urls[i]);
}
please send me the output to my known mail.
--
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 : [email protected]
Unsubscribe : https://launchpad.net/~sikuli-driver
More help : https://help.launchpad.net/ListHelp