How to list all documents that has linked a image file?

Hi everyone,
I'd like to know if there's a way to find all linked file to a file: i have a logo image that a lot of inDesign files have linked to it and i'd like to find all those inDesign files.
I know that Bridge CS6 can list all linked files of a .indd file but i'd like the opposite
Regards,
Snowblood13x

You might be able to do it via scripting. If you have to search an entire volume it would be impractical, but something like this AppleScript would open all of the ID files inside of a chosen folder and its sub folders. Once the ID file is open it could check for a specific link and if it exists leave the file open otherwise close:
global mylinkname
--change YourLinkNameHere to the logo link's name
set mylinkname to "YourLinkNameHere"
tell application "Finder"
    activate
    set the thisFolder to (choose folder with prompt "Choose a folder. The extension of all files inside will be hidden.")
    my ProcessFolder(thisFolder)
    tell application "Adobe InDesign CS6"
        activate
        display dialog "Done"
    end tell
end tell
on ProcessFolder(thisFolder)
    set theseItems to list folder thisFolder without invisibles
    repeat with i from 1 to count of theseItems
        set thisItem to alias ((thisFolder as text) & (item i of theseItems))
        set the iteminfo to info for thisItem
        if folder of the iteminfo is true then
            ProcessFolder(thisItem)
        else
            ProcessItem(thisItem)
        end if
    end repeat
end ProcessFolder
on ProcessItem(thisalias)
    tell application "Finder"
        if creator type of file thisalias is "InDn" and kind of file thisalias is not "InCopy® Lock File" then
            tell application "Adobe InDesign CS6"
                activate
                --set user interaction level of script preferences to never interact
                open thisalias
                set llist to name of every link of active document
                if mylinkname is not in llist then
                    tell active document
                        close
                    end tell
                end if
                --set user interaction level of script preferences to interact with all
            end tell
        end if
    end tell
end ProcessItem

