Is there a way through LS pickup a huge number of photos, and append them to existing documents RT field, but not as attachment, but to display the photo itself.
If I use the EmbedObject in the NotesRichTextItem class, I can only attach the picture but not display it.
I really wouldn’t like to go through 2000 notesdocuments and manually open each JPG-file, copy and paste it into the field…
Any ideas are welcome!
Thanks!
Subject: Embed image from local drive into a RT field, but not as an attachment…
It will flash a lot, but the NotesUIDocument has an Import method which will work. If you needed this on an on-going basis and needed it backend, our Midas Rich Text LSX would do the job handily, as (I imagine) would Image2Notes or rtlib.
Subject: RE: Embed image from local drive into a RT field, but not as an attachment…
Thanks, but I would really like to avoid using a front-end class here since it’s going to be about 200 photos to update… (in the first run). And a thirdparty tool is not an option at this time.
Well, if no one else has anything to add - it seems that I still have to go with the UI class… 
Subject: RE: Embed image from local drive into a RT field, but not as an attachment…
Your other options are to write something yourself using the C API, or to construct a DXL representation of the rich text you require and then import it.
If you DXL-export a few documents that have embedded images, you should be able to see how they are encoded; then, you can take an existing document, DXL-export it, and use the DOM classes to insert the image data. Then import it to replace the old document.