Shared File Resource

I need to open several (4-6) files that have been saved as shared resources using formula - can use LS if needed but I am not too familiar with script.The tricky part is that I need to do this in one window in a web application so that all the opened files can be printed at once.

Currently I am trying to do this from an action button on a form.

Using the @URLopen function, I can get a single file to open but cannot seem to figure out how to open multiple files.

Can someone point me in the right direction or tell me if this is not possible?

TIA

Subject: RE: Shared File Resource

It’s not possible. To display more than one URL in a window (and every one of those files has its own URL), you need to use either a frameset or a document (web document, that is, not necessarily a Notes document) containing a number of iframes. In both cases, the result will not be a contiguous printable document, you’d still need to print the frames individually to get anything like a desirable result. (You can create a contiguous document, sort of, using JavaScript if the files are of the right types, but then trying to manage page breaks and so on becomes a pain in the patook.) IE used to have an option to print all linked documents in one go, and I’m sure there’s an extension for Firefox that will do that sort of thing, but you’d need to rely on the client having that capability. The only safe method is to give users multiple links and tell them to use them.

Subject: RE: Shared File Resource

Thanks Stan.I sort of figured it was impossible. Thought I’d check first though.