Remove the missing link of file-word (text) link

I'm working on a former Indesign file that has the Word documents that are related to it. The links are missing, but the text takes the form of editable text so it has not lost.

Can I copy and paste into a new text frame to solve the problem of the missing link.
But it's a lot of work for a whole book. It would be perfect if I could break the link the Word of my frames of text file, but this option does not appear.

I found 2-7 years old questions on the Adobe forums no useful response.

Can someone help me with this?

Thank you!

"Ungroup" should be available in the context menu, if you click on the link in the links Panel.

Since my German InDesign:

Hope, that helps.

Uwe

Tags: InDesign

Similar Questions

  • Remove all the missing links with frames

    How can I make a script to remove all the missing links with frames in indesign?

    var doc = app.activeDocument;
    Links var = doc.links;

    for (var i = links.length - 1; i > = 0; i--) {}
    If (links [i] .status == LinkStatus.LINK_MISSING) {}
    try {}
    Links [i] .parent. Remove();
    var image = link.parent;
    var frame = image.parent;
    Frame.Remove ();
    counter ++;

    }
    {} catch (err)
    $.writeln (i + "-" + err);
    }
    }
    }

    I have try this script, but still remain a framework, what is wrong with that?

    It works for me:

    var link, image, frame,
    doc = app.activeDocument,
    links = doc.links,
    counter = 0;
    
    for (var i = links.length-1; i >= 0; i--) {
        if (links[i].status == LinkStatus.LINK_MISSING) {
            try {
                link = links[i];
                image = link.parent;
                frame = image.parent;
                frame.remove();
                counter++;
            }
            catch (err) {
                $.writeln(i + " - " + err);
            }
        }
    }
    
  • How to remove the easy transfer of files from computer vista.

    Title of the Moose: to find the file for easy transfer to vista to remove

    Remember - this is a public forum so never post private information such as numbers of mail or telephone!

    Ideas: How can I find and delete files on Vista transfer tool to remove.

    • You have problems with programs
    • Error messages
    • Recent changes to your computer
    • What you have already tried to solve the problem
    Hi Heighes,
     
    1. what exactly are you trying to accomplish on your computer?
     
    To completely remove the Windows Easy Transfer files and restore the 'normal' hard drive icons, try the following steps:
     
    a. open the computer, select Tools > Folder Options to open the Folder Options window
    b. in the view tab, select Show hidden files and folders
    c. right click on each of the icons (in my case - disc vista & W7 drive) hard drive and select Explorer
    d. find Windows easy transfer.exe and windowseasytrasfer autorun.inf folder and delete them from the root of the two readers
    e. restart your computer and check if the problem is resolved.
     
    Check out this link forum provided for more information below.
     
    See also:

    How to use Windows Easy Transfer to migrate files and settings from one Windows computer to another Windows Vista-based computer

    Thank you, and in what concerns:
    I. Suuresh Kumar - Microsoft technical support.

    Visit our Microsoft answers feedback Forum and let us know what you think.

  • How to remove the security of all files?

    Hello

    Actually for security reason, that I have applied security measures on my D drive, I just requested that no one can access D drive on my PC, but this security has been applied to all folders, subfolders and files all separately in my D drive, now I am unable to remove it... If I try to remove it, its really laborious ' coz I have to remove each file separately and I have thousands of files... Please help me out... .any one operation which may remove the security of all files?

    You can try this on the D partition / drive or all personally created folder/s

    http://www.SevenForums.com/tutorials/1911-take-ownership-shortcut.html

  • Remove the lock on all files and folders...?

    There has been a lot of questions on how to remove locks on folders and files on Windows 7. Those I've read on this site worked and the lock can be removed easily.

    ... However, you cannot do a folder/file at once. I have a lot of items on my desk, and more than half of them have these locks on them. How I removed the locks on all files and folders on my user account. There are only 2 accounts on the computer. Mine and another person. Mine is set to the administrator account, the other is just a standard user. I started by ignoring the locks for months, then I tried to get rid of them by myself, and frankly, I have no idea what I'm doing. Please, I beg you. If you know of a way, share it!

    If the locks would not constitute an obstacle to operations, why bother?

    And BTW, it; s no need AT ALL to run as an administrator on a daily basis in Windows 7. Forget everything THAT you have learned about XP - Win 7 is much more advanced.

    You realize that the built-in Administyrator account is disabled by default, and if it is possible for him, that may be beyond what you're comfortable with?

    Create another Admin account, call the Admin or Tech or similar and give it a password. Let this accouynt for the elevation of access and privilege of emergency and activate your account for daily use in a Standard user account. Your computer will be safer that way.

    If you find my answer helpful, please click the button "Vote as helpful"! Thank you!
    My Blog

  • Textoverset and the missing links and fonts

    Hello

    OBS: this is for the use of InDesign CS3

    I have this script that checks the overset text:

    if (app.documents.length != 0){ 
     
       var myFrames = app.activeDocument.textFrames; 
     
       var thePageNames = new Array(); 
     
       for (var j = 0 ; j <= (myFrames.length - 1); j++) { 
     
         if(myFrames[j].overflows == true){ 
     
           try {
     
             thePageName = myFrames[j].parent.documentOffset;
     
           } catch (e) { 
     
             continue; // must be on Pasteboard so ignore
     
           }
     
           thePageNames[thePageName] = 1 
     
         } 
     
       } 
     
       if (thePageNames.length == 0) { 
     
         alert("No oversets found on pages."); 
     
       } else{ 
     
         var s = ""; 
     
         for (i in thePageNames) {  
     
           s = s + app.documents[0].pages[Number(i) - 1].name + ", "; 
     
         } 
     
         s = s.substring(0,s.length - 2); 
     
         alert("Check for oversets on page(s): " + "\n" + s); 
     
       }
     
     } else { 
     
       alert("No documents are open."); 
     
     }
    


    I need to adapt to this script:


    var doc = app.activeDocument; 
    var _PDFExportPreset = app.pdfExportPresets.item('MyPDFSetting');
    if (_PDFExportPreset == null){  
       alert('Preset is missing');  
       exit();  
    }  
    var _DocName = doc.name.replace(/\.indd/, "");  
    var _EndNumber = parseInt(_DocName.match(/\d{3}$/),10); /* extract end number */  
    /* test if is a number */  
    if (isNaN(_EndNumber)){  
        alert('End document name is not a number');  
        exit();  
    }  
      
    for(i = 0; i < doc.pages.length; i++){  
        _PageName = doc.pages.item(i).name;  
        app.pdfExportPreferences.pageRange = _PageName;  
        _NewNumber = _EndNumber + i; /* incresase number */  
        _NewNumber = ("00"+_NewNumber).slice(-3); /* padding */  
        _DocName = _DocName.replace(/\d{3}$/,_NewNumber); /* replace number in doc name */  
        _PDFfile = new File('\\\\Testserver\\Test\\'.concat(_DocName,'.pdf'));  
        doc.exportFile(ExportFormat.pdfType, _PDFfile, false, _PDFExportPreset);  
    }
    
    //If the active document has been changed since it was last saved, save it.
    if(app.activeDocument.modified == true){
     app.activeDocument.save();
    }
    //Closes the active document.
    app.activeDocument.close()
    ;
    

    So if there is NO excess of text I need the script to continue the race and that he there IS in excess of text inside the structure of the document and the active layer I need to alert and stop. It's possilble that I would also like this, it is possible for the user to ignore the overset text and continue to make the script run.

    AND I would also check the missing or outdated links AND missing fonts in princip as well as overset text.

    Hi runew73276507,

    Modify the code as shown below,

    If (app.documents.length! = 0) {}

    var myFrames = app.activeDocument.textFrames;

    var thePageNames = new Array();

    for (var j = 0; j)<= (myframes.length="" -="" 1);="" j++)="">

    If (myFrames [j] .overflows == true) {}

    try {}

    thePageName =. parent.documentOffset myFrames [j];

    } catch (e) {}

    continue; should be on the editing table so ignore

    }

    thePageNames [thePageName] = 1

    }

    }

    If (thePageNames.length == 0) {}

    Alert ("no oversets found on the pages.");

    } else {}

    var s = "";

    for {(i in thePageNames)

    s = s + app.documents [0] .pages [Number (i) - 1] .name + ",";

    }

    s = s.substring (0, s.length - 2);

    If (! confirm ("check the oversets on the page (s):" + "\n" + s + "\nDo you want to continue...)) »))

    Exit();

    }

    } else {}

    Alert ("no documents are open.");

    Exit();

    }

    then write your code here...

  • Restoring iTunes + Song of the missing links

    I moved my iTunes from one PC to the other folder. The entire folder. On the new PC, after you install iTunes, I pressed shift and clicked on the icon to choose the correct iTunes library file.  Everything is listed, however, about 2 500 songs are not related.  I have to double-click on each song and re-pointer to the location of the appropriate folder.  It's 2 500 more 10 000.  Of course, if it's an album, once I found the first song, he will ask me to find the rest.  But it's album by album.  Always takes me hours to restore everything.

    It happened the last time I tried this, years ago.  I was hoping that Apple would have improved the import feature.  Why random songs that are not related?  What can I do to prevent it happening again?

    Second, is there a quick fix to sweep and relink all the songs of reverie?  Or do I still sit there and manually connect 2 500 songs?

    Thank you.

    See make a library of portable split to the bottom. With your library in the correct form, it can be moved without any problem.

    The "missing file" error occurs if the file is no longer where iTunes is expected to find. Causes possible is that you or a third-party tool has moved, renamed or deleted the file, one of its parents, or the reader, records it feeds has been a change in the letter of the drive or you have moved a non-portable library to a different path (see make a split cell library for more details). It is also possible that iTunes has changed from waiting for the files in the presentation of pre-iTunes 9 post-iTunes 9 layout, or vice versa, and so looking for a bit in the wrong place.

    Select a track with an exclamation point, use Ctrl - I to get the information, and then click No when asked to try to locate the track. Look under the file tab for the location that iTunes thinks that the file should be. Now look around your hard drive. I hope you can locate the track in question. If a part of your library has just been moved, renamed a folder or a drive letter has changed, it should be possible to reverse actions. If the difference between the two railroads is an additional music directory in a path, then it is a problem of layout. I can explain more if this is the case. If everything is where it is supposed to be trying to fix the security permissions for iTunes for Windows.

    In some cases, iTunes may be able to repair itself if you go through the same steps with Get Info, but this time, click on search and browse the lost track. He peut then offers to try to automatically correct the other broken links. Although he said something like 'use the same location' I think he expects to find titles in the same provision, artist / album, they were previously, with a systematic change to the path.

    If another application like Windows Media Player has moved/renamed files, or the library was moved from OS X to Windows, then chances are that subtle differences in naming strategies it will be difficult to restore the media to the precise path that iTunes is pregnant. In this case, as long as the missing files somewhere, you should be able to use my FindTracks script for reconnecting to iTunes. See this post for an explanation of how it works.

    If you want me to try to provide specific advice, please post back the following details:

    1. The location of the media file under Edit > Preferences > advanced
    2. The location of a sample of missing follow indicated under Get Info > file > location which begins file://localhost/
    3. The real path to the file which you gave 2 details.

    PS. the forum plays up for the moment. Copy and paste this link in your address bar to get the script: http://samsoft.org.uk/iTunes/scripts.asp#FindTracks

    TT2

  • Select the missing cdr_repository CDR files after execution of a car to execute sql * statement?

    Hi all

    Hoping someone can provide some tips.  I need to export all the records 'date' with dateb cdr'.

    To do this, I started by ssh'ing in the pub and make a ' execute sql select auto * from tbl_billing_data where date (datetimestamporigination) between 'date' and 'date'

    A large amount of data came on the screen, so I ran ' file list activelog.net/cm/cdr_repository/preserver/et a list of directories to date appeared.  All directories of came from the "date", as if all the dates before that date have been removed.  Is it possible that to run the sql command that he actually removed these records cdr or moved him somewhere else?  Hoping that they are still usable, all advice appreciated.

    Thank you very much

    Erina

    Hi Erina,

    The sql queries that you mentioned will not remove or push files to another folder. You have a server billing for this cluster configuration? Please see the section ""Troubleshooting: CDR Files will not be transferred to the billing server ' from the following link "

    https://supportforums.Cisco.com/document/55821/troubleshooting-CDR#Troub...

    HTH

    Manish

  • How can I remove the UTC Timestamp of files saved by FileHistory?

    Given that I had so many problems with Windows 8.1 on my ASUS PC x202e, I backed up my files with the history of the Windows files on a hard drive external and restored the machine to factory settings, so I could start using Windows 8 again, with which I had no problem.

    I record a lot of audio with a freeware recording studio called Audacity, which saves thousands of audio files for each audio project. Because the history of the files rename all files with the timestamp UTC, Audacity does not recognize these thousands of files, unless I have rename removing the timestamp. I have about 7 audio projects that I need to get - it would take several days of tedious to rename all the files.
    For example, the original file name was:
    e0000d79.au
    On my external hard drive, the file appears as:
    e0000d79 (2013_11_24 01_59_07 UTC) .at
     
    Is it possible to somehow restore these files to their original filename without the stamp? I looked in the file history, but was unable to find an option like that.
    Thank you
    James
    EDIT: I thought that it would take some kind of software that runs a script to do that for me. I found this Powershell script to remove the 8 digits after an underscore in any file name:
    Get-ChildItem *.txt |
    Where {$_.Name -match '_\d{8}\.txt' } |
    Rename-Item -NewName {$_.Name -replace '_\d{8}'}
    
    
    
    I had to use Powershell to solve a problem with Windows 8.1 not too long ago, but I'm not familiar with how it works. Y at - it a similar script that I could run? For example, by removing everything that comes after that a beginning parenthesis would work, as there are has no parentheses in the names of the files clean I need clean.

    As I had suspected, historical files offers a device to "restore" your files on your PC that will remove the timestamp, so that copy and paste your files from an external retains the time stamp intact. Are there absolutely no need a complex script or something like that.

    When I restored my computer to factory settings awhile back I changed the name of my machine to something again and I had since started a new file history for the files in the restored machine - in other words, two backups, I seem to stop me to use both, as the main screen of the history of the files only presented me an option - historical files of the current computer.
    However, this was not a problem when I discovered that you can visit history of file to restore files from a previous backup feature.
    1. go in Control Panel
    2. under "System and security" click "Save Backup Copies of your files with history files"
    3. click on "Select Drive" on the left
    4. Select the external hard drive. In my case, I had two backups on the same external.
    5. When you click on your drive, the "Select an existing backup" window appears.
    I have selected the history of files from my old computer, find the files that I was sick of having stamps and restored in a new folder on my desktop. Audacity now recognizes my projects again! Not bad actually.
  • CS6: reports of the missing links, but when I check the links all is good

    Whenever I open this certain InDesign file, it says links are missing. But then I go to control panel links and utilities > search for missing links. No problem found. But then, when I go to package the file, I get the message of missing links again. Help please.

    Maybe something like a linked image in a .ai file related.

    Check upstream instead.

  • How to remove the hidden link?

    I am quite experienced with Muse, but this question left me speechless. I looked at the external links from my site and realized that there is one in the footer from jeremytech.com. So I checked and it seems that it's more than just the link, but the titles as well.

    view-source_www_xtremepawn_com.png

    But I don't see such a link in Muse...

    Master_Home.png

    Any ideas why this happens? Maybe because I used something that makes this guy and he left little remaining code that muse doesn't have access to?

    It almost seems that I copied a footer he did and it changed a little bit, and granted, it's been a while since I've done this, but I remember this creation from scratch. I used another code of people to help me get work social icons, but that's all.

    Any help would be appreciated

    Hello Hyrump90573821,

    What is a text box for "contact"? If Yes, then try following

    1. Select the text box.

    2. double click on it to switch to the text editing mode

    3. Select all of the text and search a panel of hyperlink on the toolbar.

    4. If you see the url you want to get rid of remove it by clicking the X button as shown in the screenshot below.

    In case you do not see a link for all of the text and then try to select each character and keep an eye on the hyperlink table.

    Kind regards

    Vivek

  • Remove the apperaence link

    Hello

    The Flash file I work has an animation that triggers moving the cursor on a line of text. Is there a way I can change the appearance of the cursor so it does not appear as a link? IE I don't want the cursor to move to a small hand when rolled over the line of text.

    Thanks in advance

    Pete

    Import stuff
    import flash.ui.Mouse;
    import flash.ui.MouseCursor.
    import flash.events.MouseEvent;

    Add event listeners to your MovieClip that has a child text field
    theMC.addEventListener (MouseEvent.ROLL_OVER, doOver);
    theMC.addEventListener (MouseEvent.ROLL_OUT, doOut);

    Functions to shoot events
    function doOver(evt:MouseEvent):void {}
    When you move your mouse over the target text box
    Change the cursor of the mouse on something else than the hand.
    Arrow is a good
    Mouse.Cursor = MouseCursor.ARROW;
    }
    function doOut(evt:MouseEvent):void {}
    When the mouse leaves the area of text target default mouse
    the cursor behavior
    Mouse.Cursor = MouseCursor.AUTO;
    }

    Include any other mouse cursors
    MouseCursor.ARROW
    MouseCursor.AUTO
    MouseCursor.BUTTON
    MouseCursor.HAND
    MouseCursor.IBEAM

    It is also possible to use a custom mouse pointer () Mouse.hide invloving and move an autour clip when it's the invisible mouse, but that would be in another post.

  • How to remove the old Hello msi file

    make the misstake of trying to download the new itunes to message delete old Hello computer msi keep can someone help? PS also tried using itunes help they say that I'm not on the internet

    It really helps to have the full error message.  It's not like if you pay by the letter questions posted in these forums.

    Based on the almost total absence of information in your message, my guess is that your old iTunes installation has become corrupted, or partially deleted, and as a result, you cannot install the new version.

    The simplest thing to do is just clean things, and then try again.

    Used to have a tool just to do this, called the Windows Installer Microsoft Cleanup utility.  Apparently, however, when this tool has been used (I think with MS Office), removes sometimes more he was supposed to, and that's why Microsoft has removed the tool of its download servers.

    The Windows Installer Cleanup utility is always available from http://majorgeeks.com/Windows_Installer_CleanUp_Utility_d4459.html , or you can use the free Revo Uninstaller.  Before using or the other of these tools, create a restore point from the system, backup the registry with C:\WINDOWS\ERUNT, or (if you can afford) creates a full disk image or a clone - just in case.

    Here are the usual directions to perform a "clean installation" of iTunes, based on Support of Apple HT1926 article.

    Go to control panel > Add/Remove programs
    Remove these applications:
    1 Apple Software Update
    2. Apple Mobile Device Support
    3 Hello
    4 iPod for Windows (this may or may not exist, be it, it is not necessary, then we can remove it)
    5 iTunes
    6 QuickTime

    Open my computer > C: > Program Files
    Delete this files (if present)
    1 iPod
    2 iTunes
    3 QuickTime

    Empty your temp directory:
    Open my computer > C: > Documents & Settings > username > Local Settings and delete the contents of the folder called "Temp".

    If you don't see the local settings, enable hidden files:
    Tools > Folder Options > view tab
    Select Show Hidden Files & folder, and then click OK

    Once this file is empty, restart the computer

    [See note above regarding cleanup utility]
    Download & install the Windows Installer Cleanup utility:
    http://support.Microsoft.com/kb/290301/
    Launch the utility: start > programs > Windows Installer Clean Up
    Select one of the applications mentioned above and click on remove

    Restart the computer
    Download & reinstall iTunes from here: http://www.apple.com/itunes/download/

  • The missing MFC library files

    I'm moving from a 32-bit computer from win2k to win7 64-bit computer, and when I run some of my programs, I get an error window stating that MFC42D.dll is missing. The computer is new at HP how to find the 64-bit versions of dll to the new computer.

    Do a search for the missing .dll file. Normally, it should reside in Windows/System32.

    I suggest that you try and re - save the mfc42d.dll to see if this will help.

    Go to a command prompt. Right click and select "Run as Administrator".
    Then type in: regsvr32 mfc42d.dll

    It must return with the command completed successfully.

    It will be useful.

  • BUG (splash screen): remove the Web links on the Launcher is not possible


    Press option should be the key orange and then press the icon, you will receive an option to remove the link.

