Renaming Bookmarks

I just finished a project in InDesign which was then exported to PDF to make a slide show of 517 slides, each with a title that was bookmarked by creating a Table of Contents in InDesign.
My problem is that all of the titles were in the form of 000-A[A] where the first three characters were a three-digit number, and the fourth and optional fifth were letters. The ID document was created using Data Merge, and in the original data file there were no hyphens, making some of the combinations difficult to read. I used GREP to add the hyphen with a thin space on either side to achieve the look I wanted before adding the TOC.
After export to PDF I discovered that the bookmarks generated all had little square boxes around the hyphens representing missing glyphs for the thin spaces. I presume this is due the choice of font used by the OS to display the bookmark links, and I don't see any way to control that on my own system, let alone on a remote user system.
I worked around this by removing the thin spaces from the titles and re-exporting the PDF, but I would have preferred to leave them in. Is there any way to run a script in Acrobat, similar to running a find/change in ID, that would go through and automatically rename 500+ bookmarks, removing the unavailable thin space characters while leaving them in place on the page?
Peter

Although the project is now out the door, I'd be interested in some hints. I'd say I'm a "literate novice" in that I used to write a bit of Java code now and then, and at least understand the syntax in javascript, and I'm starting to learn GREP for use in ID, so the concept isn't foreign.
Is there a reference on the DVD or something for finding the right names for properties in Acrobat?
Now that I know you can use javascript to alter the file itself, rather than just perform a secondary action, I'd approach this in terms of creating a bookmark array and looping through it looking for instances of the offending characters (thin spaces in this case) and removing or replacing as you go.
While you are being this helpful, is there any way to change the font in the bookmarks panel?
Peter

