Insert Web Images into Lotus Notes Forms

I have images I want to access on a non-Domino web server. I don't want to add these same images to my resource library, but I want to include them in a Lotus Notes form. Here's how I did it ...


1) Add a 1x1 pixel image to the Resource Image Library.

2) In the Notes form, add this image where you want by doing an Create | Image Resource from the designer menu.

3) In the Picture Properties, give it a name in the HTML properties (say WebImage)

4) JSHeader
var frm;

5) In the ON LOAD event...
frm = window.document.forms[0];
window.document.images['WebImage'].src = "http://www.YourAddress.com/image.jpg";

NOTE: This works slick if you can determine your image from another field on the form and insert it into your HTTP address.

This was first published in March 2001

Disclaimer: Our Tips Exchange is a forum for you to share technical advice and expertise with your peers and to learn from other enterprise IT professionals. TechTarget provides the infrastructure to facilitate this sharing of information. However, we cannot guarantee the accuracy or validity of the material submitted. You agree that your use of the Ask The Expert services and your reliance on any questions, answers, information or other materials received through this Web site is at your own risk.