Saving a PDF. as a CSV file

Hello Forum Users,
Is there a way to save a down loaded mailing label PDF. and save it as a "Comma Separated Values" file or CSV. file. I'd like to import data to my contacts data program.
Your help would be appreciated.

Reader doesn't have this capablility

Similar Messages

  • Illustrator CS4 and CS3 freeze when saving a PDF as an AI file

    I'm trying to pull apart a couple of PDFs into layers to import them into After Effects. I do this all the time and it's a pretty standard thing which I haven't had any trouble with before, but for the last couple of days whenever I try to save the PDF as an AI file, the damn thing freezes - I get the washing machine of death (I'm on Vista), the program goes greyed out and I have to restart it, losing all the changes. I've tried the following, none of which seem to make any difference:
    - Saving to a different drive (C as opposed to an external USB drive)
    - Trying to open the PDFs in CS3 rather than CS4
    - Trying a couple of different PDFs
    I can't reinstall Illustrator as I'm not at the office until the new year and don't have the disks. The PDFs are small (300k or so) and so it shouldn't be their size making the machine hang, surely? I've attached a sample. Specs are - dual core Dell M6300 laptop, 2.6GHz, 4GB RAM, Quadro 1600 graphics.
    Any ideas would be very gratefully received....

    Sorry I haven't replied in a few days (I'm at my parents' house for Christmas, so not the ideal place to sort out Illustrator problems )
    This is REALLY weird. I was wondering whether Illustrator would be able to save PDFs (which are after all basically the same thing as AI files for this purpose) to get around the problem that way. I tried: it saved the thing fine. Next I tried saving what I'd just saved as a PDF, as an AI file. It saved it in a flash without any problems. (This is with the trashed prefs file - I haven't tried reinstating it, yet.) I've just loaded up a 14Mb AI file, and saved it again without trouble.
    There's only one thing I can think of that has been changed since the last time I tried this, when Illustrator wasn't working. This is something which was definitely affecting Word 2007: I've deleted a couple of network printers that were on nonexistent IP addresses. (Word wouldn't load anything, even the most basic of docs - it just froze; washing machine of death, grey screen, etc.) The default printer is thus now a Canon USB thing, which isn't plugged in either, but which Windows seems happy to carry on without. Word seemed unable to continue with the network printers installed, as presumably it was trying to contact them and failing. Could Illustrator have been falling into the same trap??
    Anyway, whatever the problem, it seems to be working OK now. Thanks both and hope you have a merry Christmas and New Year period.
    Best
    Nick

  • Saving chosen date format in csv-file

    I format all cells in one column to a dateformat dd-mmm-yy
    i.e. 01-jan-06, works fine I have all the dates in the year by clicking on first cell.
    BUT I can not SAVE the file as csv keeping the format - it is saved as 01-01-2006, which I can not use.
    I do this in Excel all the time - do I have to do something special in Staroffice Calc 8.0 ?

    A similar issue faced here trying to save a worksheet (Staroffice Version 8) in .csv format. The worksheet had one column for date of birth formatted as "dd/mm/yyyy" and another one for age using formula "=TODAY()-B6", formatted as "yy". In the corresponding .csv file the age column showed up as "dd/mm/yyyy" as against the required "yy" format . On saving the data in text file with the space delimited option, the date of birth column showed up in the "mm/dd/yyy" format - the age column however was in the desired "yy" format.
    Here is a workaround though;
    On your existing staroffice worksheet format all the data just as would like it appear in the .csv file. The trick is to transfer the data into an intermediate application that does not understand the underlying formatting or formula, which in our case will be notepad. Copy the entire range of data from your staroffice worksheet into notepad. Minimise notepad after the data has been pasted. Save and exit the existing staroffice workbook. Open a new workbook, select the entire range that is going to hold the data and then format the cells as "text". Now, maximise notepad, select all the data using the edit menu and copy it into the new worksheet. The data should appear just as it was in the original worksheet, but without any formatting or formula. You can now proceed to save the data in a .csv file without having to worry about changed date formats.
    However, if you have come across some other method through which this issue has been resolved, please post here or drop me a a mail
    anandkumarvj [at] rediffmail.com

  • Saving result from query into CSV file

    Hi folks,
    in our application we're generating pages source using general packages (like htp, owa_util, ...). and in this part I'm a really beginner.
    I want to modify source one of our page, I want to add functionality to enable save result from query (cursor) into CSV file, to enable user choose place where generated file will be created and also change file name.
    I searched this forum and I found procedure, that could be useful:
    procedure p_getcsv is
    cursor cur is
           select 'a1' col1, 'b1' col2, 'c1' col3 from dual
       union  select 'a2' col1, 'b2' col2, 'c2' col3 from dual
       union  select 'a3' col1, 'b3' col2, 'c3' col3 from dual;
       begin
            -- Set the MIME type
            owa_util.mime_header( 'application/octet', FALSE );
            -- Set the name of the file
            htp.p('Content-Disposition: attachment; filename="test.csv"');
            -- Close the HTTP Header
            owa_util.http_header_close;
            -- Loop through all rows in EMP
            for x in cur
            loop
                -- Print out a portion of a row,
                -- separated by commas and ended by a CR
                 htp.prn(x.col1||','|| x.col2||','||x.col3|| chr(13));
            end loop;        
       end;What peace of code should I add to procedure that is generating web page to enable calling this procedure and whole saving process?
    Can anybody help me with this?
    Many thanks,
    Tomas
    Message was edited by:
    Tomeo

    Hi Marc,
    thanks for reply, problem is that I'm not using APEX application, I'm just generating web page code straight using oracle general packages.
    But I found this solution (maybe some tunning will be good):
    In page where I want to display Download i have
      begin
             htp.anchor2 (
                           curl  =>  ... .p_getcsv'||'?term=2005&crn=123,
                           ctext => 'Download Class List'
             HTP.br;
          end;
    ...si I'm calling p_getcsv procedure:
      procedure p_getcsv( term  IN stvterm.stvterm_code%TYPE DEFAULT NULL,
                           crn   IN sirasgn.sirasgn_crn%TYPE DEFAULT NULL) is
       v_length      NUMBER;
       v_file_name   VARCHAR2 (2000);
       temp_blob  blob;
       line RAW(32767);
       begin
             DBMS_LOB.CREATETEMPORARY(temp_blob, TRUE);
             FOR i IN 1..6  LOOP
                line := UTL_RAW.CAST_TO_RAW(i||','||term||','||crn||',AAA,BBB,CCC'||chr(10));
                DBMS_LOB.WRITEAPPEND(temp_blob, LENGTH(UTL_RAW.CAST_TO_VARCHAR2(line)), line);
             END LOOP;
              v_file_name := 'ClassList.csv';
              v_length  := DBMS_LOB.getlength (temp_blob);
              -- set up HTTP header
                 -- use an NVL around the mime type and
                 -- if it is a null set it to application/octect
                 -- application/octect may launch a download window from windows
               OWA_UTIL.mime_header (NVL ('csv', 'application/octet'), FALSE);
               -- set the size so the browser knows how much to download
               HTP.p ('Content-length: ' || v_length);
               -- the filename will be used by the browser if the users does a save as
               HTP.p (   'Content-Disposition:  attachment; filename="'
                  || REPLACE (REPLACE (SUBSTR (v_file_name,
                                               INSTR (v_file_name, '/') + 1
                                       CHR (10),
                                       NULL
                              CHR (13),
                              NULL
                  || '"'
                 -- close the headers
                 OWA_UTIL.http_header_close;
                -- download the BLOB
                 WPG_DOCLOAD.download_file (temp_blob);
                 -- release temporary blob
                 dbms_lob.freetemporary(temp_blob);  
       end;Regards,
    Tomas

  • Saving several pdf forms to one file

    Hi to all,
    I create ADOBE form and save it from the printing program.
    I call to the form in loop, evry time I send it diffrent data.
    I want the all the forms will be saved in one file.
    I see that the file that created is getting bigger in evry loop, but when I try to opwn it in Acrobat Reader (not from sap) I see only the last page I saved.
    Please review the code and tell me what I am doing wrong:
      CALL FUNCTION 'FP_JOB_OPEN'
        CHANGING
          ie_outputparams = fp_outputparams
        EXCEPTIONS
          cancel          = 1
          usage_error     = 2
          system_error    = 3
          internal_error  = 4
          OTHERS          = 5.
      IF sy-subrc <> 0.
        MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
                WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
      ENDIF.
      LOOP AT lt_emp_details INTO ls_emp_details.
       CALL FUNCTION '/1BCDWB/SM00000018'
        CALL FUNCTION l_fm_name
          EXPORTING
            /1bcdwb/docparams  = fp_docparams
            ls_emp_data        = ls_emp_details
          IMPORTING
            /1bcdwb/formoutput = fp_result
          EXCEPTIONS
            usage_error        = 1
            system_error       = 2
            internal_error     = 3
            OTHERS             = 4.
        IF sy-subrc <> 0.
          MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
                  WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
        ENDIF.
    filename =p_path.
        CALL FUNCTION 'SCMS_XSTRING_TO_BINARY'
        EXPORTING
          buffer          = fp_result-pdf
           append_to_table = 'X'
        TABLES
          binary_tab      = gt_file.
        cl_gui_frontend_services=>gui_download( EXPORTING
        filename = filename
        filetype ='BIN'
        append = 'X'
        CHANGING
        data_tab = gt_file ).
       PERFORM download_file.
      ENDLOOP.
      CALL FUNCTION 'FP_JOB_CLOSE'
        IMPORTING
          e_result       = result
        EXCEPTIONS
          usage_error    = 1
          system_error   = 2
          internal_error = 3
          OTHERS         = 4.
    Thanks in advanced
    Chaya.

    Hi,
    The problem is that on every form you fet while calling the function module, you get the header information of an ADOBE Forms so when you try to open it you will see the latest one ...
    The ideal solution is to merge all your document into one , unfortunately it's not possible while using ADS in SAP .
    An alternative for your problem is to modify your form in order to have page break while changing of forms . Then you will retrieve only one form with all page and that should work.
    Hope this is clear and help you .
    Regards.

  • Performance while saving db entries in a CSV File (Saving the MARA)

    Hi Experts.
    Now, I have a very difficult problem and until now noone could give me a solution.
    The scenario is that I have to export the complete MARA as CSV (Comma Seperated Text File) on the server (xfer-DIR).
    So, I select a bunch of mara entries and convert them to character on field level. Why on field level? Because there is no way to convert a whole workarea to character. This means the following command does not work if there is any field with field type P (packed) or F (float).
    l_v_char_line = l_s_mara
    transfer l_v_char_line to l_v_file
    If I move the data on field level to a character the data will be converted correctly. But this means that I need to proof on field level and this results in a very inperformant runtime.
    In case the table just consists of CLIKE fileds I can do the move as written above and the transferrate is about 5 MB/s. But when I work on field level base the transferrate is about 200 KB/s.
    Below is a part of my coding.
    Does anyone know a solution?
              "& Select without WHERE clause
              SELECT (l_t_result)
              FROM (l_t_source)
              UP TO statement_calculator->idx_to ROWS
              INTO CORRESPONDING FIELDS OF TABLE <fs_local_table>[]
              PACKAGE SIZE sel_package_size.
                l_v_dbcnt = sy-dbcnt.
                CLEAR l_stmt_values.
                LOOP AT <fs_local_table> ASSIGNING <fs_workarea>.
                  DO.
                    IF sy-index > 1.
                      CONCATENATE l_stmt_values l_v_line cl_datext_controller=>delimiter
                      INTO l_stmt_values.
                    ENDIF.
                    CLEAR l_v_line.
                    ASSIGN COMPONENT sy-index
                    OF STRUCTURE <fs_workarea> TO <fs_any>.
                    IF sy-subrc <> 0.
                      EXIT.
                    ENDIF.
                    "& Converts
                    l_v_line = <fs_any>.
                    READ TABLE l_o_struct->components[]
                    INTO l_s_components INDEX sy-index.
                    IF  sy-subrc = 0
                    AND l_s_components-type_kind CA 'NPFIbs%'.
                      "& Convert number like to output format
                      CALL METHOD me->convert_number_string
                        EXPORTING
                          i_numvalue = <fs_any>
                          i_typekind = l_s_components-type_kind
                        CHANGING
                          x_string   = l_v_line.
                    ELSEIF sy-subrc = 0
                       AND l_s_components-type_kind CA 'Cg&!?'.
                      "& Delete special characters
                      CALL METHOD me->delete_special_character
                        CHANGING
                          x_string = l_v_line.
                    ENDIF.
                    UNASSIGN: <fs_any>.
                  ENDDO.
                  CONCATENATE l_stmt_values cl_abap_char_utilities=>cr_lf
                  INTO l_stmt_values.
                ENDLOOP.
                "& Transfer data to file stream
                TRANSFER l_stmt_values TO l_v_filename.
              ENDSELECT.
    Edited by: Thomas Zloch on Feb 23, 2011 5:33 PM - code tags added

    Ok. That is what I thought, too. But it doesn't matter. Reading all MARA data at once (see coding below) results in 477 Kb/s and reading with a package size 100000 results in 456 Kb/s. This is really a bad performance.
    I'm frightened that there seems to be no solution with abap stadard development tools. Right. We could use any ETL Tool to export data, but thats not our aim. The server, who the application is running on, has really enough capacity to handle the exports.
              "& Select without WHERE clause
              SELECT (l_t_result)
              FROM (l_t_source)
              UP TO statement_calculator->idx_to ROWS
              INTO CORRESPONDING FIELDS OF TABLE <fs_local_table>[].
              l_v_dbcnt = sy-dbcnt.
              CLEAR l_stmt_values.
              LOOP AT <fs_local_table> ASSIGNING <fs_workarea>.
                DO.
                  IF sy-index > 1.
                    CONCATENATE l_stmt_values l_v_line cl_datext_controller=>delimiter
                    INTO l_stmt_values.
                  ENDIF.
                  CLEAR l_v_line.
                  ASSIGN COMPONENT sy-index
                  OF STRUCTURE <fs_workarea> TO <fs_any>.
                  IF sy-subrc <> 0.
                    EXIT.
                  ENDIF.
                  "& Converts
                  l_v_line = <fs_any>.
                  UNASSIGN: <fs_any>.
                ENDDO.
                CONCATENATE l_stmt_values cl_abap_char_utilities=>cr_lf
                INTO l_stmt_values.
              ENDLOOP.
              TRANSFER l_stmt_values TO l_v_filename.

  • Saving jsp query results to csv file

    I have a query form jsp application which does as you would expect - throw in some search parameters - results set is returned - my question is how I go about writing an instance to save these results into a csv notepad file. I've used JBuilder a lot and within that it is relatively simple to create a save-to-file instance - is it the same within JDeveloper?? Sorry if this is a fairly obvious question - I just havent come across anything in the docs yet

    Try this in a JSP:
    <%
    response.setContentType( "text/x-csv" );
    response.setHeader( "Content-disposition", "inline;filename=myfilename.csv" );
    %>
    "value1","value2","value3"
    "valueX","valueY","valueZ"

  • Ssrs 2008 export to excel and csv file

    In a ssrs 2008 report, the user will export data to PDF, excel, and CSV files. When the report is exported to excel or csv file, the user wants me to hide some tablixes. Thus can you show me code on how to export the reports to csv or excel file without
    and be able to hide a few tablixes?

    Hi jazz_dog,
    According to your description, you want to set the visibility for some tablixes based on the exporting file type. Right?
    In Reporting Services 2008, we don't have any parameter to get type of exporting file. So we can only create a parameter and select a type before exporting to a file. Then use conditional expression to control the visibility. It's definitely not a good workaround,
    so your goal can't be achieved in Reporting Services 2008. However, for Reporting Service 2008R2 or later version, we have a build-in parameter called Render Format Name, this parameter will display the type of exporting file automatically. So we can make
    the judgment in expression based on the value of this parameter.
    Reference:
    Built-in Globals and Users References (Report Builder and SSRS)
    If you have any question, please feel free to ask.
    Best Regards,
    Simon Hou

  • Swf saved as pdf not displaying when opened

    Hi All,
    I am in the process of creating a media kit for my company.  The plan is to be able to send out a link to the pdf file saved in our site files so that potential clients can click and view or download the pdf.  I have saved the pdf in my site files however; when you go to the link (http://www.hobnobtv.com/pdf/hobnobtv-media-kit.pdf) it only opens a white blank pdf file.
    Here are the steps i've taken to create the file:
    I have created the 10page booklet using InDesign CS4 and added the page turn page transition on all the pages.
    I exported the file as swf and then opened the swf in Adobe Acrobat 9 Pro.
    When opening the swf in Acrobat the activation setting I choose are:
    Enable when: The page containing the content is opened
    Disable when: The page containing the content is closed
    Save the pdf file
    Uploaded to the site
    What could be causing the pdf to appear white and blank?  Is there a better way to accomplish the goal?
    I look forward to hearing others thoughts!
    Rebecca

    Thank you for the response!
    Actually, I finally realized (and i'm a little embarassed to admit) that when I click on the link for the pdf, my default program to open the file was set to Preview rather than adobe acrobat or reader.  So now that I have it set to Acrobat I see it ok.
    I have tested the swf file by itself and it does work.  The file uses the Page Turn transition affect, so the user needs to click the bottom right corner of each page to turn (or they can click and drag the page open).  I did notice when the pdf was opend the little note I included in the bottom right of the first page does not show (it reads "click here to turn page"- as a prompt for the user).  I may have to move that up a little bit so it shows.  Also, if you hover over the bottom right corner of the right page, you should start to see the page corner curl, this is hard to see at this point (you can see it great if you click the zoom in option once) Maybe i'll have to reduce the size of the swf when making it a pdf to see if that works so the user doesn't have to adjust the page to see the affect.
    I'll see how that works.
    Rebecca

  • Can we create .CSV files through documaker

    Hi,
    Is it possible to create .csv files through documaker apart from pdf's
    Thanks

    With apologies, it is still unclear (to me) what you are asking.
    It is possible to create files using DAL, but to offer more specific guidance requires a better understanding of what it is that you want.
    A CSV is a Comma-Separate Value file. A PDF file is a printed document file containing formatted text content, graphics, lines, boxes, etc - in other words a fully-composed document.  I'm not exactly sure how a PDF and a CSV file could contain the same data.
    Are you perhaps asking to get an index of the created PDF files written as a CSV file? Something that contains a row of key transaction data along with the file name of the generated PDF? Perhaps something akin to the batch (BCH) files that can be produced per transaction recipient?
    Are you asking for an export file of all the field data that went into the creation of the document and included in the PDF? Normally a CSV has a header that describes the columns and then each row of data would be consistent with that header. Without knowing that every PDF file you create will have exactly the same number of fields defined, it is difficult to imagine that a single CSV file would be sufficient. And depending upon the number of fields and the size of the data assigned to each, this could be quite a long record per PDF in the resulting CSV file.
    Or perhaps you had in mind to get a name / value pair written for each field with data written on separate lines? This would not a be a true CSV file, but could have the name and values separated by commas if that is what you require.
    You have something specific in mind and yet, we are not in your mind.  We need more specific information on exactly what you are trying to accomplish.

  • Why won't excel read my csv file created with the powersell out-file automatically.

    I wrote a PowerShell script that creates a CSV formatted file.  The script simply creates a comma delimited string for each entry and adds it to a collection.  Then the out-file command write it to a file.
    When you open it with Excel each line is put into one cell.  If you import the file and specify the "," as the delimiter, it imports just fine.  If the data is saved out again as a csv file,  the file is about half the size and opens
    just fine with excel.
    If you open the original file and the file created by Excel with notepad, they look the same.
    So the files are different in size, contents look the same, but Excel won't automatically open the original file.
    Any ideas of why this happens?  Also PowerShell and Excel are both running on Server 2012 R2.  Excel is a remote app.
    If I do an export-CSV, I get some kind of information about the object.
    Here is the script:
    foreach ($group in $groups)
       $header += '"' + $group.name + '",'
       $CSVdata = @()
       $CSVdata += $header
       # Create a user entry
       $users = Get-ADUser -filter * |select SamAccountname, Name | sort SamAccountName
       foreach ($user in $users)
          $Groupmembership = Get-ADPrincipalGroupMembership -Identity $user.SamAccountName
          $userentry = '"' + $user.SamAccountName + '",'
          $user
          foreach ($group in $groups)
              if ($Groupmembership.SamAccountName -contains $group.SamAccountName) { $userentry += '"X",'}
              else { $userentry += '"",' }
           $CSVdata += $userentry
          $CSVdata
          Out-File -inputobject $CSVdata -FilePath c:\batch\GroupMembership.csv

    Ok the script works exactly like I want it.  Thank you very much.
    I am trying to understand the script but I am unable to figure out what the line "$keys=$t.Keys|%{$_}"
    does.  I figured ".keys" was a method but my search for it comes up blank.  Do you have a reference you can point me to?  

  • About CSV File

    Hi,
    I want to know how to read CSV file and same sholud be saved into database. The CSV file has column name. And each column has its own value. So how to read that column name and particular column value and saved into the database..
    In servlet, even i written like
    pst.executeUpdate("load data infile '"+CSV_filename+"' into table Table_name fields terminated by '"+,+'" lines terminated by '"+\n+"'");
    But getting error..
    Can you please help me out as soon as possible....

    Stop with reposting the same question over all places.
    [http://forums.sun.com/thread.jspa?threadID=5374913&messageID=10649432#10649432]
    [http://forums.sun.com/thread.jspa?threadID=5374930&messageID=10649514#10649514]
    [http://forums.sun.com/thread.jspa?threadID=5374932&messageID=10649519#10649519]
    [http://forums.sun.com/thread.jspa?threadID=5374933&messageID=10649556#10649556]
    [http://forums.sun.com/thread.jspa?messageID=10649561#10649561]

  • How do you change the default save as directory when saving a PDF file to your hard drive?

    This is the on-line help instructions on this site:
    Downloading a PDF file to your hard drive
    You can download a PDF file to the hard drive from a web page's link. Downloading PDF files doesn't require the ActiveX plug-in file to be installed. (If you want to open and view the PDF file after downloading it, you must have Acrobat, Adobe Reader, or Acrobat Reader installed.)
    To download a PDF file from a link:
    1. Right-click the link to a PDF file, and then choose Save Target As from the pop-up menu.
    2. In the Save As dialog box, select a location on your hard drive, and then click Save.
    My issue:  I want to save several pdf files (from the Adobe Reader in my browser) one at a time and each time it defaults the save as directory to the desktop and I have to go looking for the directory I last saved a pdf file in.  I got lots of directories and I wish I could change the default setting for the save as directory.  Just a minor thing but irritating as other programs usually will allow you to switch the default save as directory to one of your choosing.

    There is not a way to set the default location from all the forums i searched in the last couple days.
    Russ

  • Print to PDF - using Snow Leopard (Saving a PDF file when printing is not supported. Instead, choose

    i have a PDF form that i created that is used as a custom proposal that my company sends out to potential clients. the form in its editable state is only used internally. we recently upgraded to snow leopard, but prior to the upgrade, we were able to fill the custom proposal form out using adobe reader, and, as you well know, we weren't able to save that edited document as a PDF with the custom form fields filled out. our work around using adobe reader was to print to a pdf using the adobe pdf printer in the printer dialog. with the addition of snow leopard, however, instead of choosing the adobe pdf printer, we were to choose PDF from the bottom left corner, then Save As PDF, and it would spit out an uneditable pdf that then allowed us to email it to the potential client without them being able to edit it as well as have an internal, digital copy for our records instead of having lots of paper floating around (i know this is also doable using security that disallows the client certain editing privileges, but printing to a pdf is much quicker and more efficient, and the pdf security isn't really that secure at its best).
    in any case, i came across this gem of a post here on the support forums that installs another option from the PDF drop down on the bottom left of the print dialog menu that reads Save As Adobe PDF and is supposed to do exactly what i am trying to get it to do...print to a pdf file from adobe reader.
    http://kb2.adobe.com/cps/509/cpsid_50981.html    
    once i updated to acrobat 9.2 (as the link above suggests 9.1), however, the Save As Adobe PDF does appear in the print dialog menu, but it still gives me the same error that acrobat 8 - 9 gave me while using Snow Leopard — Saving a PDF file when printing is not supported. Instead, choose File > Save — and as i've already explained, you can't save an edited pdf form in reader (as i am the only one in the office with acrobat) and still keep the fields as you've entered them in. the only work around is to print to a pdf but is apparently having some recent problems.
    using acrobat, however, i know that i can save the editable pdf as a new file with the fields customized as i have left them, but it still saves it as an editable pdf and the print to a pdf option still remains the best option...that way we have digital copies internally that are uneditable that can be printed at any time or emailed to the client.
    how can i do print to a pdf, based on what i've written above, using snow leopard and acrobat and reader?

    A simple way is to flatten the form fields, which converts the field appearances to regular page contents. You can do this with JavaScript or PDF Optimizer (Advanced > PDF Optimizer > Discard Objects > Flatten form fields). A very nice script that adds a custom menu item can be found here: http://www.uvsar.com/projects/acrobat/flattener/

  • In converting a .docx file to .pdf the the Word functionality of linking screen tips to hyperlinks is lost. Why?  How can screen tips be saved in pdf if at all?

    In converting a .docx file to .pdf the the Word functionality of linking screen tips to hyperlinks is lost. Why?  How can screen tips be saved in pdf if at all?

    Thanks for replying. I am converting from MS Office Word document to Adobe Acrobat Document and opening with Reader XI - sorry my mistake.
    I now notice another problem. On trying to open a specific hyperlink in the pdf version I get the message  'Acrobat does not allow connection to: www.biblegateway.com'.  Why would there be a restriction? 

Maybe you are looking for

  • Update to Acrobat 9.4.2 failed Error code 1646

    I received a notice of an update to Acrobat 9.4.2 and initiated the update. The update failed with error code 1646. I then manually downloaded the update and attempted the update. I received the error message that uninstall of this update is not supp

  • Changing SID

    Hello everyone, I use Oracle 10g R2 on Fedora Core 4. I was trying to change the SID of my test database. What I did was: 1- Shutting down the Instance 2- changing ORACLE_SID Environment Variable (I also changed the oracle user's .bash_profile, cause

  • Roles and Worksets are indicated several times in Top-level-navigation.

    Hallo Experts, I dont understand why the Roles and Worksets in the Top-level-navigation are displayed several times. How can I change that? Thank you very much regards, Galyna

  • Wrapped Package

    Hello, please your help, In what dba table (if any) can i find out if a package, procedure or function is wrapped? Thanks in advance.

  • Photosmart 3110 scanning software on Windows 8.1

    hiya.  I can get the printer side of it working but I'm unable to install the scanning software for this device. I've tried running it in compatibility mode to no avail.  Is there some way of getting it working otherwise I can't use it as a scanner?