Anonymous
|
Actually, it is possible to get the 'real' as well as the 'internal' names of attachments through plain vanilla LotusScript. Here is an example: Set rtitem = doc.GetFirstItem( "Body" ) If (rtitem.Type = RICHTEXT) Then Forall o In rtitem.EmbeddedObjects If (o.Type = EMBED_ATTACHMENT) Then o.Name '-- This will contain the 'internal' name of the attached file. o.Source '-- This will contain the 'real' name of the attached file. End If End Forall End If
|