Similar Messages

  • How to rename bookmarks

    I'm simply trying to rename a bookmark via javascript, and keep running into the notallowederror: security settings... Previously, when I ran into this problem, I could avoid it by certifying the document, which would allow the javascript to run as privileged.  However, renaming bookmarks is apparently quite a sinister activity, and needs extra security??  I made folder level scripts:
    var renameBook = app.trustedFunction(
      function(thisPage)
        app.beginPriv();
        var books = this.bookmarkRoot.children;
        for (var i = 0; i < books.length; i++) {
          var vNotes;
          if (books[i].name == "Visit Notes") {
            vNotes = books[i].children;
            for (var j = 0; j < vNotes.length; j++) {
              if (vNotes[j].name == thisPage)
                vNotes[j].name = vNotes[j].name + "-signed: " + new Date();
        app.endPriv();
    and call that from my document-level script, but I get the same problem...  what am I doing wrong?

    Thanks for the response.  No, I'm not trying to use it in Reader.  I'm working exclusively in Acrobat.  But since you brought it up, what you're saying is that even if I got this working in Acrobat and saved it as Reader Enhanced, it wouldn't be able to change the name of the bookmark using Reader? 
    When I use either the trusted function (in the folder level script) or try to change the bookmark name directly in my local scripts, I get:
    NotAllowedError: Security settings prevent access to this property or method.
    Preferences:
    Javascript:
    enable acrobat javascript "On"
    enable menu items javascript execution privileges "On"
    enable global object security policy "Off" (although I've tried it both ways)
    Security (Enhanced):
    enable enhanced security "Off" (tried it both ways)
    I noticed that I could make it work correctly through a menuitem, but that I want this to be affected when I sign a digital signature.  Perhaps there's a workaround on this using the menuitem (perhaps make a hidden menuitem, and execute that? I'm not quite sure how to make that work, but maybe that's a possibility).  I'd prefer to make this work the way it seems like it's supposed to...  Thanks again.

  • Can't rename bookmarks

    Hello, I'm using firefox 23.0 on linux, just tried to rename a bookmark and I have no "Properties" menu item anywhere and the textbox labeled "Name" in "Show all bookmarks" is grayed out for every single bookmark I have. Of course I also tried typing in the grayed out textbox and, as expected, it doesn't change.
    I've read several support webpages on this issue and every one points to those two obvious solutions but, in my firefox, they don't work (meaning, not a single context menu has a Properties option, neither the textbox in Show All Bookmarks allows me to type in anything).
    What's the deal with renaming bookmarks?

    '''Try Firefox Safe Mode''' to see if the problem goes away. Safe Mode is a troubleshooting mode, which disables most add-ons.
    ''(If you're not using it, switch to the Default theme.)''
    * You can open Firefox 4.0+ in Safe Mode by holding the '''Shift''' key when you open the Firefox desktop or Start menu shortcut.
    * Or open the Help menu and click on the '''Restart with Add-ons Disabled...''' menu item while Firefox is running.
    ''Once you get the pop-up, just select "'Start in Safe Mode"''
    '''''If the issue is not present in Firefox Safe Mode''''', your problem is probably caused by an extension, and you need to figure out which one. Please follow the [[Troubleshooting extensions and themes]] article for that.
    ''To exit the Firefox Safe Mode, just close Firefox and wait a few seconds before opening Firefox for normal use again.''
    Please report back soon.

  • Trouble renaming bookmarks

    Since one of the most recent updates, I have not been able to rename bookmarks on Firefox 6.0
    Also, unrelated, but for a few updates now, videos have been running slow on Firefox (on Netflix, Hulu, etc).
    Thank you for any help you can provide!

    Hi, That did not fix it, but after some searching i found this link. the problem is that i was importing from vista to xp
    http://www.winhelponline.com/blog/error-not-a-valid-bookmark-file-when-importing -ie8-bookmarks-favorites-to-ie7/

  • How do i rename bookmarks

    Help...How do I rename bookmarks

    Hi cheyenee starr,
    To rename bookmarks in a PDF file, open the PDF in Acrobat, display the bookmark pane, and then right-click the bookmark that you want to rename and choose Rename from the pop-up menu.
    Please let us know if you need additional help!
    Best,
    Sara

  • Can't rename bookmark in nemo

    Hello everyone.
    I connected to a WebDav server using nemo and saved it to my bookmarks.
    Now I want to rename it, but when i right-click to the symbol and choose rename, nothing happens.
    Nemo writes following to the Terminal:
    Terminal wrote:(nemo:1357): GLib-GObject-CRITICAL **: g_object_set: assertion `G_IS_OBJECT (object)' failed
    Last edited by Libelsema (2013-04-11 09:49:36)

    I have the same problem with *any* bookmark.  I still haven't been able to figure out where this gnome-object error is coming from, but a temporary workaround is to call up the Edit Bookmarks dialogue (default Ctrl-B) and rename the bookmark there.

  • Batch renaming Bookmarks

    I currently have Acrobat X Professional.  I have a 3000+ page document with several hundred bookmarks.  I want to split the document, but unfortunately the bookmarks are not unique and contain "/", which prohibit the split.  Is there a java script or program that will batch rename the bookmarks replacing "/" with dashes and adding a unique identifier to the end of a bookmark name (like 001, 002, etc)?

    I figured it out. As you saw above, I wasn't having a problem batch renaming the title of the clips. I was having a problem with the counter. I learned in a previous posting that when you change the name of a subclip of a clip, it changes the name of both the original clip (clip in event browser, not hard drive) and the other subclips associated with it. It doesn't matter how you rename the clip (changing the name in the Name box of the Inspector, change it by clicking the name of the clip once in the event browser and typing it in, or using custom naming (click on the gear button in Inspector to find it), the name will always change correctly. For some reason (I guess a FCPX thing lol), you can't use the counter in custom naming correctly unless you change the original name through custom renaming. If you change the original name of a clip the other two ways, then try to change the new name of the clip using custom renaming with the counter, the counter will always stay the same number.

  • How do I rename bookmarks pinned to the taskbar?

    Firefox 18.0
    I have some bookmarks pinned to the taskbar. They show the URL of the link, not the name of the bookmark. For example; in my bookmarks dropdown menu I have a bookmark named 'hotmail', but when I pin it to the Firefox icon in the task bar it shows up as https://login.live.com.....
    How do I rename it or get it to show the same name as in the dropdown menu?

    Sorry for taking so long to respond, but this worked.
    Thank you very much!

  • Is there any way to rename bookmarks? It was possible with older versions of Firefox, but can't do it with 3.6.23

    Used to be that when I bookmarked a page or site, Firefox provided an option for renaming. Doesn't seem to do so anymore. Nor can I rename in the bookmark list when I'm "managing" or editing bookmarks.

    In the Bookmarks Manager you can change the properties of a bookmark in the Details pane at the bottom right.<br />
    That Info pane has a More/Less button to show or hide extra properties.
    * You can change the Properties (including the name) of a Bookmark or Tag in the Details (Properties) pane at the bottom of the right pane in the Bookmarks Manager (Bookmarks > Show All Bookmarks: Shift+Ctrl+B) after selecting an item. You can rename a tag by selecting the Tags folder in the left panel and change the name in the Info pane at the bottom right.
    * You can make changes to a Bookmark in the Bookmarks menu drop down list or in the side bar (View > Sidebar > Bookmarks, Ctrl+B) via the Properties entry in the right-click context menu.
    * You can open a bookmark in a tab and click the yellow (blue on Mac) star in the location bar to open the "Edit This Bookmark" dialog and see in which folder a bookmark is located.

  • Prevent Safari From Renaming Bookmarks

    Hello,
    On my desktop, I created a folder of links that a regularly visit. I have renamed some of the links so that they are easier for me to understand and because some of the given names are too long. I have now placed them into my bookmark bar in Safari. However, I've noticed that all the links I have renamed have reverted back to its original names. Is there a way to prevent this from happening? I renamed quite a few them and don't want to have to repeat the same process.
    Your help would be greatly appreciated.
    Antonella

    That works, Niel. Thanks.
    But how to make this the default behavior so one needn't press the shift key?

  • Renaming Bookmarks using javascript?

    I have several pages that are generated from another macro and compiled into a single binder. The problem is when we have multiple PDFs and we need to combine them the bookmarks numbers do not sync.
    So if I have pages in the first PDF ranging from 001-073 and then insert another PDF the bookmark ranges starts back to 001 and not picking up at 074 to XXX. Is there a possible solution to this?
    You can see a snap shot of the issue below.
    Thanks guys!

    try67 I am looking for an automated process, there are 200-500 bookmarks depending on the project. If I understand you correctly you are saying to modify
    each bookmark by right clicking/rename?? Or maybe I need to read that again after I have my coffee.

  • How do you rename bookmarks?

    I want to rename a bookmark.

    One method is
    # Firefox Button -> Bookmarks -> Show All -> (The bookmarks manager will open)
    # Click on the bookmark you want to rename (note additional info at the bottom)
    # Rename the bookmark
    * use the Name field, it is editable in much the same way as say a file name or web address. Put the cursor in it and type. (Changes only show up once you move from that, eg click on another bookmark)
    (bit slow with that answer)

  • How can i "rename" bookmarks

    How can I "rename" bookmarks

    In Safari, go to Safari > Bookmarks > show all bookmarks > right click and select Edit name

  • Safari 5.1.4 renaming "Bookmarks Bar" to "BookmarksBar", causing the bookmarks bar to disappear

    After I upgraded to Safari.5.1.4, I noticed that my bookmarks bar was completely gone. I went into Show All Bookmarks, and I noticed under the BOOKMARKS heading on the left, there was a folder called "BookmarksBar" (without the space between Bookmarks and Bar). Thinking I did something wrong, I used drag and drop to move all the folders from "BookmarksBar" to "Bookmarks Bar". Once I did this, the bookmarks bar appeared correctly.
    However, after shutting down Safari and restarting, the bookmarks bar was gone again! I did a Show All Bookmarks, and the "Bookmarks Bar" folder was again renamed "BookmarksBar". It seems now that I can't maintain my bookmarks bar between Safari sessions.
    Is anyone else experiencing this problem?

    Hi...
    You mentioned both bookmarks and extensions in your orginal post on this thread >  https://discussions.apple.com/message/17872836#17872836
    The problem is when you start multiple threads for the same issues, we have to go back and check each thread to see what troubleshooting that's been tried that hasn't worked for you. That is time consuming not just for us but for you as well.
    In case you aren't aware, we are volunteerrs. This is a user to user forum. You are not addressing Apple employees here.

  • Renaming Playbook browser bookmarks?

    Hi,
    Can anyone tell me if it's possible to rename the browser bookmarks? I'm talking about new bookmarks that I create. It only seems possible to rename bookmarks if I save them to the homescreen.
    I've tried several times to do this but it doesn't seem to be possible.
    Any help?
    PS: I'm new to the Playbook so go easy on me if this is a simple problem.

    I agree with you about RIM. It isn't just the suckers, oops! I mean lusers that bookmark webpages, however. The entire Playbook design seems rushed and incomplete. There are somewhat polished apps like the Music App with large buttons and nice graphics in contrast to a documents folder that dumps all documents in one window/folder with no way to add new folders to organize documents. Downloaded files also can't be saved to or moved to subfolders to organize them even with some of the free file managers. I am taking pictures of my bookmarks. There will probably be about 50 pics of 11 partial names and partial URLs per page. My Google bookmark is on the last page. It takes a lot of scrolling to get to it and often a URL will stick to my finger and I have to start scrolling all over again after closing it.

Maybe you are looking for