Acrobat: Javacode um einen Hyperlink durchzuführen !°!!!!!!SEHR WICHTIG!!!!!!!

Hi,
ich schreibe eim Javascript für ein pdf-file, ich brauche nur noch den Javacode, um einen Link in das Internet auszuführen, dh. der Webbrowser soll sich öffnen und an die besagt url gehen!!!
bitte helft ist sau wichtig

Similar Messages

  • Fehlermeldung i-tunes. Soll mich  mit dem Support in Verbindung setzen soll um die Transaktion durchzuführen

    Bekomme seit dem Update Fehlermeldung, dass ich beim Kauf mit dem Support in Verbindung setzen soll um die Transaktion durchzuführen. Hat noch jemand das Problem und was kann ich tun?

    Ich habe seit gestern dasselbe Problem. Es bestand allerdings auch schon vor dem update auf Version 10.5. . Ein Anruf beim Support hat auch erstmal kein Ergebnis geliefert.... Hmpf.

  • Mein iPad braucht 20 min um Aktualisierungen von iTunes durchzuführen

    ein iPad braucht 20 min um Aktualisierungen von iTunes durchzuführen
    wieso?
    woran hängt es?
    es werden auch nicht alle Musikalben überspielt
    wieso?

    Ich habe das gleiche problem....ich hoffe auf eine schnelle loesung...

  • Acrobat XI Pro: "in Datei zusammenführen" als Aktion?

    Wie kann ich die Acrobat-Funktion "in Datei zusammenführen", die mir normalerweise das Kontextmenü anbietet nach Markieren mehrerer PDFs, als Aktion ausführen? Konkret habe ich hier einen Ordner, in dem mehrere Unterordner liegen, die wiederum jeweils etliche PDFs enthalten, die zusammengeführt werden sollen zu jeweils einer Datei. Die PDFs in jedem Unterordner sollen also zu einem PDF werden.

    Sehen Sie bitte den folgenden Link für die Zusammenführung ein PDF-Dokument: http://help.adobe.com/en_US/acrobat/using/WS58a04a822e3e50102bd615109794195ff-7edc.w.html
    Sehen, ob das hilft ....
    Andernfalls müssen Sie manuell auswählen Unterordner und verschmelzen alle Dateien im Unterordner ..

  • How do I prevent Acrobat from encoding # in hyperlinks to %23 when generating a PDF from Word 2010?

    Existing posts seem to indicate that the only solution is to manually modify each hyperlink in the generated PDF. This is a tedious and time-consuming process that I would like to avoid at any cost. Is there an alternative?
    Joe

    It is relative, but I don't want it to be. The problem is that I don't see any way in either Acrobat or InDesign to specify that it must be absolute.
    It sounds like if I were to keep my working file on a local drive and export from there, it would automatically create an absolute link to the network path, but another designer is also working on the project and needs to be able to access the file. I could also copy the entire working folder to a local drive before exporting each time, or manually update the links in Acrobat from a local copy of the PDF after each export... but these both seem like ridiculous extra steps that shouldn't be necessary.
    Is it really possible that neither program allows the user to control whether a link is relative or absolute? Should I post this in the InDesign forums, though the issue seems to be in Acrobat?

  • Acrobat 8 creating overlapping hyperlink areas

    I created a 50 page word document and added a Table of contents. The items in table of contents are hyperlinked to the sections in the document. When I convert it to PDF, the hyperlinks get converted too, but their "hover" area is too big.
    The result is that even when my cursor is 1/2 inch away from the link, I can click the link. On the table of contents page, this has created overlapping links. If I click on a link, it takes me to some other page. Curiously enough, the same thing happened when I tried to make a PDF from a newsletter I made in InDesign.
    Any solutions for this problem?

    Thanks for the suggestion.
    Now that you mentioned it, I changed the font and now it works fine. It is font specific. I was originally using Cambria font.
    When I make the PDF directly from Word's PDF plugin, I do not have this problem. It is only with Acrobat.
    I am using Word 2007. My Acrobat version is 8.1.3.

  • How do you Make an Interactive Drop Down Menu in Adobe Acrobat Pro That Uses Hyperlinks?

    Hi first off let me point out and apologise in advance for my ignorance and possibly my misuse of the correct terms, I'm new to this.
    Anyway here goes, my best attempt to try and explain myself. Using Adobe Acrobat Pro I am trying to create a drop down menu that lists a set of documents. Once you click an item in the drop down menu it then opens up the corresponding document. So far example the Menu reads "Documents" and below it there is three options "Dogs" "Cats" "Hotdogs" when you click on "Hotdogs" you open up the document for hotdogs etc.
    I have actually done it once before using Javascript and a combo box and I think basically you buried the links to documents in a series of bookmarks, the Javascript code then was basically a shortcut to activate those bookmarks.
    So in short, could someone please tell me the code I would need to make this happen? I have looked extensively for the right forum post to see if my question has already been covered but I couldn't find anything and I possibly could have been using the wrong search terms.
    Please ask me to clarify anything to help you understand what it is I'm asking.
    Thank you in advance for all your help.
    Elliot.

    Hey I think I found a solution to my own problem I made an "OK Button" right click>properties>actions>select action>run a javascript>add - and executed this code:
    function searchBookmarks(bkm, nLevel, bkmName)
      if ( bkm.name == bkmName ) return bkm;
      if (bkm.children != null) {
      for (var i = 0; i < bkm.children.length; i++)
      var bkMark = searchBookmarks(
      bkm.children[i], nLevel + 1, bkmName);
      if ( bkMark != null ) break;
      return bkMark;
      return null;
    function bookmarksAsPopUp(bookmarks)
       if(bookmarks && bookmarks.children)
         for(var i=0;i<bookmarks.children.length;i++)
      bookmarkName = bookmarks.children[i].name.replace(/\s{2,}/g,' ');
      while (bookmarkName.indexOf(String.fromCharCode(11)) > 0)
      bookmarkName = bookmarkName.substring(0,bookmarkName.indexOf(String.fromCharCode(11))) +" "+ bookmarkName.substring(bookmarkName.indexOf(String.fromCharCode(11))+1)
      popUp = popUp+"{cName: '"+bookmarkName+"', cReturn: '"+bookmarkName+"'" ;
      if(bookmarks.children[i].children)
              popUp = popUp + ", oSubMenu: [";
       bookmarksAsPopUp(bookmarks.children[i]);
       popUp = popUp + "]";
      popUp = popUp+"}";
      if (i != bookmarks.children.length-1)
      popUp = popUp+", "
       return popUp;
    var popUp = "";
    bookmarksAsPopUp(this.bookmarkRoot);
    var cChoice = eval("app.popUpMenuEx(" + popUp + ")" ) ;
    bkm = searchBookmarks(this.bookmarkRoot, 0, cChoice );
    if ( bkm != null ) bkm.execute();
    Then you can just add your own bookmarks and they populate the pop-up menu automatically (including the hierarchy sub menu structure, you nest bookmarks within a main book mark.) which is a more efficient way than the one I used before.
    I take no credit for this by the way my source is here PDF Bookmarks as a PopUp Menu | The Practical:PDF Blog
    I hope this helps anybody looking to do the same.

  • Acrobat XI misses last hyperlink in TOC

    Converting Word 2010 docs to PDF with Acrobat XI ...
    The last row of the TOC does NOT become a link to the page. When hovering the mouse over the last row, there is no hand symbol as appears over the other TOC entries.
    Happens every time I convert to PDF. I simply use the tool button in Word's Acrobat tool bar to convert to pdf.
    IS there a fix for this?

    Somewhat roundabout way but this should work:
    Is there easy way to print bookmarks Acrobat Pro 9.5

  • Update Photoshop CS2 (Adobe Bridge, AdobeStockPhotos)

    Ich habe das angebotene Update für Photoshop CS2 durchgeführt. Angeboten war wurde dieses für Adobe Bridge und AdobeStockPhotos. Am Ende des Updates wurde zum Neustart des Computers aufgefordert um den Akutalisierungsvorgang abzuschließen.
    Gesagt, getan.
    Nach Neustart, direkt wieder die Aufforderung einen Neustart durchzuführen. Dies jetzt nach jedem Start des PC's.
    Wie komme ich über diese Hürde hinweg?
    Gruß
    Jürgen Schwarzer

    Hey Jim,
    unter dem Menü Bearbeiten, findet sich bei mir nur der Punkt "Voreinstellungen".
    Bei den Unterpunkten wie "Allgemeine", "Dateien verarbeiten", etc. kann ich leider keinen Punkt finden, bei dem ich Update-Optionen beeinflussen könnte - aber vielleicht habe ich auch nur Tomaten auf den Augen.
    Könntest du mir genauer beschreiben, wo ich diesen Punkt eventuell finde.
    Unter dem Menü "Hilfe" findet sich ein Punkt der "Updates ..." genannt wird. Aktiviere ich diesen, kommt auch nur wieder die Meldung, dass ein Neustart erforderliche sei, bevor der Aktualisierungsvorgang fortgesetzt werden kann. Dies habe ich ja, wie bereits beschrieben, mehrfach getan u. trotzdem erscheint diese Meldung immer wieder, auch nach einem Neustart.
    Trotzdem vielen Dank, vielleicht siehst du noch eine andere Möglichkeit.
    Gruß Jürgen

  • Studentenversion wie oft im Jahr kaufen?

    hallo und guten Tag,
    ich bin neu hier, falls im falschen Forum gepostet, bitte verschieben.
    Ich habe eine Studentenversion CS 5.5 Design Premium für Windows, vor wenigen Wochen gekauft. Jetzt steige ich im Herbst auf Mac um. Dann möchte ich eine CS 6 Master Studentenversion für Mac kaufen. Ab wann ist das möglich? Muss ich ein Jahr warten oder kann ich, weil ich die Plattform - dann Mac statt Windows - wechsle, früher kaufen?
    Danke für einen Hinweis, falls das schon jemand gemacht hat. Oder hat jemand eine EMail-Adresse von Adobe, wo man die Antwort auch schriftlich bekommt?
    Gruß
    Otto

    Ist das nicht an eine Version gebunden? Das heißt mit der CS6 kannst Du ja wieder neu kaufen. Pro Person und Version gibt es bei normalen Versionen einmal die Möglichkeit einen Swap durchzuführen. Wenn man mehrere Versionen besitzt, muss man einmal alle Versionen switchen, die man switchen will, ein zweites Mal geht nicht.

  • Word 2000 hyperlinks don't work in .pdf created with Acrobat 9 Pro

    I'm new to Adobe Forums, so please overlook the effrontery of my posting a query previously discussed. Perhaps someone can simply reply with a link to the prior discussion. I have installed Acrobat 9.2 Pro in 2 computers, one running XP64 Pro, the other XP32 Pro. Word 2000 is installed in both. All Word hyperlinks work fine, but after .pdf conversion using Acrobat 9.2 Pro, none of these work. In 'Preferences', I have navigated Convert to PDF > Microsoft Office Office Word > Edit Settings > Add Links to Adobe PDF File and confirmed that the Add Links feature is enabled. Having ascertained that this glitch is not specific to either XP64 or XP32 operating systems, I uninstalled Acrobat 9.2 Pro from the XP32 computer and reinstalled Acrobat 6.1 Pro. Then using the same Word 2000 document, I converted to .pdf using Acrobat 6.1 Pro, with no problems whatsoever. This looks like a serious bug in Acrobat 9 Pro, which the telephone support folks have acknowledged. Alas, they won't give me the tiniest clue how to resolve it, nor any workaround, but merely refer me to AdobeForums.com for help. I suspect a corrective patch or 'upgrade' will be forthcoming, but meanwhile, if anyone knows of a workaround, please enlighten me. Thanks. /rmbrown

    Thank you, CtDave, for your speedy reply and for the 'Acrobat Technical Evangelist' knowledge base article. Word 2000 is one of Microsoft's masterpieces - by disabling 'autosave', the application is totally stable, does not require 'activation' by Microsoft. Acrobat 9 enables 'saving' of interactive .pdf forms, a most valuable feature and one much appreciated by anyone completiing such forms. There must be more to this issue than 'incompatibility', because I can create a test Word 2000 document, hyperlink a valid URL, convert to .pdf with Acrobat 9, and the hyperlink works fine in Acrobat 9. When I attempt to do this using a much more complex Word 2000 document, embedded with scores of hyperlinks, these links fail to work following conversion to .pdf with Acrobat 9, but work fine following conversion to .pdf with  Acrobat 6. I can then use Acrobat 9 to open the .pdf created with Acrobat 6, and successfully edit any of these fully functional hyperlinks using the 'Link tool'. I don't know who prepared the 'Acrobat Technical Evangelist' article (AF1908DCd01) - no credits were cited, and I'm far from certain that this authentically belongs to Adobe's knowledge base. So I appreciate your sharing this information with me, but I cannot say that my question has been definitively answered. If you have any further information or tips, please reply in this thread. /rmbrown

  • Hyperlinks in InDesign Okay But Not in PDF is this an Acrobat Issue?

    Hi,
    I'm working on my first project in InDesign....interactive PDFs/ebooks.  I've entered my links in the ID file (CS6) in two different ways...the first with the "htpp://" prefix and the second with just the address and ".com". (no www.).  I've noticed that my version of PDF works when I export as print, and specify hyperlinks.  My coworker, working with the same file, will not generate some of the hyperlinks, and I'm guessing they are the ones WITHOUT the http prefix. (The link that appears instead is "resource://pdf.js/web").  My general question...have you run across this? Is this an Adobe Acrobat Pro issue (I have version 10)?  The links are correct in the ID file.
    I can generate these PDFs, so I'll be able to finish my project on time, but thought I would throw it out to the community in case anyone  has run across this.
    Thanks!

    Did you explicitly define the in the Hyperlink panel? Or only in text?
    Set up them correctly in the Hyperlink panel.
    Acrobat is reading out Hyperlinks depending on version and settings, but only when you set it up in InDesign’s Hyperlink panel you will get correct results.

  • Hyperlinks from Word 13 to Acrobat

    I created a document with MS Word 13 and want to generate a PDF of it using Acrobat 9. All works fine, except that the hyperlinks in the MS Word document will not transfer over to PDF. How do I get Word or Acrobat configured so that hyperlinks automatically transfer over to PDF?

    For the newest WORD, you will need the newest Acrobat to transfer the tabs and hyperlinks. With AA9, you will have to add them manually. The alternative is to upgrade Acrobat or downgrade WORD.

  • Acrobat Standard 8.2.6 "fehlende PDF-Maker Dateien"

    Hallo,
    ich besitze den Adobe Acrobat Standard 8.2.6 (neuste Version) und erst seit neustem kann ich ihn nicht mehr benutzen.
    1. Wenn ich 1 oder 2 Datein in einem Ordner per Rechtsklick (convert to adobe pdf oder combine..) zur pdf machen will funktioniert das nicht mehr. Meldung: Fehlende PDF Maker Dateien - Reparatur.
    2. Wenn ich den Acrobat öffne und Office 2010 Professional Formate zur PDF zusammenführen oder einzeln erstellen möchte wird wieder angezeigt
    Fehlende PDF Maker Dateien - Reparatur.
    Ich habe diese Reparatur mehrmals durchgeführt - keine Wirkung.
    Acrobat wurde als Administrator ausgeführt.
    (ich habe lediglich den speedlauncher aus dem Autostart genommen aber auch mit funktioniert es nicht)
    Gerade die Funktion des Acrobat Dateien zusammenzuführen ist mir sehr wichtig. Das PDF drucken funktioniert noch.
    Das Acrobat Office PDFMaker Addin im Word ist aktiviert.
    Mein System: Windows 7 Professional 64bit mit Office 2010 Pro und Acrobat Standard 8.2.6
    Dieses Problem tritt auch auf meinem alten Rechner auf Windows Vista 32bit mit Office 2007 und Acrobat Standard 8.2.6
    Ich hoffe sehr dass es hierfür eine Lösung gibt.
    Da es damals immer funktioniert hat und erst neuerdings nicht mehr geht habe ich die Befürchtung man will die Adobe Kunden dazu zwingen sich einen neuen Acrobat zukaufen.. ich hoffe ich liege falsch.
    edit1: Bilder lassen sich zur pdf zusammenführen. Es scheint mit Office zusammenzuhängen.
    Freundliche Grüße
    FC

    Hallo in die Runde,
    ich bin sehr froht, auf noch mehr User zu treffen, die ein ähnliches Problem haben.
    Ich nuutze Adobe Acrobat Professional 8.1.3 und Office 2010 unter Win XP SP3. Leider erhalte ich immer wieder die Fehlermeldung: "Fehlende PDFMaker Dateien" wenn ich mehrere Word Dokumente zu einer PDF Datei zusammenführen möchte.
    Der PDF Druck einer Word Datei funktioniert einwandfrei
    Ratschläge aus diesem Thread habe ich angewendet, aber leider bleibt es bei diesem Problem.
    Über weitere Lösungsvorschläge würde ich mich sehr freuen.
    Beste Grüße,
    David

  • Bridge CS6 (Keine Rückmeldung) - sehr sehr langsam

    Hallo ich habe die Adobe CS6 Master Collection und nutze diese mit einem PC mit Windows 7 Professional 64bit.
    Ich habe nutze Hauptsächlich Photoshop, Indesign und die Bridge. Es lief soweit auch alles gut bis zum letzten Adobe Update. Photoshop und Indesign laufen immer noch stabil und schnell aber mit der Bridge ist das arbeiten nicht mehr möglich. Es dauert mehrer Sekunden bis Minuten bis ein Ordner geöffnet ist aber selbst schon am anklicken von einer Datei kommt immer "Keine Rückmeldung" und erst nach mehreren Sekunden bis Minuten geschieht eine Aktion.
    Das Problem bezieht sich nur auf die Bridge und ist erst seit dem letzten Update. Ich habe mir die Mühe gemacht und habe die ganzen Programme komplett deinstalliert und neu aufgespielt und das ist das Problem weg bis ich wieder die Updates mache. Wenn ich den Benutzer wechsel ist das Problem auch weg.
    Ich bin echt genervt und am verzweifeln. Hat jemand einen Rat?
    Der Cache von der Bridge habe ich bereits gelöscht und auch einen neuen Temp angelegt. Ohne Verbesserung!
    Keine Updates mehr machen ist auch nicht die Lösung da bei einer 3500 Euro Software möchte ich die Updates schon nutzen.
    Andauern einen neuen Benutzer anlegen geht auch nicht da der Rechner mit dem Geschäftsnetzwerk verbunden ist und die neuen Benutzer somit sehr aufwendig umzuziehen sind.
    Grüße
    Cult

    Vielen Dank für Deine Antwort.
    @ Mylenium
    Die Benutzer sind als Admin angelegt. Den Tip es mit einem anderen Nutzer zu versuchen kommt von Adobe direkt - ist jedoch nicht die zufriedenstellende Lösung.
    Beim Virensacanner habe ich nichts festgestellt. Generell läuft die Bridge aber eben nicht mehr so schnell wie zuvor bzw so langsam das ein produktives Arbeiten unmöglich ist.
    @ Willi Adelberger
    Die Bridge greif auf mehrere Laufwerke und auch Ordner zu. Das hat sie jedoch zuvor auch getan und da lief ja alles schnell und stabil. Ich habe den Zugriff auch mal auf einen Ordner auf einem Laufwerk beschränkt und die Bridge braucht trotzdem knapp eine Minute um einen "Klick" auszuführen.

Maybe you are looking for