Print PDF via online subscription direct

How can you create a PDF using adobe online subscription directly from the "print" function?

Hi KCM1977,
You'll need to install the CreatePDF Desktop Printer - please see: http://forums.adobe.com/docs/DOC-1495
Please let us know if you have any questions.
Thanks!
-David

Similar Messages

  • Direct Printing PDF via Acrobat 8.0 under Lion

    Direct printing a PDF via Acrobat 8.0 worked under Snow Leopard but no longer under Lion. I have a relatively old installation of CS3 on my MacBookPro and wanted to print a pages document with 12 x 12 cm size onto an A4 page (with integrated cutting marks) - this is not possible with the integrated PDF printer in Lion an so i decided to use Acrobat 8.0.
    The Console says the following:
    Process:         DistillerIntf [30793]
    Path:            /Applications/Adobe Acrobat 8 Professional/Acrobat Distiller.app/Contents/MacOS/DistillerIntf
    Identifier:      DistillerIntf
    Version:         ??? (???)
    Code Type:       X86 (Native)
    Parent Process:  pdf800 [30788]
    Date/Time:       2011-11-05 13:18:36.563 +0100
    OS Version:      Mac OS X 10.7.2 (11C74)
    Report Version:  9
    Crashed Thread:  7
    Exception Type:  EXC_BAD_ACCESS (SIGBUS)
    Exception Codes: KERN_PROTECTION_FAILURE at 0x0000000000000000
    VM Regions Near 0:
    --> __PAGEZERO             0000000000000000-0000000000001000 [    4K] ---/--- SM=NUL  /Applications/Adobe Acrobat 8 Professional/Acrobat Distiller.app/Contents/MacOS/DistillerIntf
        __TEXT                 0000000000001000-0000000000003000 [    8K] r-x/rwx SM=COW  /Applications/Adobe Acrobat 8 Professional/Acrobat Distiller.app/Contents/MacOS/DistillerIntf
    Has anybody an idea how to solve this problem. Of course i posted this error on the Adobe Help forums but since these guys only want to sell the newest Suites if have no hope, that somebody will respond to my question - and i think it is a Lion issue (CUPS problem).
    http://forums.adobe.com/thread/921666

    This is right, but since the upgrade to Lion was a relatively big one (with many functionalities that i have be missing before) i think i will not go back just to regain a normal-working direct PDF printing. Nevertheless i think, if the very old CS3 worked until Snow Leopard it would be very easy for an Apple Engineer to figure out, which trick would allow Acrobat to direct print again - i don't think the underlying CUPS has changed very much - also i found a lot of similar error reports on the web (mostly Acrobat related after updates from System ) which were solved via correcting some rights in the library (this didn't do the trick for me ...)
    Best problem solving would be, that Adobe Software gets cheaper - i have installed the newest Aperture, iWork, Office, iLife, Mindmanager, ... - if you are not a student but a hobby worker these software packages are quite affordable ...

  • Set filename of printed PDF via script

    Hi folks!
    I have a little problem with generating a PDF. First my Workflow:
    I have a InDesign document with 6 pages. This document is merged with a databasefile containing 100 records. After merging it, we have to generate a PDF file. This PDF file is opened within acrobat. Within the document, I'm searching for an ID each record has so I can split the document to 100 files (each with 6 pages) and name it by the ID I found.
    The script within Acrobat is finished and working. I thought, the InDesign script is finished ,too. But I was wrong -.-
    I merged the databasefile with the document and exported it as PDF. But after exporting, we noticed that the script within Acrobat isn't finding the adressheader where the ID is in. The script only noticed the text after that header. The result is, that Acrobat get's always "null" as ID
    If we print the PDF with our PDFprinter, the header could be read by our Acrobat script. I don't know why this is... But now I changed the script to print the files via our PDF printer. Unfortunately I can't set a name for my exported file - do you know if there is a possibility to print PDF's without prompting after each one and with a via script given name?
    Here you can see the old script for InDesign and right after it, the Acrobat sript. Maybe I made some mistake by generating my PDFexport and don't need to use the printer?
    INDESIGN SCRIPT:
      * prompts filebrowser and stores name and path of file in variable
    var sourceDocument = File.openDialog("Bitte Indesign-Dokument auswählen", "*.indd", false);
      * stores only prefix of filename for use as new filename
    var newName = sourceDocument.name.substr(0,  sourceDocument.name.length-5);
      * stores folder where file is stored
    var dbSourceFolder = sourceDocument.parent+"/";
      * prompts for databasefile where generating should begin
    var dbstartfile = File.openDialog("Bitte Start-Datenbankdatei auswählen", "*.txt", false);
      * gets basename of databasefile
    var dbstartfilename = dbstartfile.name.slice(0, dbstartfile.name.search(/_Teil+/));
      * gets number of first databasefile
    var i = dbstartfile.name.slice(dbstartfile.name.search(/_Teil+/)+5).slice(0, -4);
      * generates path name and name of first databasefile to use
    var dbSource = dbstartfile;
       *set PDF preset for generating PDF
    var PDFPreset= app.pdfExportPresets.item("GAG-PDF");
       * stops throwing of alerts
    app.scriptPreferences.userInteractionLevel = UserInteractionLevels.NEVER_INTERACT;
    // if databasefile isn't existing message will be thrown
    if( dbSource.exists == false ) {
        // restart of alert throwing
        app.scriptPreferences.userInteractionLevel = UserInteractionLevels.INTERACT_WITH_ALL;
        alert("Datei " + dbSourceFolder+dbprefix+"_Teil"+i+".txt konnte nicht gefunden werden! \n\rBitte starten Sie den Vorgang erneut und geben Sie die richtige Datenbankdatei an." );
    // else process starts
    else {
        while(  dbSource.exists == true ) {
            // opens source indesign document without showing it
            mergeDocument = app.open(File(sourceDocument), false);
            // sets which databasefile should be used for data merge
            mergeDocument.dataMergeProperties.selectDataSource(File(dbSource));
            // starts merging of indesign document and database file
            mergeDocument.dataMergeProperties.mergeRecords();
            // exports generated document as PDF file
            app.activeDocument.exportFile(ExportFormat.pdfType, File(sourceDocument.parent+"/"+newName+"_Teil"+i+".pdf"), false, PDFPreset);
            // closes opened indesign document
            mergeDocument.close(SaveOptions.no);
            i++;
            // change filename of database file to get next file
            dbSource = File(dbSource.parent+"/"+dbstartfilename+"_Teil"+i+".txt");
    // restart of alert throwing
    app.scriptPreferences.userInteractionLevel = UserInteractionLevels.INTERACT_WITH_ALL;
    alert("PDF-Generierung abgeschlossen!");
    ACROBAT SCRIPT:
    * Path where files should be saved
    * Special Characters like spaces should be escaped with \
    * If you want to modify the folder, use following form:
    * "/Driveletter/Foldername/../LastFolderName/"
    * Make sure not to forget the / before and after the location
    var filepath = "/c/pdf_split_test/";
    * Number of expose pages - feel free to change
    var pageType = app.prompt("Bitte geben Sie die gewünschte Seitenzahl der Exposés an.", "");
    alert(pageType);
    * regular expression for search
    var idNumber = /08\d\d\d\d\-\d\d\d\-\d\d\d\d\d-\d\d\d-\d\d/g;
    * if possible this function extracts the searched number as string
    * @param rematch string which should be searched in document
    * @return null if rematch is not found or string if rematch is found
    function ExtractFromDocument(reMatch) {
      try {
             var Out = new Object();
             for (var i = 0; i < 1; i++)
              numWords = this.getPageNumWords(i);
              var PageText = "";
              for (var j = 0; j < 30;j++) {
                  var word = this.getPageNthWord(i,j,false);
                  PageText += word;
              var strMatches = PageText.match(reMatch);
              if (strMatches == null) continue;
          return strMatches;
      } catch(e)
          app.alert("Processing error: "+e)
    * tries to load given filename (extracted number)
    * @param filename string of file which should be checked
    * @param n number to iterate while checking for files
    * @return true if file exists or false if not
    function checkIfFileExists(filename, n) {
        var existingDoc = false;
        try {
            if( n == 0) {
                var checkDoc = app.openDoc(filepath+filename+"-000.pdf");
            } else {
                var checkDoc = app.openDoc(filepath+filename+"-000_"+n+".pdf");
            checkDoc.closeDoc();
            existingDoc = true;
        } catch (e) {
        if( existingDoc == true ) {
            n = n+1;
            n = checkIfFileExists(filename, n);
        return n;
    var pageAmount = this.numPages;
    for( i=0; i<pageAmount; i+pageType ) {
        var filename = ExtractFromDocument(idNumber);
        fileExistence = checkIfFileExists(filename, 0);
        if(fileExistence != 0) {
            this.extractPages({nEnd:(pageType-1), cPath : filepath+filename+"-000_"+fileExistence+".pdf"}); 
        } else {
            this.extractPages({nEnd:(pageType-1), cPath : filepath+filename+"-000.pdf"});
        this.deletePages({nStart:0, nEnd: pageType-1});

    Hi,
    I have a little problem with generating a PDF. First my Workflow:
    I have a InDesign document with 6 pages. This document is merged with a databasefile containing 100 records. After merging it, we have to generate a PDF file. This PDF file is opened within acrobat. Within the document, I'm searching for an ID each record has so I can split the document to 100 files (each with 6 pages) and name it by the ID I found.
    Why you don't export 6-page PDFs directly from InDesign?
    robin
    www.adobescripts.co.uk

  • Printing PDFs via cups ignores job attributes

    I'm trying to print PDF documents from Linux (using CUPS to translate the PDF to Postscript before sending it to the printer). However, the print job attributes (number of copies, paper size, etc) are all being lost somewhere in the translation.
    I'm using Red Hat 3 (enterprise), CUPS 1.1.17 and JDK 1.4.2_09
    Has anyone seen a problem like this?
    I've run similar code on windows. It doesn't print PDFs, but the code that sets the attributes is the same. I don't have a problem there.

    I'm trying to print PDF documents from Linux (using CUPS to translate the PDF to Postscript before sending it to the printer). However, the print job attributes (number of copies, paper size, etc) are all being lost somewhere in the translation.
    I'm using Red Hat 3 (enterprise), CUPS 1.1.17 and JDK 1.4.2_09
    Has anyone seen a problem like this?
    I've run similar code on windows. It doesn't print PDFs, but the code that sets the attributes is the same. I don't have a problem there.

  • Printing PDF via Adobe livecycle from R/3 ECC to local printer

    Hi,
    I am working on an Adobe Form via SFP transaction on ECC 5.0 and an Adobe Livecycle 7.1. I can create PDFs, and send them to spool through a LPDF printer defined in SPAD as a PDF1 type. This is ok to get PDF in spool but I want to send these PDF to my local windows printer through SAPLPD.
    I get an error message in SAPLPD :
    Job 0009Jjkn.TD1 (raw) started on printer SKDFMLDSF
    (11:06:48) Error: The printer SKDFMLDSF is unknown to Windows Print Manager.
    (11:06:48) The following printers are currently defined:
    (11:07:18) Printer = MICROSOFT OFFICE DOCUMENT IMAGE WRITER
    (11:07:18) Warning: Printer name contains spaces.
    (11:07:18) Please rename printer, before using it from R/3 or UNIX!
    (11:07:18) Cannot do OpenPrinter SKDFMLDSF. Text = Overlapped I/O operation is in progress.
    (11:07:18) Error: BG: printfile failed, msg = 808 SAPLPD:Windows Problem, siehe SAPLPD Protokoll
    Does anyone know how I can send a spool containing the generated PDFs to my local printer ???
    Thanks,
    Nicolas

    Hi Nicolas,
    To avoid problems with SAPLPD you can print the PDF using the control technology.
    Please read the SAP note
    821519 Front-end printing with control technology for details. 
    Regards,
    Víctor.

  • Can't print pdf via CUPS / Samba

    I have a printer set up on a Linux server, which is shared in an office of Windows machines. It works flawlessly, I can print anything except for pdf files. On the client side there are no visible error messages or anything, but nothing happens, and no trace of the printing command in CUPS logs.
    Locally, from the Linux machine pdf's can be printed without any problem, but I can't do that via network from Windows machines.

    Operating system?  Reader version?  Can you post a screenshot of that unavailable option?

  • PIXMA MG3220 Error when printing pdf

    I get a "Status" = "Error" when i try to print Adobe PDF files.  I get the error from either Adobe Reader or Safari (or any other App that lets me open a pdf).  I can print pdf files via "Preview" however.
    OSX 10.7.5
    Intel Core 2 Duo 2.4 GHz

    Hi taylorce,
    So we can better assist you, please reply with the following information:
    1.  Are the PDF files that you are unable to print all being printed from an online source directly, or are they also PDF files that are saved on your computer?  If from an online source, if you download the files and save them to your computer, are you able to print them successfully? 
    2.  Have you tried installing the latest version of Adobe Reader to see if this will resolve the issue?
    We look forward to hearing from you!
    If this is a time-sensitive matter, additional support options are available at Contact Us.
    Did this answer your question? Please click the Accept as Solution button so that others may find the answer as well.

  • Printing PDF's in Java

    Hi,
    I am in the process of trying to silently print PDFs via java in a Windows NT 4.0 environment. The solution so far has been to convert then into postscript files using pdftops (co/ xpdf) and then simply send the postscript file to the printer using the java PrintService.
    Which would work fine except for the fact that I need to print envelopes (DL and C4) (not a problem but for the fact that some of the printers only have Postscript Level 2 Emulation and don�t recognize the fact that an envelope is being printed).
    And I need to be able to print to a specific (i.e. default) tray on a network printer, and using the java PrintService uses the wrong tray.
    Tried using JPedal and JPrint, and the get past the tray problem but haven�t tried them with the envelopes yet � can�t see that being a problem though.
    Big question is does anybody have experience with print files from java to a specific tray on a network printer.
    Thanks
    Richard Peters

    duffymo
    Acrobat 5.0 when I open a pdf on my system.
    This is exactly the code currently in my program.
    I just ran it again to test it and it works.
    1) The application has an ugly square gray box on the screen while printing.
    2) The Acrobat reader starts on the task bar.
    3) For the application to continue I have to expand the reader and close it myself.
    public void actionPerformed(ActionEvent e) {
      String selectedDocument = SelectedDocument();
      if (selectedDocument != null) {
        try {
          String command = "C:\\Program Files\\Adobe\\Acrobat 5.0\\Reader\\AcroRd32.exe /t "+selectedDocument+" \\\\CONTROL\\HP LaserJet 4L";
          Runtime rn = Runtime.getRuntime();
          Process process = rn.exec(command);
          process.waitFor();
        catch (Exception pEX) {showSystemError("Unable to print document.", selectedDocument, pEX, false);}
    }It is not what I wanted to do - I wanted to do the print
    internally in the program.
    rykk

  • How can I retain hyperlinks while saving a webpage as PDF via Print?

    How can I retain hyperlinks while saving a webpage as PDF via Print?
    This is the title of an apple forum question, and it is a bug in both Safari 5.1.3 and under, and I find it to also occur in Firefox browser (at least 9.* 10.*, 11.0), running on Lion OS (10.7.2, 10.7.3). See:
    https://discussions.apple.com/thread/3212301?start=0&tstart=0
    Under the newer Mac OS mentioned, and Firefox 10.2, 11.0, 9.*, if I select:
    File -> Print -> PDF -> Open PDF in Preview"
    (and view / save the PDF in Preview, you will see none of the links in the original web page are active
    or using
    File -> Print -> PDF -> Save as PDF...
    same problem. Try this using any Wikipedia page, for example.
    When this problem was posed in Apple forums, by a user of the Safari browser, it was found to be a bug (since Aug 2011) fixed in a Safari browser build 5.1.4 circa Jan 2012. I tried the newer Safari browser and sure enough the problem went away (except that links embedded in the PDF no longer appeared as blue text - ARGH - but "hover over" with the cursor showed the link and clicking the link in Preview viewer activated the link in a browser window).
    So I post this to the Mozilla community, please fix this 'cause I don't want to have to switch over to Safari browser every time I want to archive a PDF with active links!!!!
    P.S. I did a spot-check and with the newer add-on Enjoy Reading 1.0.1 and FF11.0. When the Enjoy reading formatted version appears in the browser window, all URLs/links are preserved and highlighted in blue, but when I print that browser window as PDF, the links are dead (don't work) even though they appear in blue in the PDF.
    So, what's going on, can the Safari fix be researched and applied to FF?
    Also, on some forums, people are responding, Well, try installing Acrobat reader. Well, I don't want to, Preview reader has worked fine for me for years.

    Thanks jscher2000.
    RE: -- '''Generally speaking, PDF converters that work by intercepting a print job do not have access to the URLs behind links in the page.''' --
    I cannot say I agree. I could email you a PDF clipping or two (generated from Safari on Mac OS, in its native capability with no add-ons) that shows you otherwise. When I used PC platforms I did have to install PDF converters (tried both free and expensive ones) that did what I describe.
    I cannot try the add-on you mention, '''Print Pages to Pdf.''' in Firefox. It shows in my browser and Mac OS platform "Not available for your platform." So I am guessing it was written for the PC version of Firefox.
    The Mac OS has had a native PDF-creation functionality for as many years as I have been using it; I used PC prior to that, Win3.1 through XP and NT. And on my PC, I bought (and at work, my employer bought $$$, I had to justify three levels up to management the ability to create PDFs on my work PC) some Adobe functionality to CREATE pdf's (readin's free and easy, makin' em's costly on the PC).
    I've gone and dug through some of my (Mac) doc and clipping archives, and I find that stuff I created after about Dec 2008 or so seems to eliminate all link functionality. When viewed in the Apple native "Preview" application (sort of Apple's equivalent to Adobe Acrobat reader, ships with the OS): link tags are highlighted/tinted, clicking a link opens a (default) browser and takes you there; hover-over the tag text shows the actual link. (Of course, not all old links are still VALID or point to the desired source.)
    I could, in Safari or FF browser window and with no add-ons or Adobe paid products whatsoever, use the native OS method to create PDF's from any application (word processor, spreadsheet, browser, etc) via the menu File -> Print -> Save as PDF menu and create a PDF that had active hyperlinks. In Apple OS Lion 10.7.3, I still can't when it uses this broken WebKit interface, links are "dead" as a doornail until a fix is distributed in WebKit for a future Lion release. It seems this functionality died at least as far back as Leopard OS 10.6.8, but don't quote me on that. Also, my version of Pages 2009 version 4.1(923) (sorta like Word) STILL creates a PDF document that preserves (1) text hyper-links within the document, and (2) web links (in the PDF) that open the browser. I just made a test document.
    When all you can see in the PDF is the tag text, there is nothing to copy-paste to follow any link. Also, hypertext links are often used by authors to create links to other points in a document: now even *that* is broken in the PDF version of the documents I retrieve from the web and print from FireFox (Broken in Safari 5.1.3 and earlier but fixed in 5.1.4).
    Try this on the PC, in your browser and print a news clipping as PDF, do the links in the PDF work? What products do this, and what don't? I would bet the machine with a full Adobe suite this will work flawlessly. (Why should a PC user have to pay hundreds of $ to create this functionality in what I thought was an open standard (PDF)? But that's talkin' religion, let's not start that.)
    Some folks might say,
    go online and find the original source doc in your browser. Or,
    go and add those links manually using the Preview edit add-link capability (hunh? no thanks) , or
    save each item worth saving as an HTML archive instead of a PDF (argh, creating a whole directory in the process, I might add, including ads). Or,
    who needs PDFs, everything is online.
    Or, buy some Adobe product.
    I think they miss my point. This is a real strange dumbing-down of archival PDF documents, or at least a destruction of the ability to use PDF as an archive that retains its links and references.
    C.F. the guy who has archives of scientific papers, and the old material all cross-references nicely but after date X there are no working links.

  • Printing PDF report directly to printer, not using orarrp utility

    The orarrp utility works only with Windows machines and it
    requires installation on both the client machines and servers to
    support. We need a more general solution.
    Adobe has a java application/applet/javabean (and support
    classes) to view PDF, and it is easy to write a java driver
    which can be used in place of the orarrp utility. However,
    Adobe's Java Viewer is extremely slow, does not produce quality
    output, and is explicitly not supported by Adobe.
    My question then relates to Reports. When the Report server
    returns a PDF in the Previewer, I'm expecting the JINITIATOR,
    used by Forms, is also used to support the Report frame and
    functionality, including eventual printing. If this is the case,
    is there not a set of classes, downloaded with Jinitiator, which
    support the fonts, and printing of PDF to locally attached
    printers?
    And if so, shouldn't we, in Java, be able to make use of these
    classes and their APIs to print PDF files directly to locally
    attached printers without the need for Previewing first?

    within a forms trigger:
    1. generate the report
    2. copy from iAS to local
    like: webutil_file_transfer.url_to_client()
    3. print.exe /d:printer filename (for windows OS)

  • Orarrp can't print pdf file directly to printer

    oracle remote print utility (orarrp) can't print pdf file directly to printer.
    we expect orarrp utility can handle ".rrpa" file (i.e. pdf file generated on the application server) by directly print the file to the client's printer, i.e. invoke the acrobat reader on the client side, display the the printer selection dialogue, after confirmation print the pdf file, then the acrobat reader close automatically nicely.
    However we are disappointed as the acrobat reader startup and display the pdf file content but does not print and does not close.
    After testing the problem several times, there are some findings:-
    Finding (A):-
    (a) for the success of direct printing of pdf file, a physical path must be provided; we have tried 2 methods:
    1) using drag & drop to copy the pdf file directly to the browser
    2) open pdf file in the browser directly using browser menu-->File-->Open.
    (b) for the failure of direct printing, a virtual path is involved and we have also tried 2 methods:
    1) when web.show_document() is used
    2) enter the url to the URL bar of the browser,
    eg. http://appsvr.com:7777/report/test_printout/APPSVR1094707.rrpa (this is a virtual path/url)
    Finding (B):-
    (a)when the physical path is used, a temporary pdf file is generated in the same directory where the rrpa file exists in the application server,
    e.g. in application server: d:/printout/yyy.pdf is generated for d:/printout/xxx.rrpa when direct print occurs
    (b) however when the virtual path is used, there is no such temp "pdf" file generated and direct print failed.
    May be when virtual path is used, orarrp utility don't know where to generate the temp "pdf" so direct print doesn't occur.
    So, anyone has similar experience or further queries or has solutions, please join.
    Thanks for your attention.

    Hi,
    It is really late to give response this post. But still who ever refering to this post for the same issue this solution is useful for achieving same in background:
    Even same can be used in smartforms, for getting spool request in PDF format as well which will decrease the size of file when printing in SAP printer.
    ct_tline is PDF output:
    DATA: lv_pdfsource TYPE xstring.
    FIELD-SYMBOLS:<p> TYPE x. " <p> type any.
    LOOP AT ct_tline INTO cs_tline.
      ASSIGN cs_tline TO <p> CASTING TYPE x.
      CONCATENATE lv_pdfsource <p> INTO lv_pdfsource IN BYTE MODE.
    ENDLOOP.
    * ->Create spool request in PDF format
    CALL FUNCTION 'ADS_CREATE_PDF_SPOOLJOB'
      EXPORTING
        printer  = 'LOCL'            "Printer name supporting PDF device type
    *   DEST     =
        pages    = 1
        pdf_data = lv_pdfsource        "XSTRING internal table
    *   NAME     =
    *   SUFFIX1  =
    *   SUFFIX2  =
    *   COPIES   =
    *   PRIO     =
        IMMEDIATE_PRINT         = 'X'
    *   AUTO_DELETE             =
    *   TITLELINE               =
    *   RECEIVER =
    *   DIVISION =
    *   AUTHORITY               =
    *   LIFETIME = '0'
    * IMPORTING
    *   SPOOLID  =
    * EXCEPTIONS
    *   NO_DATA  = 1
    *   NOT_PDF  = 2
    *   WRONG_DEVTYPE           = 3
    *   OPERATION_FAILED        = 4
    *   CANNOT_WRITE_FILE       = 5
    *   DEVICE_MISSING          = 6
    *   NO_SUCH_DEVICE          = 7
    *   OTHERS   = 8
    IF sy-subrc <> 0.
    * Implement suitable error handling here
    ENDIF.

  • I am using Numbers app for the ipad and it has been working absolutely fine but now, when I want to email a spreadsheet as a PDF via the 'share and print' option, the file now doesn't appear as an attachment to the recipient. Any ideas please?

    I am using Numbers app for the ipad and it has been working absolutely fine but now, when I want to email a spreadsheet as a PDF via the 'share and print' option, the file now doesn't appear as an attachment to the recipient. Any ideas please?

    Hi mafiose15,
    Thanks for visiting Apple Support Communities.
    Restoring your iPod to factory settings is the best way to try and get it back to working order. You can use the instructions below to restore it:
    How to restore iPod
    Verify that you have an active Internet connection, because you may need to download new versions of the iTunes and iPod Software.
    Download and install the latest version of iTunes if necessary.
    Open iTunes. Connect your iPod to your computer using the USB or FireWire cable that came with your iPod.
    After a few moments, your iPod will appear in the Source panel in iTunes.
    Select your iPod in the Source panel. You will see information about your iPod appear in the Summary tab of the main iTunes window.
    Click Restore.
    If you are using a Mac, you will be asked to enter an administrator’s name and password.
    A progress bar will appear on the computer screen, indicating that stage one of the restore process has begun. When this stage is done, iTunes will present one of two messages with instructions specific to the iPod model you are restoring.
    Disconnect iPod and connect it to iPod Power Adapter (typically applies to older iPod models).
    Leave iPod connected to computer to complete restore (typically applies newer iPod models).
    During stage two of the restore process, the iPod displays an Apple logo as well as a progress bar at the bottom of the display. It is critical that the iPod remain connected to the computer or iPod power adapter during this stage.
    Note: The progress bar may be difficult to see, because the backlight on the iPod display may be off.
    After stage two of the restore process is complete, the iTunes Setup Assistant window will appear. It will ask you to name your iPod and choose your syncing preferences, as it did when you connected your iPod for the first time.
    You can find the instructions in this article:
    Restoring iPod to factory settings
    http://support.apple.com/kb/ht1339
    All the best,
    Jeremy

  • I have an HP LaserJet 8150N that I am trying to get connected via ethernet cable directly to my iMac. I always had this printer connected via a network so I don't know if I am able to connect directly with a cable since it is a network printer.

    I have an HP LaserJet 8150N that I use for my work and I have had this printer for ever and it is one heck of a work horse! I am trying to get it connected via ethernet cable directly to my iMac. I always had this printer connected via a network so I don't know if I am able to connect directly with a cable since it is a network printer. I have tried to reconfigure the printer using the JetDirect menu giving it a new IP address but still no luck. If anyone could help me through this issue I would appreciate it.

    moonlightcaravan wrote:
    Second, seeing "connecting" and connection failed is normal. You must click on "Connect As" in the Finder window and then enter the username and password for the admin account on the other computer. That should fix things.
    Thanks for responding.
    When does clicking on "Connect As" happen in the process above?
    After step six? Seven?
    After the connection has failed?
    Is this the FInder window that shows the icon of the computer you want to copy the file from?
    You should see "Connect As" in the Finder near the top right of the window as shown below:
    !http://blog.brothersoft.com/wp-content/uploads/2008/11/howto_copy_files_to_or_from_your_iphone02.jpg!

  • PDF form online but when submitted via email, received as XML

    I'm trying to include a pdf form, created in Designer, on my website where guests can fill out the form and then hit the submit button and the form is emailed to me. Currently, I am linking to the form like it is another web page.
    When the form is emailed to me, it is in the XML format. Once the file is opened, it gives me instructions on how to view it. It says to open the original pdf form and somehow place the xml data into it. Isn't there an easier way?
    I would like to receive the "filled out" form as a pdf via email so I can just open it up with reader and print it. Others, that are more technically challenged will be receiving the "filled out" form also. The easier the better. thanks in advance

    A PDF that has been Reader Extended activates latent Adobe Reader functionality such as save filled in forms, annotate, sign, and submit interactive Adobe PDF documents. For more info see
    http://partners.adobe.com/public/developer/livecycle/readerextensions/devcenter.html
    Denver
    Adobe Enterprise Support

  • Print pdf file directly from a folder, Adobe Reader X in  Windows Server 2003

    In previous versions of Adobe Reader we were able to print pdf files groupwise directly when selected in a folder.
    Now I've installed Reader X on the Windows Server 2003 environment. Logged in as administrator I can still select <Print> by selecting the right mouse button in a folder. Logged in as a user, this is not available.
    I checked user-rights and permissions and made sure they have full control.
    Someone who can help us in this matter?
    Thanks

    Thanks for your reply.
    The file menu doesn't show the print option either. We used to work this way, after installing the 9.0 and Reader X version, this option has disappeared from both the File menu and the right mouse button. For other filetypes, for example Excel the Print option is still available and works properly. Logged in as administrator on the serverconsole, there is no problem. So it seams to be something specific to pdf-formats in a server 2003 environment. The userrights are all set on full control (same as administrator).
    Thanks again

Maybe you are looking for

  • Best method to determine the week number of a month - SQL Server 2012

    Hi, I'm searching the most valid and tested method to determine the week number respect to a month. Fe, the 1st January falls in the 1st week of January, the 1st February fall in the 1st week of February, and so on. I've found many solutions but I'd

  • Error in SAP R/3 4.7 & ECC 5 versions - while installing Databse Instance

    Hi I have installed Windows 2003 in my Laptop . Then I configured MS Loopback adapter and assigned an IP address. Then I changed the Virtual Memory  Then I installed Java in C drive & gave the path in System properties. Then Installed Oracle 9i and a

  • Error in reciever JDBC Adapater

    I have a select query as SELECT * FROM ULIDTA2.F5631505 where QSINTF ='Y' update query is Update  ULIDTA2.F5631505 set QSINTF='Y' where QSINTF ='N' if there are no rows to update , i am getting a error. wht could be the issue .

  • 1080psf 23.976 capture codec for Arri?

    I need an update that includes a 1080psf 23.976 capture codec for Arri. 

  • Deskjet 9800 options

    A few last questions: When I try to print with "maximum dpi", I get a message that the HP Deskjet 9800 needs more memory.  I can find that it came with 16MB of RAM, but where is it specified how much can be added, and in what format?  And how do I de