> Hi Wouter, > > I believe this should solve you "print print print" problem. > It can easily be modified to open a number of files located > in a particular folder or use wildcards, etc, instead of just one. > > Copy this into notepad and save it with a .VBS extension > somewhere and then execute it to your heart's content. > > ' > option explicit > > dim oWordApp, oWordDoc, strWordDoc, nNumCopies > > strWordDoc = "c:\temp\someword.doc" > nNumCopies = 3 > > set oWordApp = CreateObject("Word.Application") > oWordApp.Visible = true set oWordDoc = > oWordApp.Documents.Open(strWordDoc) > > while nNumCopies <> 0 > oWordDoc.PrintOut > nNumCopies = nNumCopies - 1 > wend > > oWordDoc.Close > set oWordDoc = nothing > oWordApp.Quit > set oWordApp = nothing > > ' > > > -Mario Having oWordDoc.Printout Copies:=3 will save a little bit of typing. The next step is to integrate the script into the shell, so when you right-click a Word doc, you get an extra option, like "Print triplicate". The filename gets passed to the .vbs script. To print multiple files, you select (highlight) them all, right-click, "Print triplicate". The script will then run once for each file. In theory FireFox should be scriptable the same way Word is above. Tony -- http://www.piclist.com PIC/SX FAQ & list archive View/change your membership options at http://mailman.mit.edu/mailman/listinfo/piclist