Maybe you are looking for

  • Where can I find data, such as saved games, for applications like the pillars of eternity?

    I looked at the support of the application, and there is no record of the application of the pillars of eternity. In fact, there is only the application itself, and opening "content" does not show a file parts stored. Any help will be appreciated.

  • Calendar is locked

    The recovery process of the previous version of calendar on iCloud, I stopped because it lasted 9 hours and now I have this sign: Support in my country, working from Monday. I'll wait, or can I do something?

  • IMAQdx mind traffic on the second NETWORK card

    Hello! My system: -Labview 2011 SP1 with NO Vision and IMAQdx -Windows 7-32 bit -2 NICs (Intel Pro 1000) On a NIC (subnet: 192.168.0.x - Intel pro driver) a sick Ranger is connected. Store it works with Studio of sick Ranger or the Labview Toolkit Ra

  • Error 0135 - desktop Lenovo h530

    Hi, I buy the desktop Lenovo h530 and at startup I have this error: Failed to 0135:Fan error I've updated all my pc, but the error don't go out! Why? you have any suggestions?

  • Recent Articles and why .docx and .xlsx

    I noticed that some of my recent articles were missing from my list of recent items.  When I found them their extensions changed to .xlsx .xls and .doc to .docx Why have they changed? Why these extension not see on the list of recent Articles? I don'