What is wrong with this statement of mine, where I replaced a standed "SysatemHappyFace" (and the statement worked) with my own little GIF file, which does not work. I verified the file exists. I tried the slashes in the other direction -- no change -- did not work. And two "nulls" also did not work.
drawImageRelative(0, vBounceHILevel, "d:\alex\open.gif", null, Image.RIGHT | Image.ONTOP);
here are notes from PaperBroker.efs:
// SystemHappyFace is a builtin image type. These are documents in the EFS docs/ref guides
// You can also replace SystemHappyFace with a filepath to a gif/jpg/bmp on your computer
// eg: c:/somefolder/picture.jpg
drawImageRelative(-50, 50, "SystemHappyFace", "EFS:ImageCallBack", null, "ImageTag");
drawImageRelative(0, vBounceHILevel, "d:\alex\open.gif", null, Image.RIGHT | Image.ONTOP);
here are notes from PaperBroker.efs:
// SystemHappyFace is a builtin image type. These are documents in the EFS docs/ref guides
// You can also replace SystemHappyFace with a filepath to a gif/jpg/bmp on your computer
// eg: c:/somefolder/picture.jpg
drawImageRelative(-50, 50, "SystemHappyFace", "EFS:ImageCallBack", null, "ImageTag");
Comment