Similar Messages

  • How to list all calendars that are shared to a specific user?

    Hi,
    Using Exchange Management Shell/Powershell, I want to list all calendars that are shared to a specific user 'myuser'. 
    I have tried different approaches; list all calendars for all users and then figure out which ones are shared to 'myuser', list all mailboxfolders for 'myuser' with path 'calendar' and sort out the shared ones, ... No luck so far.
    Anybody?
    babu

    Hi
    If you try this command:
    Get-MailboxPermission MyUser

  • DW5 - How to list all pages that link to a specific page?

    Hi all, I'm using DW5 and need to completely remove a specific page. How can I get DW to check through the whole site and make a list of all other pages that link directly to the page I want to remove?
    I'm sure it must be simple, but can't seem to get the result I need. Can someone spare a few minutes to spell it out for me please?

    I would do a Find on the page name...source code...in the entire local site...and be given a list of pages that include that page name. Then you can go into the Results window, where they are listed, and by double-clicking go directly to each reference.
    You may also save a copy of the report in XML... (the save icon is a small floppy disk image on the left border of the Results Panel.
    Beth

  • How to list all  tables that belongs to the current user?

    hi all
    "select tblowner,tblname from tables where tblowner in (select user from dual);"
    I want a list of all tables that belongs to the current user. I use the SQL above, but given "no rows selectd",but if
    I replace the subquery with literal,like
    "select tblowner,tblname from tables where tblowner = 'JFMDB');".
    I got the list. why?
    Thnk u very much!

    This looks like a bug that was fixed in 7.0.5.13 and onwards. I can reproduce what you are seeing in 7.0.5.10.0 (Linux x86-64 / Access control enabled instance from root install) but not 7.0.5.13.0 (Linux x86-64 / Access control enabled instance from root install).
    Unfortunately I don't have a bug number to pass on. I can't see anything relevant listed in the Release Notes and I haven't found a likely candidate in our internal listings. This may well have been one that was fixed "in passing" when RnD were working on something similar.

  • How to list all roles which has defined in Oracle BPM

    Is there a way to get the list of bpm roles that defined in bpm by using ADF platform?

    Metadata rep - Click on the variable in any used query  - Gives you a list of queries where it is used.
    Or
    Try FM : RRM_SV_VAR_WHERE_USED_LIST_GET & RSZGLOBV for ID
    Or
    Just try deleting it - It wouldn't let you do that and it gives the where used list.

  • How open old Appleworks documents that appear as UNIX executable files?

    A few of my old Appleworks or Clarisworks files won't open with Appleworks 6, but show up as a "UNIX executable file." I have tried adding the ".cwk" extension, repairing permissions using Disk Utility, and using Finder>File>Get info>Open to choose Apleworks 6 (it already was selected) as recommended by Peggy. With ".cwk" extension, I then get "that file appears to be damaged and cannot be opened."
    Any other suggestions?

    Hi Cloyd G,
    welcome to Apple Discussions and the AppleWorks forum.
    The 'UNIX executable file' classification error appears to arise mostly from the lack of a suffix (.cwk) on the original file. If adding the .cwk suffix does not make the file readable by AppleWorks, and gives a 'file appears to be damaged' message, then it's likely that the file has indeed been damaged.
    If it's a word processor file, you could try opening it in a Text editor (such as Text Edit, supplied with OS X, or Text Wrangler, available free from Bare Bones Software). You'll get a large amount of junk (file meta data and formatting codes, etc.) with the text of your document somewhere in the middle. If you know a single word that is in (or is likely to be in) the document, a search using command-F should take you directly there. Copy the text and paste it into a new AW document.
    For spreadsheet files, you can try dragging the file and dropping it onto a new, empty spreadsheet document. The same technique may also work for database files. I've never tried or seen recommended the same texchnique for Draw or Paint files, but attemptng it should do no harm.
    Best of luck with this.
    Regards,
    Barry

  • I can no longer email documents that has attachments with images (even a scanned document), I can no longer put pictures on my facebook through the firefox but can do it through the internet explorer. What happened?

    Since 10 days ago I can no longer put pictures on facebook and email documents (powerpoint slides with images). Now I have to use internet explorer to do these. I contacted AOL they weren't able to fix it and guided me to use the internet explorer

    There may be some security issues related to the USPS PDFs.
    http://www.certified-mail-envelopes.com/signatures-usps-certified-mail-return-receipt-requested
    I can't help with the scan/print problem. You seem to have done everything I would try.
    I don't know if maybe using a registry cleaner would help.
    John Hoffman
    Conway, NH
    1D Mark IV, Rebel T5i, Pixma PRO-100, MX472

  • PowerShell - List all users that have access to a particular SPLIstItem

    Hi there,
    In PowerShell - how to list all users that have access to a particular SPLIstItem?
    Thanks so much in advance.

    Hi frob,
    According to your description, my understanding is that you want to list all users who have access to a particular SharePoint list item via PowerShell.
    You can use the following PowerShell command:
    $web = Get-SPWeb http://sp/sites/First
    $list=$web.Lists["listV2"]
    $item=$list.Items | where {$_['ID'] -eq 1}
    $item | Select -ExpandProperty RoleAssignments |Select {$_.Member.DisplayName}, {$_.Member.LoginName}, RoleDefinitionBindings
    In the above command, you need to change the web URL to your site's URL, change “listV2” to the name of your list, and change the ‘1’ to the ID of the list item.
    The result looks like:
    Best Regards,
    Wendy
    Wendy Li
    TechNet Community Support

  • How can I print in black/white only a document that has colors in the original?

    How can I print in black/white only a document that has colors in its original. I don't need the print out to be in color, and I don't want to waste the color ink.

    It depends on your printer and the application you are using.
    In some applications you can choose color vs. greyscale/black&white when you do File > Print.   PowerPoint is one example of an application that allows this choice.
    Otherwise, you can usually select greyscale at the time you print the document.  Do File > Print. In the resulting dialog box, there should be an item called Copies & Pages (in Word and other applications) or Preview (in Preview).  Click it.  In the resulting list, you should then see an option called Printer Features.  Click it.  Then you should see an option called Printout Mode.  Usually one of the modes is Greyscale or Black & White.  Select it.  Then Print.
    This can also depend on your printer.  Exactly what make/model printer are you using?   And what kind of document are you trying to print (Word, PPT, JPEG, etc)?

  • How do I find music that has been uploaded to iTunes from a purchased CD and iTunes is "unable to find the original file?" I no longer have the CD. I have tried all the usual methods of looking in my iTunes library and through Find. No Luck.

    How do I find music that has been uploaded to iTunes from a purchased CD and iTunes is “unable to find the original file?” I no longer have the CD. I have tried all the usual methods of looking in my iTunes library and through Find. No Luck.

    Backup drive?
    Subscribe to iTunes Match?
    If neither of the above and you don't have the CD and can't find your tracks on the computer then they you're stuck.  A file recovery utility will cost $100, plus another $100 for an external drive to which to resue the files, and may not even work.  You can buy a lot of CDs for $200.

  • How do you set the default magnification for Acrobat.  All documents that I open enlarge to 174% and are too big.

    How do you set the default magnification for Acrobat.  All documents that I open enlarge to 174% and are too big.  I see how to change the size after the document is open by going to File/properties/initial view and saving this setting.  I want all documents to open at 100% when they are first opened.  Can I set this as a default view?

    Hey Kris,
    You might go to Edit> Preferences> Zoom
    Do this without opening any particular PDF so that it applies to the program itself and not just one document.
    Try this and then let me know.
    Regards,
    Anubha

  • How do I edit and save a word document that has been e-mailed to my ipad

    How do I edit and save a word document that has been e-mailed to my ipad and then re-send

    Use the paid version (install and activate) of Microsoft Word.
    https://itunes.apple.com/sg/app/microsoft-word-for-ipad/id586447913?mt=8

  • How do you change the lettering style of a adobe document that has been sent to you?

    How do you change the lettering style of a adobe document that has been sent to you?

    You can do this with Acrobat, but, as Claudio says, it's not possible in Adobe Reader.
    If you do have Adobe Acrobat, you can learn how to modify text styles here.

  • How to list all properties in the default Toolkit

    I would like to know what kinds of properties are stored in the default Toolkit (Toolkit.getDefaultToolkit()). I don't know how to list all of them. Toolkit class has a method getProperty(String key, String defaultValue), but without knowing a list of valid keys, this method is useless.
    Any idea would be appreciated.

    Here is a little utility that I wrote to display all the UIDefaults that are returned from UIManager.getDefaults(). Perhaps this is what you are looking for?
    import javax.swing.*;
    import java.util.*;
    public class DefaultsTable extends JTable {
        public static void main(String args[]) {
            JTable t = new DefaultsTable();
        public DefaultsTable() {
            super();
            setModel(new MyTableModel());
            JFrame jf = new JFrame("UI Defaults");
            jf.addWindowListener(new WindowCloser());
            jf.getContentPane().add(new JScrollPane(this));
            jf.pack();
            jf.show();
        class MyTableModel extends javax.swing.table.AbstractTableModel {
            UIDefaults uid;
            Vector keys;
            public MyTableModel() {
                uid = UIManager.getDefaults();
                keys = new Vector();
                for (Enumeration e=uid.keys() ; e.hasMoreElements(); ) {
                    Object o = e.nextElement();
                    if (o instanceof String) {
                        keys.add(o);
                Collections.sort(keys);
            public int getRowCount() {
                return keys.size();
            public int getColumnCount() {
                return 2;
            public String getColumnName(int column) {
                if (column == 0) {
                    return "KEY";
                } else {
                    return "VALUE";
            public Object getValueAt(int row, int column) {
                Object key = keys.get(row);
                if (column == 0) {
                    return key;
                } else {
                    return uid.get(key);
        class WindowCloser extends java.awt.event.WindowAdapter {
            public void windowClosing(java.awt.event.WindowEvent we) {
                System.exit(0);
    }

  • How to find all songs that do not have album art

    I create several smart playlists for housekeeping, like songs with no year, songs with no album name, etc. I wanted to create a similar one that lists all songs that do not have any album art associated with it. I have not seen this option when creating a playlist, but I didn't know if there was a way to write a script (that could run on Windows) that could create this playlist for me. I can (and have) gone through each song individually to note which did not have album art, but I have almost 5000 songs, and this is not really feasible any more.
    Has anyone else done anything similar to this? Any suggestions are greatly appreciated.

    Awesome !!! Thank you very much. I did not realize you could use JavaScript to code against iTunes ...
    I don't know if you have written any of these yourself, but do you know how to maybe create a smart playlist with this information via script? If not, no big deal. At least I know have something which I can use, I will just have to run it every so often.
    Thanks again for pointing me to that site!

Maybe you are looking for

  • Infotype -0008 (Changes)

    Hi, The query was if any Change are made in Infotype 0008, by any users if he has authorization of PA30,  to change or delete etc. The client Wantu2019s an email should generate if any changes are made to Infotype 0008.and that mail has to go to the

  • ITunes freeze 10.9.2 and is not responding

    when I open Itune, it freeze and I have to force quit it. anyone know how to get around this?

  • How to restart from disk when Diskwarrior 4.2 wont quit and the option

    I routinely defragmented my Mac Pro after setting the startup disk to Diskwarrior, now it won't quit and keeps rebooting. I cannot fint the eject hole on the disk platter so am stuck with it in mys machine. Have tried rebooting using Pram reset, opti

  • Month end and Year end Activities

    Hi All, What are the month end and year end activities are involved and how will they happen???? regards vasantha

  • Adobe Reader Installation Error 1328

    Hi, Trying to update my installation of Adobe Reader on Windows XP to Adobe Reader X (10.1.4) However, keep getting the following message ... "Error 1328:  Error applying patch to file C:\Config.msi\PT76.tmp.  It has probably been updated by another