2022.2

Table Of Contents
writeastylerule(see"StylingtemplateswithCSSfiles"onpage261)thatsetsitsbackground
imagetotheimagespriteandpositionstheimage.
Foranexplanationandexamplesofthisstylerule,seehttps://www.w3schools.com/css/css_
image_sprites.asp.
l
Dynamically added imagesareloadedinascript.ToretrieveonepagefromaPDFfileina
script,addthepageparametertothefilepathandsetthatasthesourceoftheimage.Hereisan
example(assumingthatthepagenumberisstoredinavariablepageNumber):
var imageStr = "";
var imagePath = "file:///C:/image-collection.pdf?page=" + pageNumber;
imageStr += '<img src="' + imagePath + '">';
results.after(imageStr);
Print Manager
ThePrint Managerprovidesameansofmanagingprintjobsinaprintproductionenvironment.It
providestheabilitytoqueuejobs,tosethot-folderstoallowjobstoruntheinstanttheyarriveinalive
hot-folder,tore-printjobs,topreviewjoboutput,tohaltjobprinting,toorganiseorre-organisethe
sequenceofproductionprinting,tomonitorthecurrentstateofprinters,torestartpausedprinters,and
suchlike.
ThePrint ManagerisprimarilydesignedtoruninconjunctionwithIPDSoutput,asitmustbeusedto
sendIPDSoutputforIPDSprinters.ItcanalsobeusedinconjunctionwithPCLandPostScriptoutput,
butwithlessoptionsavailable.
IPDSprintingrequiresaprint streamandPrintShopMailConnectonlyproducefiles,thustheinter-
mediaryPrint ManagerisrequiredtobridgethecommunicationdividetoIPDSprinters.ThePrint Man-
agerfeedsIPDSoutputdirectlytotheprinterasaprintstream,ratherthanasafile.
NeitherPCLnorPostScriptprintersrequireaprint stream,soboththoseoutputtypescanbesentdir-
ectlytoaprinterfromwithinConnect.However,youcouldopttogeneratespoolfilesfromConnect,and
thenusethePrint Managerapplicationtoprovidesomeextraprintmanagementfunctionality,suchas
organizingjobpriorities,printerqueuesandjobreprints.
ThePrint Managercanbeinstalledstandaloneandcanbeinstalledonmorethanonemachine.
Page 885