quote:
Originally posted by Skarbo
code:
Wnd.ImageElmt_SetImageFile("ImgSound2","icon-speaker"); // not working
I had this exact problem recently, and found that when using ImageElmt_SetImageFile() with Plus! resource images, you need to prefix the image name with "\\":
code:
Wnd.ImageElmt_SetImageFile("ImgSound2","\\icon-speaker");
Hope this helps