From: emmim44 on
I have a list of images in this format (
ARCHIVAL\RASTER\TBB008\TB-P&S\image1.pdf,
ARCHIVAL\RASTER\TBB008\TB-P&S\image2.pdf,
ARCHIVAL\RASTER\TBB008\TB-P&S\image3.pdf ...etc)

so when a user clicked the " open selected images ", it should open all the
images at the same pdf window NOT separate pdf window..

Also, I need to know whenever a user clicked "Print all " , it should send all
of the selected files into print queu without opening them or opening a
dialogue box....I am using MX 6.2



...any help will be appreciated

From: " newbie />" on
Have you tried using window.open?

<cfoutput>
<script type="text/javascript">
function myNewWin() {
window.open("http://www.yahoo.com", "myLinkToYahoo");
}
</script>

<a href="javascript:void(0);" onclick="myNewWin();">click me</a>
</cfoutput>

From: emmim44 on
it sounds like you know smth ..Pls spill it out...