Is it possible to just show an attachments name, and not the icon in a Rich Text field?

Is it possible, in a Rich Text field to show just the name of the attachment and not show the icon and still have the file name act like an actual attachment?

I know there are @ functions to show you just the attachment names, but these functions do not allow you to click on the name and have it act like an actual attachment.

Thanks,

Chad

Subject: Is it possible to just show an attachments name, and not the icon in a Rich Text field?

A) Hide it in the rich text field.

B) Have a computed for display field, named whatever the heck you like, with a formula such as:

@If(!@Attachments; @Return(“<td colspan="3">There are no files attached to this page.”); “”);

@Implode(“<td width="10"><img src="/icons/vwicn005.gif"><a href="/” + webdbname + “/” + @Text(@DocumentUniqueID) + “/$file/” + @AttachmentNames+ “" target="_blank">”+@AttachmentNames + “” + @Text(@Round(@AttachmentLengths/1024)) + " (Kbytes)";@NewLine)

Subject: Is it possible to just show an attachments name, and not the icon in a Rich Text field?

It is perfectly possible from the point of view of rich text and I have done it before from the C API, but there is no capability provided to do it from LotusScript, formula language or Java. Not sure if that helps…