Te hace falta un Xtra llamado Print-O-Matic. Lo puedes descargar de aquí: http://www.printomatic.com/products.cfm?page=2
Que hago una vez que tengo esto se me bajo los siguientes archivos PMLite. Cnt -PMLite.dir PMLite (este es ayuda) PMLite.reg PMLite.x32 ReadMe.txt Pero como vez ninguno es punto exe yo no se que hacer con esto, endonde los coloo y que script pongo para imprimir, yo soy nuevo en estío de Director explícamelo por favor teagradesco mucho por la ayuda que seguro me brindaras, por favor te ruego tenerme paciencia chao y gracias
Apaga director y pon el que tiene extensión x32 en la carpeta de xtras de director. Abres director y te aseguras que lo ha reconocido en Menu>Xtras. En el botón para imprimir añades el siguiente script: -- if isXtraInstalled("printomatic") = false then -- Alert "The PrintOMatic Lite Xtra is not installed; printing is disabled."&return&return&"Please consult the Read Me file in the PrintOMatic Lite folder for information on how to install PrintOMatic Lite." -- exit -- end if -- put up a wait cursor cursor 4 -- create an instance of the PrintOMatic Lite xtra set doc = new(xtra "PrintOMatic_Lite") -- make sure and object was created setLandscapeMode doc, FALSE if objectp(doc) = 0 then exit -- Name the document SetDocumentName doc, "TEXTO SELECCIONADO" SetTextFont doc, "Frutiger" Append doc, "aquí pones el texto que quieras imprimir o la variable que lo contiene" -- Append all the documentation stuff -- set the cursor back Cursor -1 -- Print or preview -- If word 1 of the text of the member of sprite (the clickOn) = "print" then -- if doJobSetup(doc) then print doc -- end if -- else -- printPreview doc -- end if -- get rid of the object set doc = 0 end