Comment 1 for bug 1335398

Revision history for this message
RaiMan (raimund-hocke) wrote : Re: [IDE 1.1.0] Sikuli script does not load images for relative image reference like click(../images/myimage.png)

.. in filenames are officially not supported generally.

That it works in your case is interesting though. I will check that.

please report complete Sikuli version info (see File -> About) and what system.

to work around this problem, you might either use the ImagePath features or use a variable having:
iDir = "../images/"

and use
click(iDir + "image1.png")

to avoid these internal changes of your script code.