Multipule HTML files to covert to PDF - without hyperlinks

I have over 400 HTML files that I need to convert to PDF - I do not want the PDF to contain any of the the hyperlinks from the original HTML file.  How can I "turn off" the hyperlinks.
I can print to PDF - 400 files - is going to take forever.
any suggestions?
Thanks

If you have a Professional version of Acrobat, you could create a batch process to delete all the links.
From the JavaScript API Reference:
Example
Remove all links from the document.
// Remove all links from the document
for ( var p = 0; p < this.numPages; p++)
var b = this.getPageBox("Crop", p);
this.removeLinks(p, b);
Use 
getLinks to help count the number of links removed
ExampleCount the number of links in a document and report to the console. 
var numLinks=0;
for ( var p = 0; p < this.numPages; p++)
var b = this.getPageBox("Crop", p);
var l = this.getLinks(p, b);
console.println("Number of Links on page " + p +" is " + l.length);
numLinks += l.length;
console.println("Number of Links in Document is " + numLinks);

Similar Messages

  • Export to PDF defaults to HTML file instead of Adobe PDF since moving to CC2014

    Hi friends!
    Help please. Ever since I moved to CC2014 my InDesign and Illustrator is defaulting to HTML files instead of Adobe PDF when exporting to PDF. I also use this same software at another workplace and this has not been a problem there. I am on PC, on Windows 7. Does anybody know of a preference or such that I can switch to correct this?
    Any help will be greatly appreciated.
    Mindy.

    This is the window I am getting when attempting to use Data merge in ID. Have used this successfully before in previous versions of InDesign. Any ideas?
    Thanks

  • I am unable to open my html files saved from mozilla firefox without internet connection...........each time it shows the error message as follows:-

    I have saved some internet pages from mozilla firefox as html pages in F:/ drive....i am using windows7...whenever i open these files without internet connection....then it opens only for a short time and suddenly crashes by displaying the message like that:-
    File not found
    Firefox can't find the file at jar:file:///C:/Program Files (x86)/Mozilla Firefox/omni.ja!/chrome/browser/content/browser/undefinedgoogleads.g.doubleclick.netpagead/ads?client=ca-pub-7133395778201029&format=468x60_as&output=html&h=60&w=468&lmt=1346242109&ad_type=image&flash=11.3.300&url=file:///F:/UJJWAL/C%20TUTORIAL/c_arrays.htm&dt=1346323041583&bpp=19&shv=r20120815&jsv=r20110914&correlator=1346323042092&frm=20&adk=4203423324&ga_vid=377128990.1346323043&ga_sid=1346323043&ga_hid=232002736&ga_fc=0&u_tz=330&u_his=1&u_java=0&u_h=768&u_w=1366&u_ah=728&u_aw=1366&u_cd=24&u_nplug=11&u_nmime=30&dff=helvetica&dfs=12&adx=457&ady=211&biw=1349&bih=664&oid=3&fu=0&ifi=1&dtd=952&xpc=R193iApDeg&p=file://.
    Check the file name for capitalization or other typing errors.
    Check to see if the file was moved, renamed or deleted.
    can anyone fix my problem please?

    What extensions do you have installed? To get a full list, do the following:
    In order to be able to find the correct solution to your problem, we require some more non-personal information from you. Please do the following:
    *Click the Firefox button at the top left, then click the ''Help'' menu and select ''Troubleshooting information'' from the submenu. If you don't have a Firefox button, click the Help menu at the top and select ''Troubleshooting information'' from the menu.
    Now, a new tab containing your troubleshooting information should open.
    *At the top of the page, you should see a button that says "Copy all to clipboard''. Click it.
    *Now, go back to your forum post and click inside the reply box. Press Ctrl+V to paste all the information you copied into the forum post.
    If you need further information about the Troubleshooting information page, please read the article [[Using the Troubleshooting Information page]].
    Thanks in advance for your help!

  • Export bookmarks fails to produce an html file in the chosen location without an error message?

    I go through the steps from the bookmarks menu to export bookmarks to html.
    All goes well without an error message, but the file is not created in the selected location.

    A possible cause is a problem with the file places.sqlite that stores the bookmarks and the history.
    * http://kb.mozillazine.org/Bookmarks_history_and_toolbar_buttons_not_working_-_Firefox

  • Html to pdf without File Signature

    Hi guys,
    I want to convert a bunch of html files from website to PDF. How can i do it so i can extract the Signature at the botton, for example:
    in each of them?
    Thanks
    Sebs

    When you open the window in Acrobat to create a PDF from a web site, there is a settings button there to select such items. If you are printing from a browser, you need to set the preferences in your browser. If you are using PDF Maker with IE, then you can check the preference under the Adobe menu.

  • .pdf and .doc Attachments are downloading as .html files

    Dear Forum,
    I have received both .doc and .pdf attachments in my email (charter.net).
    I click to download, the files then appear on the desktop as Safari files with a example.doc.html file name or example.pdf.html
    Of course neither Word or Acrobat Reader can open them without them appearing as scrolling incoherient text...
    Why does this happen? I assume the files should download as their true file type such as example.doc or example.pdf
    Any help would be greatly appreciated.

    Hi WinchesterBunnyMama, what exactly is your problem. Is it this issue:
    Some users are finding that an update changed the description of "Adobe Acrobat Document" to "Firefox HTML Document". The installer was supposed to add Firefox as an ADDITIONAL viewer for PDFs, not as the DEFAULT viewer. Sorry if you were affected by this glitch and hopefully they will figure out why some systems get changed this way.
    You can try this fix suggested by a user in another thread:
    # Open Adobe Reader / Acrobat*
    # Edit->Preferences
    # In the Categories column click 'General'
    # Near the bottom of the page click the button marked 'Select Default PDF Handler'
    # In the dialog, select 'Adobe Reader XI' (or Adobe Acrobat, as the case may be) and click 'Apply'
    # A Windows Configuration screen will appear. Allow it to do its stuff (takes a few minutes), then restart your computer when prompted.
    Does that work for you?
    ''*'' If you do not have Adobe Reader 11, you can install it from here: http://get.adobe.com/reader/

  • Print HTML File Without Showing on Screen

    Hi Everyone
    Is there a way to print a file (in particular, an html file) from a java app without actually displaying the file on the screen.
    ie. print from command line.
    I am creating an html file from within java app and would like to print it in one step.
    Any help would be greatly appreciated.
    Thanks
    Kelly

    Hi,
    Heres some code from an app I wrote that prints out text. I've stripped out little sensitive bits.
    // Procedure to perform when print button is pressed
       void printButton_actionPerformed(ActionEvent e){
         int x, y, pageNo = 1, maxPageHeight, textHeight = 0;
         Date today = new Date();
         String tempLine = new String("");
         String tempString = new String();
         Graphics pg;
    // Create date and time formats
         SimpleDateFormat dateFormatter = new SimpleDateFormat("dd/MM/yy");
         SimpleDateFormat timeFormatter = new SimpleDateFormat("HH:mm:ss");
    // Create date and time strings
         currentDate = dateFormatter.format(today);
         currentTime = timeFormatter.format(today);
    // Turn off double buffering
         RepaintManager.currentManager(this).setDoubleBufferingEnabled(false);
    // Get a print job
         PrintJob printjob = getToolkit().getPrintJob(this, "<printjob name>", null);
         if (printjob != null) {
           maxPageHeight = printjob.getPageDimension().height-(rowHeight*2);
           pg = printjob.getGraphics();
           if (pg != null) {
             pg.setColor(Color.black);
             pg.setFont(new Font("Courier", 0, 10));
    // Print header
             textHeight = topOfPage;
             pg.drawString("Report      Date " + currentDate +
                           "      Time " + currentTime + "  Page " + pageNo,
                           30, textHeight);
             textHeight += rowHeight;
             pg.drawString("File: " + dataFile , 30, textHeight);
    // Print errors
             textHeight += rowHeight*2;
             pg.drawString("Errors", 30, textHeight);
             textHeight += rowHeight;
             pg.drawString("------", 30, textHeight);
             textHeight += rowHeight;
             pg.drawString("col1         col2 col3                 Value        Reason",
                            30, textHeight);
             textHeight += rowHeight;
             pg.drawString("------------ ---- -------------------- ------------ --------------------",
                            30, textHeight);
             if(errorData != null){
               for(x = 0; x < errorData.length; x++){
                 textHeight += rowHeight;
                 if(textHeight > maxPageHeight){
                   pg = nextPage(pg, printjob, ++pageNo);
                   textHeight = topOfPage + rowHeight*2;
                 tempLine = "";
                 for(y=0; y<columnLengths.length; y++){
                   tempString = errorData[x][y] != null ?
                                roundLength(errorData[x][y].toString(), columnLengths[y])
                                : roundLength(" ", columnLengths[y]);
                   tempLine += tempString + " ";
                 pg.drawString(tempLine, 30, textHeight);
             pg.dispose(); // flush page
           printjob.end();
       }Hope that helps.
    Rob.

  • When I try to open the HTML file "file:///C:/Users/DHeimann/Documents/JP Cohousing/Retreat agenda 2014.htm", the system attempts to access Gmail and hangs.

    I can open various most other *.htm or *.html files on my C drive without a problem. However, there are other HTML files on the drive that do have this problem when I try to open them.
    When I try to open the file in Internet Explorer rather than Firefox, I get a message that JavaScript is not enabled. However, I do have JavaScript enabled, and have just updated Java to Version 7, Update 51.

    One of the problems with saving web pages from complex dynamic sites like Gmail is that you may be saving the instructions for rendering the page rather than the actual content of the page. In that case, if you are logged out of your account or there is a cross-site security bar to pulling the needed data, then the saved page may not display correctly or at all. If a message is critical, it's a good idea to print or save the page to PDF or grab a screen shot to work around that problem.
    The message you're getting in Internet Explorer may be related to the fact that IE has different security zones with different restrictions. For example, sites in the Internet Zone normally can run JavaScript, and sites in the Restricted Sites list cannot. The local computer zone has much tighter security compared with the old IE6/XP days, and that may explain what you're seeing there.
    P.S. Browsers interpret JavaScript internally without using the Java plugin.

  • Can't send a html file for review

    I am a beginner with Dreamweaver. I have created an index home page and wanted other people to review and critique the page, but when i e-mail the index.html file it opens incompletely and without content in their browsers. Seems it will only open correctly on my computer on which the file was created. Dropbox will not work or Google Cloud. Please help.
    Thank you
    As an add on to my question, when i try to share the page within my browser, i get an error message saying the page is secure or is not accessible by the public.

    Ultimately, you'll need to purchase a domain name *yourName.com* and obtain commercial web hosting for your site.  Once you have a domain name & web hosting in place, you upload your page(s) and dependant files to that web space for the world to see.  
    If you don't have web hosting yet, you can obtain a temporary free space below.
    http://www.000webhost.com/
    Also, many ISPs offer a small, free web space with their plans (Earthlink, AT&T, Verizon, etc...)
    Nancy O.

  • Allow Zip Files as Attachments in PDFs

    As many of you are aware, newer versions of Acrobat have removed the ability to open or save zip files attached to a PDF (without a complex registry hack).
    Notice that I've attached a zip file to this post. Adobe: If you've deemed zip files safe enough to be hosted and delivered in your own forums, maybe they're safe enough to be reinstated in PDFs?
    I believe no product should force security on its users without providing them any practical way to override. Web browsers, email clients, and operating systems warn you of potentially dangerous files and then let the client make the choice. What if it's a zip file from a trusted source full of harmless text documents? Too bad - because Acrobat says so. Acrobat makes no attempt to examine the zip file to see if perhaps its contents are dangerous - it just sweepingly decides zips are far too dangerous to let the user have any voice in the matter. I fundamentally disagree.
    I think Adobe got this one wrong - and I cast a vote that they loosen the noose on zip files on a future release. I'd like to hear other users' thoughts on this issue. Adobe is good at listening to their users - so tell them what you think.
    Cheers,
    Dan

    This information is for Acrobat Professional users in Windows XP. I don't know if it
    is valid for PCs using only Acrobat Reader.
    Adobe is wrong but that doesn't mean we have to live with their problem.
    Since when does anyone open attachments from unknown or unsolicited sources?
    Some zip files can be or contain executables (.exe) but that is no excuse for not
    knowing where your emails or files come from and not having up to date virus software.
    Adobe did not disallow zip file attachments, they just buried the enable so deep
    that the average user would never find it and using an editor (regedit) that most users
    have never heard of. As far as I am concernced, without any word from the Adobe
    Tower, this is pure marketing.
    I have inserted a jpeg photo that shows, for Windows XP, where to find the hidden enable
    and how to edit to allow opening OR saving (recommended) zip files. This is the
    file I have been passing to my Engineers and suppliers. The information comes from
    a help call I put in to Adobe.
    Editting the registry is not difficult, you just need to be sure that nothing unusual
    happens while editting the text or saving after done. Have an IT person or other
    superuser do the edit if you are unsure. After editting and saving, select  BuiltInPermList,
    then pulldown  File   and click   Export. This produces a one-click edit that will fix the
    problem on any Windows XP computer.
    Adobe is also blocking rar, tar and tgz compressions.
    This edit needs to repeated anytime Acrobat is reinstalled.

  • Is it possible to save HTML files to touch memory?

    Is it possible to save html files to the touch memory and view them when not within WiFi range? When traveling I'm more often than not without a WiFi connection. I do NOT want an iPhone nor it's hefty wireless data bill. I simply want to view locally saved HTML files. Is that possible without jailbreaking? Thank you.

    This is a great question. I want to buy a Touch but I won't buy one until I know the answer to this question.
    I went to an Apple store last week and told them I ride the bus to work every day. I said I wanted to download information over my wireless network at home, then view the info while riding the bus to work.
    The guy told me that I could view whatever was in my cache. I don't know how big the cache is. I read through the Itouch user guide and couldn't find any info.
    If someone has some useful experience, it would be very appreciated. If you can use the cache, how many typical web pages can you store?

  • Generate a HTML file from JSP

    Does anyone know how to generate a html file from code in JSP without using a form, as i have one of those already. I don't want this page to appear, just exist.
    Thanks

    You can do like this:
    File outputFile = new File("Publicacao.html");
    FileWriter escrever = new FileWriter(outputFile);
    escrever.write("<center><h1>Assunto:" + assunto + "</h1></center><br><center><h2>Titulo:" + titulo +"</h2></center><br><center><h3>Sub Titulo:"+subTitulo+"</h3></center><br>"+ conteudo +"<br>");
    escrever.close();

  • How do I save a pdf as an html file without losing formatting?

    How do I save a pdf as an html file without losing formatting?  My coworker is able to do this on her Adobe 9 by saving to html css 4.0 - I have Adobe 11 and have not been able to save as an html at all without loosing formatting.

    Are the PDF files that you are attempting to Save As HTML tagged?

  • How to not include the path when creating pdf from many html files?

    I use "Merge File into a Single File" to create a pdf file from many html files. However, the generated pdf file have the path information of the html files. I'm wondering how to generate a pdf without the path information.

    Go to CREATE > Create PDF from Web Page > Click the SETTINGS button on the dialog that follows > Uncheck "Place headers and footers on new page".
    Thanks!

  • How to generate PDF file from HTML file using Acrobat API's

    Hi,
    I want to generate a PDF file from an HTML file on server side(C# .Net).
    Their is a COM interop called "AcrobatWeb2PDF" availaible but could not find any document regarding how to use it.
    I cant use "Adobe live cycle PDF Generator" as we just have license for Adobe Acrobat 8 Professional.
    Please help...
    Thanks and Regards,
    Anand Mahadik.

    > It is hard to believe that Adobe doesn't provide a toolkit for generating PDF files, so many web based applications have vector based content that needs to be converted to PDF!!!!
    They do, it's just not free (A company in business to make money? I'm sure IBM would never think this way... ;)). As mentioned you have Adobe LiveCycle PDF Generator, which you can customize and extend with Java. You also have the Adobe PDF Library SDK, which is written for use with C/C++ although if you license it from Datalogics (the only company in NA Adobe allows to license the PDF Library) you will also get .NET and Java interfaces (part of the DLE - DataLogics Extensions).
    > There must be a way to generate PDF dynamically on a server or from Javascript!
    JavaScript? Not really, no. As far as I'm aware JavaScript has no file system access capabilities without some form of intermediary (like sending the data to a webservice that writes it out to file). How would you create a PDF file with JavaScript?
    The PDF Standard is also in ISOs hands now (ISO 32000-1:2008), it is no longer owned by Adobe - you can download a copy of the specification from them and write your own library based on that as well.

Maybe you are looking for

  • Sap Payroll error log report

    Hi All, We are developing Report on SAP Payroll log with the error message . Is any table exist in SAP where we can get the standard error message repositery and then convert it in the User freindly error message ? Thanks H

  • How can we assign an action triggered by an event to a Background job?

    Hi All,         At the moment we are having an on click action event "EXECUTE"  [GSACTIONS/ActionOV ->eh_onexecute] , on click of this event , it is triggering a BADI which has a rewritten method "IF_EX_EXEC_METHODCALL_PPF~EXECUTE" in which we have o

  • PDP SRM 7.01

    Hi there, We are using ECC EHP5 and SRM 7.0 EHP1. We are running the Plan-Driven Procurement scenario. We have implemented badi ME_REQ_SOURCING_CUST BADI parameter CV_AUT_SOURCING  is set to active. CV_EXT_RFX_IND  not active CV_EXT_SC_IND    not act

  • Back-up doesn't progress. I have a large catalog...should I keep waiting or is something wrong?

    I am trying to do an incremental back-up. The Organizer has been calculating total media size for over 14 hours and is still at the initial 3%.  I have a large catalog.Should I keep waiting or is something wrong?

  • Setting up Time Sync when all domain controllers are virtual machines?

    We have 2 existing server 2008 domain controllers on 2008 Hyper-V.  We plan to set up a third domain controller in a new AD site at a remote site that will be Server 2012 R2 on 2012R2 Hyper-V. PDC role DC is on one of the DCs in the original site. Ho