How to restore broken links after server migration in Indesign CS3???

Hi All,
I have used my google skills to no avail and everything I have read here has been a dead end for me. I can't be the only person in this situation, so hopefully someone can help!
My marketing department has reached the storage limits of our shared network drive. Located on this drive is our (HUGE) image library which acts as a single central respository serving up our indesign links (read here: we don't package files - to conserve space). We have decided that in an effort to create a true archive and have more space for our image library we need to migrate the library to a new 16 terabit Drobo (yay!).
The problem is that every INDD file that links to the current library will now suffer from broken links. We literally have hundreds of INDD files and thousands of links. The good news is...the file structure isn't changing at all! Just the server location is changing. Is there any way to to a batch update of the links that tells INDD to look for the exact same file path on a different drive?
In short:
current image library (old server): marketing/image library/photos/products/multiple product folders
new image library (new server): drobo/image library/photos/products/multiple product folders
I want to point InDesign to the new server and have it pick up the file path without having to navigate to each and every file individually. Voila!
Is this even possible? Is there any 3rd party software to help? Other architechture solutions that might be suggested?
Thanks so much for the help!
Alex

I wrote several scripts to solve this problem, here is one of them.
// Change paths of links.jsx
// Script for InDesign CS3 and CS4 -- changes the path of each link in the active document.
// Version 1.0
// May 13 2010
// Written by Kasyan Servetsky
// http://www.kasyan.ho.com.ua
// e-mail: [email protected]
var gScriptName = "Change paths of links";
var gScriptVer = 1;
var gOsIsMac = (File.fs == "Macintosh") ? true : false;
var gSet = GetSettings();
if (app.documents.length == 0) {
     ErrorExit("No open document. Please open a document and try again.", true);
var gDoc = app.activeDocument;
var gLinks = gDoc.links;
var gCounter = 0;
if (gLinks.length == 0) {
     ErrorExit("This document doesn't contain any links.", true);
CreateDialog();
//======================= FUNCTIONS =============================
function CreateDialog() {
     var dialog = new Window("dialog", gScriptName);
     dialog.orientation = "column";
     dialog.alignChildren = "fill";
     var panel = dialog.add("panel", undefined, "Settings");
     panel.orientation = "column";
     panel.alignChildren = "right";
     var group1 = panel.add("group");
     group1.orientation = "row";
     var findWhatStTxt = group1.add("statictext", undefined, "Find what:");
     var findWhatEdTxt = group1.add("edittext", undefined, gSet.findWhatEdTxt);
     findWhatEdTxt.minimumSize.width = 300;
     var group2 = panel.add("group");
     group2.orientation = "row";
     var changeToStTxt = group2.add("statictext", undefined, "Change to:");
     var changeToEdTxt = group2.add("edittext", undefined, gSet.changeToEdTxt);
     changeToEdTxt.minimumSize.width = 300;
     var btnGroup = dialog.add("group");
     btnGroup.orientation = "row";
     btnGroup.alignment = "center";
     var okBtn = btnGroup.add("button", undefined, "Ok");
     var cancelBtn = btnGroup.add("button", undefined, "Cancel");
     var showDialog = dialog.show();
     if (showDialog== 1) {
          gSet.findWhatEdTxt = findWhatEdTxt.text;
          gSet.changeToEdTxt = changeToEdTxt.text;
          app.insertLabel("Kas_" + gScriptName + "_ver_" + gScriptVer, gSet.toSource());
          Main();
function Main() {
     WriteToFile("\r--------------------- Script started -- " + GetDate() + " ---------------------\n");
     for (var i = gLinks.length-1; i >= 0 ; i--) {
          var currentLink = gLinks[i];
          var oldPath = currentLink.filePath;
          oldPath = oldPath.replace(/:|\\/g, "\/");
          oldPath = oldPath.toLowerCase();
          gSet.findWhatEdTxt = gSet.findWhatEdTxt.replace(/:|\\/g, "\/");
          gSet.changeToEdTxt = gSet.changeToEdTxt.replace(/:|\\/g, "\/");
          gSet.findWhatEdTxt = gSet.findWhatEdTxt.replace(/([A-Z])(\/\/)/i, "/$1/");
          gSet.changeToEdTxt = gSet.changeToEdTxt.replace(/([A-Z])(\/\/)/i, "/$1/");
          gSet.findWhatEdTxt = gSet.findWhatEdTxt.toLowerCase();
          gSet.changeToEdTxt = gSet.changeToEdTxt.toLowerCase();
          if (File.fs == "Windows") oldPath = oldPath.replace(/([A-Z])(\/\/)/i, "/$1/");
          var newPath = oldPath.replace(gSet.findWhatEdTxt, gSet.changeToEdTxt);
          if (File.fs == "Windows") {
               newPath = newPath.replace(/([A-Z])(\/\/)/, "/$1/");
          else if (File.fs == "Macintosh") {
               newPath = "/Volumes/" + newPath;
          var newFile = new File(newPath);
          if (newFile.exists) {
               currentLink.relink(newFile);
               gCounter++;
               WriteToFile("Relinked \"" + newPath + "\"\n");
          else {
               WriteToFile("Can't relink \"" + newPath + "\" because the file doesn't exist\n");
     WriteToFile("\r--------------------- Script finished -- " + GetDate() + " ---------------------\r\r");
     if (gCounter == 1) {
          alert("One file has been relinked.", "Finished");
     else if  (gCounter > 1) {
          alert(gCounter + " files have been relinked.", "Finished");
     else {
          alert("Nothing has been relinked.", "Finished");
function GetSettings() {
     var settings = eval(app.extractLabel("Kas_" + gScriptName + "_ver_" + gScriptVer));
     if (settings == undefined) {
          if (gOsIsMac) {
               settings = { findWhatEdTxt:"//ServerName/ShareName/FolderName", changeToEdTxt:"ShareName:FolderName" };
          else {
               settings = { findWhatEdTxt:"ShareName:FolderName", changeToEdTxt:"//ServerName/ShareName/FolderName" };
     return settings;
function ErrorExit(myMessage, myIcon) {
     alert(myMessage, gScriptName, myIcon);
     exit();
function WriteToFile(myText) {
     var myFile = new File("~/Desktop/" + gScriptName + ".txt");
     if ( myFile.exists ) {
          myFile.open("e");
          myFile.seek(0, 2);
     else {
          myFile.open("w");
     myFile.write(myText);
     myFile.close();
function GetDate() {
     var myDate = new Date();
     if ((myDate.getYear() - 100) < 10) {
          var myYear = "0" + new String((myDate.getYear() - 100));
     } else {
          var myYear = new String ((myDate.getYear() - 100));
     var myDateString = (myDate.getMonth() + 1) + "/" + myDate.getDate() + "/" + myYear + " " + myDate.getHours() + ":" + myDate.getMinutes() + ":" + myDate.getSeconds();
     return myDateString;
You can specify a platform-specific path name, or a path in a  platform-independent format known as universal resource identifier (URI)  notation, or Mac OS 9 path name (for Mac).
For example any of the following notations are valid:
Windows
c:\dir\file (Windows path name)
/c/dir/file (URI path name)
//10.44.54.70/Test/images (uniform naming convention (UNC) path name of the form //servername/sharename)
//Apple/Test/images
\\10.44.54.70\Test\images (Windows path name)
\\Apple\Test\images (Windows path name)
where 10.44.54.70 IP  address of the server, Apple -- DNS name of the server, Test -- share name
Mac
The following examples assume that the startup volume is MacOSX, and that there is a mounted volume Remote.
/dir/file (Mac OS X path name)
/MacOSX/dir/file (URI path name)
MacOSX:dir:file (Mac OS 9 path name)
/Remote/dir/file (URI path name)
Remote:dir:file (Mac OS 9 path name)
Remote/dir/file (Mac OS X path name)
You can just copy a part of the path in Links panel and paste it to the script's dialog. In CS4, make sure to choose "Copy Platform Style Path" in context menu.
The case of the characters doesn’t matter: you can type both in upper and lowercase in the script's dialog. For example  — Test, test, TEST, TeSt — are all the same for the script.
Regards,
Kasyan

Similar Messages

  • HT4061 How to restore my ipad after downloading itunes?

    How to restore my ipad after downloading itunes?

    Try restoring the iOS device if backing up and erasing all content and settings doesn't resolve the issue. Using iTunes to restore iOS devices is part of standard isolation troubleshooting. Restoring your device will delete all data and content, including songs, videos, contacts, photos, and calendar information, and will restore all settings to their factory condition.
    Before restoring:
    Verify that you are using the latest version of iTunes.
    Back up your device.
    Transfer and sync content to your computer.
    Restoring your iOS device
    Connect your device to your computer.
    Select your iPhone, iPad, or iPod touch when it appears in iTunes. Select the Summary tab, and click the Restore button.
    Click Restore.
    After a restore, the iOS device restarts. You should then see "Slide to set up". Follow the steps in the iOS Setup Assistant.
    If needed, restore your device from a previous backup.
    If restoring does not finish successfully or if a restore error appears, see iOS: Resolving update and restore alert messages.
    Additional Information
    If your device is continually restarting, not responding, or showing the Apple logo with no progress bar or a stopped progress bar, place the device into recovery mode and try restoring again.
    Devices with cellular service should activate after a restore. If activation is not successfu, see the options below.
    Symptoms
    Your iPhone may display one of the following messages when you attempt to activate it:
    "Your iPhone could not be activated because the activation server is temporarily unavailable."
    "The iPhone is not recognized and cannot be activated for service."
    "iTunes was unable to verify your device."
    Resolution
    Perform the following steps if you receive one of the messages above:
    Restart the iPhone.
    Try another means of reaching the activation server and attempt to activate.
    Try connecting to Wi-Fi if you're unable to activate using a cellular data connection.
    Try connecting to iTunes if you're unable to activate using Wi-Fi.
    Restore the iPhone.
    If you receive an alert message when you attempt to activate your iPhone, try to place the iPhone in recovery mode and perform a restore. If you're still unable to complete the setup assistant due to an activation error, contact Applefor assistance.

  • How to restore visited link state to unvisited

    Hi all -
    I have a pseudoclass which nicely shows a gray background
    after being
    visited.
    After clicking in ie6 browser, the links remain gray forever!
    I am unable to view in the pre-visited state to show a client
    sitting next
    to me.
    I am viewing on my local machine
    There are no cookies being set
    Flushing cache doesn't do it
    Closing browser doesn't do it
    Even rebooting the machine doesn't do it
    I guess my question is, "where is my WinXP machine
    remembering the visited
    state?"
    Anybody know this one? Many thanks
    CSS follows
    a.inactive
    {border: 1px solid #000000;color: #000000;text-decoration:
    none;padding: 4px
    7px
    a.inactive:visited
    {border-color: #000000; text-decoration: none;background:
    #CCCCCC; color:
    #000
    a.inactive:hover
    {border-color: #000000; text-decoration: none;background:
    #B30000; color:
    #fff

A: How to restore visited link state to unvisited

Michael
Many thanks for the browser information and for polishing the
CSS
It is indeed appreciated.
"Michael Fesser" <[email protected]> wrote in message
news:[email protected]..
> .oO(Ken Binney)
>
>>I have a pseudoclass which nicely shows a gray
background after being
>>visited.
>>After clicking in ie6 browser, the links remain gray
forever!
>>I am unable to view in the pre-visited state to show
a client sitting next
>>to me.
>>
>>I am viewing on my local machine
>>There are no cookies being set
>>Flushing cache doesn't do it
>>Closing browser doesn't do it
>>Even rebooting the machine doesn't do it
>
> Clear the browser history.
>
>>I guess my question is, "where is my WinXP machine
remembering the visited
>>state?"
>>Anybody know this one? Many thanks
>>
>>CSS follows
>>
>>a.inactive
>>{border: 1px solid #000000;color:
#000000;text-decoration: none;padding:
>>4px
>>7px
>>}
>>a.inactive:visited
>>{border-color: #000000; text-decoration:
none;background: #CCCCCC; color:
>>#000
>>}
>>a.inactive:hover
>>{border-color: #000000; text-decoration:
none;background: #B30000; color:
>>#fff
>>}
>
> A bit shorter:
>
> a.inactive {border: 1px solid #000; color: #000;
text-decoration: none;
> padding: 4px 7px}
> a.inactive:visited {background: #CCC}
> a.inactive:hover {background: #B30000; color: #FFF}
>
> should do the same.
>
> Micha

Michael
Many thanks for the browser information and for polishing the
CSS
It is indeed appreciated.
"Michael Fesser" <[email protected]> wrote in message
news:[email protected]..
> .oO(Ken Binney)
>
>>I have a pseudoclass which nicely shows a gray
background after being
>>visited.
>>After clicking in ie6 browser, the links remain gray
forever!
>>I am unable to view in the pre-visited state to show
a client sitting next
>>to me.
>>
>>I am viewing on my local machine
>>There are no cookies being set
>>Flushing cache doesn't do it
>>Closing browser doesn't do it
>>Even rebooting the machine doesn't do it
>
> Clear the browser history.
>
>>I guess my question is, "where is my WinXP machine
remembering the visited
>>state?"
>>Anybody know this one? Many thanks
>>
>>CSS follows
>>
>>a.inactive
>>{border: 1px solid #000000;color:
#000000;text-decoration: none;padding:
>>4px
>>7px
>>}
>>a.inactive:visited
>>{border-color: #000000; text-decoration:
none;background: #CCCCCC; color:
>>#000
>>}
>>a.inactive:hover
>>{border-color: #000000; text-decoration:
none;background: #B30000; color:
>>#fff
>>}
>
> A bit shorter:
>
> a.inactive {border: 1px solid #000; color: #000;
text-decoration: none;
> padding: 4px 7px}
> a.inactive:visited {background: #CCC}
> a.inactive:hover {background: #B30000; color: #FFF}
>
> should do the same.
>
> Micha

  • System performance degrades after server migration ???

    Hi Friends,
    System performance degrades after we migrate our BW 3.5 Server (Production) from UK to Germany.
    for details :
    1. Data is coming to Informatica server from Informatica its going to POSDM Server (Point of Sales Data Management) from POSDM we are running pipes and data is coming to BW (Delta Queqe)
    so before Server Migration it was taking 2 Hrs to load 4 Million Records
    After Server Migration it is taking 4 Hrs.
    Please help out to find the reason for this.
    Note : Server Ram , Hard Disk , Speed is same on both Servers
    Thanks
    Asim

    Note : Server Ram , Hard Disk , Speed is same on both Servers
    Are you cahnge any application or database parameter (the OS and all patch'es are the same?)
    How you doing migration? Very low information... Are you check the network configuration are the same( for example check the network speed 1G or 100MB).
    Are you trying to analyse the St03N and St04 t-codes?
    Regards.

  • How to restore iTunes library after operating system changed?

    How to restore iTune library after operating system changed on the laptop? The syn is not working because it doesn't recognize the computer.

    Recovering your iTunes library from your iPod or iOS device: Apple Support Communities
    Syncing to a "New" Computer or replacing a "crashed" Hard Drive: Apple Support Communities
    Sync Your iOS Device with a New Computer Without Losing Data - How-To Geek

  • How to restore safari bookmarks after osi update

    how to restore safari bookmarks after ios. update

    The only way is to restore from a useful backup, if you have one.
    If you sync the iPad to iTunes and use Time Machine regularly, you would likely have the appropriate backup to restore from. In that case:
    Restore the iPad backup set from Time Machine from a date before you overwrote the bookmarks. The location of the backup is ~/Library/Application Support/MobileSync/Backup/ (you can get to it by pressing Cmd+Shift+G in the Finder and entering this path).
    Connect the iPad, run iTunes and restore from the backup.
    If you use iCloud Backup, then you can restore from iCloud and choose which date's backup you'd like to restore from. You can check if you're using iCloud Backup by opening the Settings app on the iPad, then going to the iCloud submenu and looking at the status right below "Storage & Backup", where it would say "iCloud Backup is off." (or "iCloud Backup is on.", as the case may be).
    In any case, keep in mind that restoring from a backup means you lose all application data changes after the date of the backup.
    Also see Restoring from a previous iCloud backup.

  • I do not know how to repair broken links

    Greetings,   I am attempting to repair all broken links for a assignment in Dreamweaver CS5  C7  and I could not find any instruction in the text  on how to repair broken links.. How is it done?

    The simplest way is to remove old links and insert new ones via the link field in your properties panel.
    Nancy O.

  • Word 2003 crashes when trying to restore broken link

    We have a project that is frequently updated by the same
    person. Today, as user was trying to restore broken links, Word
    dies abruptly and goes into recovery mode. This happens at the
    click of OK on the dialog that shows the link detail-instant death
    to Word 2003. I have MS auto-updates set to manual, and did not run
    the AU for December 07. A follow up message occurs asking if I want
    to save robohelp.dot (located in C:\Docs and Settings\...) We have
    not had this behavior before, have not done MS updates since April,
    just because RHO was working. I am just looking for a few
    suggestions, I guess, and perhaps help in ruling out RHO X5 as the
    culprit here. P.S. Our typical work setting is that the user
    accesses the files from a network drive as works on them across the
    network. We are a small shop and low-latency on our network. Just
    to check, I copied the directory with the project files to the
    local drive and tried same operation, received same result - Word
    dies and recovers. Am wondering now if I should restore from tape
    and see if corruption occurred. Thanks!

    I had exactly the same problem. The following "hotfix" sorted it quite well for me:
    http://support.microsoft.com/kb/952909
    The AdobePDF printer dialog is still showing errors with printing each document, but the PDFs are created and saved regardless.

  • How to set unequal columns using master pages in InDesign CS3?

    How to set unequal columns using master pages in InDesign CS3?

    I don't have CS3 anymore but I don't think this has substantially changed in the last few versions of InDesign.
    Choose View > Grids & Guides > uncheck Lock Column Guides. Then drag the column guides to the position you want.

  • How do you restore your playlists after a migration from my old pc?

    how do you restore your playlists after doing a migration from my old pc?

    Move iTunes following these instructions:
    iTunes: How to move your music to a new computer (Mac or Windows):
      http://support.apple.com/kb/HT4527

  • How to restore the link between on screen library item and audio file?

    Do you have a BORKEN LINKS problem?
    I'd like to share a useful discovery.
    I have read a number of posts both here and other forums concerning 'broken links' problem after moving iTunes music folder to an external drive.
    ie. In the iTunes window you see a long list of playlists on the left (blue tinted) column and song names and details in the other columns but when you try to play a song a message tells you the link is broken and ! appears to the left of song name.
    Broken links can easily be restored if you use SMART PLAYLISTS.
    Note: I'm not sure about manually created playlists, so take care.
    How to repair the broken links:
    Step one:
    Make a back up copy of 2 important files,
    the current iTunes library and iTunes Music Library.xml files
    place copies somewhere away from the iTunes folder.
    Preparation:
    first go to iTunes Preferences and in the advanced settings page, uncheck the two boxes, Keep iTunes Music folder organsied : and Copy files to files to iTunes Music Folder when adding to library.
    Method A. only some links broken.
    Within iTunes highlight each of your playlists in turn**, highlight all the songs listed and hit the delete key on the keypad. Don't worry all the category info will not be lost, keep the playlist window open so you can monitor the link repair progress.
    In the FILE menu, click on 'add to library', and select the artist folder containing the songs you just deleted. Click on the choose button, and soon all the songs will appear once more in the song list window complete with all associated info that you have previously added like genre, comments, grouping.
    Method B. all links broken.
    If your entire song list has broken links like mine did (ie when you try to play the song a ! appears to the left of song name, restoring the entire list is easy, having made the settings mentioned above, click on 'add to library' then select the iTunes Music folder itself, in a short time all the songs will appear on screen as before you deleted them with links restored.
    NOTE
    **For this reason it is a good idea to create a smart playlist corresponding to every Artist folder that appears in Finder, this greatly facilitates any future repairs of broken links in batches. In fact there is an advantage in making all the playlists of the 'Smart' type and taking the time to fill in fields like Genre, Comments, and Grouping as this information allows the application to place every song into at least one category which can be named when setting up the smart playlist.
    CE
    Message was edited by: Colin Edwards

    Replying to my own post here
    Apologies, this question should have been placed in Apple Mac users section.
    If you are a windows user please ignore unless you use iTunes also on a Mac :o)

  • How to delete broken links from robohelp 9

    Currently I'm using Robohelp 9, unable to perform following actions in the project:
    1. Permananetly delete broken links from the project.
    2. Updated content and file are shown in search but not in index and in index broken links files are shown.
    Kindly tell me how to solve this issue , as my project is too big and unable to delete broken links as they are re-appearing again in the 'broken link' folder after deleted by me.

    Hi Rick/Swaraj,
    Thanks for replying!
    I would like to tell you that , I'm using a robohelp 9 project and have generated .CHM file and in the .CHM file all stated errors are showing.
    Also , I'm unable to find .XPJ and .CPD files.
    Kindly tell me in project where these files are located and if there is any other option to solve the problem?
    I didn't find too the repair option , there is a restore option after left click, I'm restoring the broken link and then deleting them. But the deleted files are reappearing in the broken link folder. Kindly tell me is there any option to delete all files from broken link folder as they are not required.

  • How to restore purchased ringtones after IOS 8 update

    I have iPhone 5c.    After I did the IOS 8 update and then the ios 8.0.2 update, I no longer have my purchased iTunes ringtones (I only have three that I purchased).    It shows I purchased them in my iTunes store and my music icons on my phone.   But when I go to settings and sounds and tones, they are not there.   Trying to figure out HOW to restore them to my iPhone. 
    Help?    I am an idiot, so I would appreciate step by step directions.   Thanks!

    Hi suebeehoney0508,
    If you are having issues syncing your ringtones back to your iPhone after a recent update, you may find the following User Tip helpful:
    How to sync ringtones to your iPhone | Apple Support Communities
    Regards,
    - Brenden

  • How to restore illustrator file after crash?

    how to restore adobe illustrator files after crash OS win 8, and I could backup

    To enable us to help you better, you need to provide as many details as you can about the problem you are experiencing.
    If you design your question effectively, you can get good information from people who are knowledgeable about the topic and who are happy to help you.
    Prepare your question. Think it through. Hasty-sounding questions get hasty answers, or none at all.
    What troubleshooting have you done so far?
    Asking an effective question will get you help faster read how here
    Suggestions for asking for help on a site.
    http://www.catb.org/~esr/faqs/smart-questions.html
    Wanikiya and Dyami--Team Zigzag

  • Project very slow to restore broken links

    Good morning! I have 12 RH projects that I work on weekly. A
    lot of updates come from Word files and over the course of the week
    the .cpd file in most of them gets large. So I rename it and
    rebuild it launching the .xpj file. I often end up with a number of
    broken links, but they can be quickly restored with Tools/Restore
    Links. Except for 1. This project is a new file that is the result
    of separating it from another project. I carefully recreated the
    folder structure and imported all the topics. The project runs
    fine. But when I rebuild its .cpd file the resulting broken links
    take 30-40 seconds a piece to restore...since there are hundreds
    and hundreds of broken links...this is not good. They all restore,
    nothing is truly missing...but where can I look to see what the
    problem is? My other projects, the links restore like popcorn and I
    can stack keystrokes and let it work. This one is miserable.
    There are no framesets...no video, nothing fancy. This is
    just html text with a fair number of popup graphic images, normal
    graphics and baggage files. Some files restore quickly so its not
    universal....but it takes over an hour to put this project back
    together when the others just fly.
    We're still on RH 5.0 but have 7.0 in the building to test.
    Is there anything specific I can look for in a topic that would
    explain this behavior? I'm really stumped on this one...it just
    doesn't act like the others! The project has 2600 files so this can
    be painful. All suggestions are welcomed! I have a page full of
    file names I notice 'hang'...but when I look at them I don't see
    anything different. ???

    As long as you are familiar with the concepts of HTML/XML
    coding it's really easy. If you aren't, it'll look a little scary
    at first. I'll post some examples to hopefully help. Make sure you
    have RoboHelp closed, and I think you may also need to delete the
    cpd file before opening the project again (I
    think it remembers some of this stuff and will wipe out your
    changes).
    The fpj lists all folders and files in a directory. So for
    example, this directory contains one subfolder and one topic:
    <?xml version="1.0" encoding="windows-1252"?>
    <rhpml majorversion="1" minorversion="0">
    <folders>
    <folder>
    <name>Samples</name>
    </folder>
    </folders>
    <topics>
    <topic>
    <name>Viewing_the_Log.htm</name>
    <comments></comments>
    <frameset>0</frameset>
    </topic>
    </topics>
    </rhpml>
    If there aren't any subfolders, it should be like this:
    <?xml version="1.0" encoding="windows-1252"?>
    <rhpml majorversion="1" minorversion="0">
    <folders/>
    <topics>
    <topic>
    <name>Viewing_the_Log.htm</name>
    <comments></comments>
    <frameset>0</frameset>
    </topic>
    </topics>
    </rhpml>
    The main thing is to ensure you get the tag pairs correct. If
    you are a bit concerned about getting it wrong, re-importing
    (rather than restoring) all the topics "should" add them into the
    fpj files correctly.
    (fingers crossed that the code displays properly...
    )

  • Maybe you are looking for

    • Setting Focus to a particular cell in JTable

      Hi, can i know how to set the focus to a particular cell in JTable. Say I have a table with 2 rows and 10 columns. The focus now is at position (1, 9) which is the last cell in the table. But I want to set the focus to (1, 3). How can i achieve this

    • I keep getting a false WINDOWS UPDATE box flashing only in Firefox

      I use the current Firefox with pop up blocker and cannot stop a false Windows Update notice asking me to reboot. I am not prepared to press yes or postpone as I suspect it will unleash something I do not want. I can supply a screen capture of the pop

    • 4G iPod Touch Wi-Fi overheat + Screen Problem

      I recently acquired this 4th gen iTouch, and it's safe to say that I'm in love with the product (I'd had a 2nd gen itouch before). However, after a couple of hours of messing around with it (just downloading apps/browsing websites) I noticed the back

    • Copying Visual Studio Code into Robohelp

      Hi, I'm using Robohelp HTML 6 and I'm trying to transfer example code from visual studio into my robohelp project. However, when I copy/paste the code, all of the formatting is lost (mainly colors). The project I'm working on was done years ago by an

    • Jvmti, jdi and tool development

      We're building a suite of monitoring tools that will help us inspect and manage our enterprise-class app. We currently have working an instrumenting interface (via mbeans) that uses javassist to instrument bytecode; this tool runs as an agent within