Changing "file type" in Link Information Window (CS3)

Hola,
I am having a problem in Indesign (CS3), and I was wondering if anyone here might be able to help.
I'm a student updating an older .INDD file for a 47 page book. The pages were all updated as .AI files, but for some reason
3 of the pages in our InDesign document were assigned a .PDF "file type" in the Link Information window.  When I try and "Relink" to the updated .AI files,
the program won't link to the .AI file. It will properly re-link to a .PDF version of the file.
Is there a way to reset that "file type" in the Links Window from .PDF to .AI?
Ultimately I can use .PDF versions for this, but I'd prefer to have them all .AI files.
That would be cleaner and easier for the next students down the road who are going
to inheriet this project.  It seems like this should be an easy thing to do, but I can't figure it out...
Thank you very much for any information you can provide.  
¡Muchas gracias!
Javier

Hola,
Thank you for the quick reply!  I now suspect that I didn't correctly identify the problem.
In the Links Panel for 44 of the 47 pages, they read pathname/*.AI, so no problem there (although the file type is also .PDF in the link window for those 44 pages that can link to the .AI).
For three of the pages though, when I try and link them to pathname/*.AI, I get an error message in the document that indicates that "this is an Adobe Ilustrator file that was saved without PDF content".  When I relink those three to pathname/*.pdf, they work.
So I'm thinking at this point that the problem isn't Indesign, but with the original .AI files that I'm trying to link to. I also suspect that my original idea to change the "file type" in the Links Panel to ".AI" is incorrect, since it's a .PDF file type for all of the 47 pages in this document!
¡Muchas gracias!
Javier

Similar Messages

  • Change file type to pdf

    How do I change file type to pdf with windows 8 without paying? I was able to do this with windows 7 without paying.

    Actually, I guess it's possible you were using paid-for Adobe software and didn't realise it.
    Can you remember the steps you followed to make a PDF in your old system?

  • Changing file type association through java

    hello all,
    here i had a problem like , we know when we try to open .csv file by default it wll open in excel , because the csv file type was associated with excel this we can see in mycomputer->tools->folder options->file types and here we even have the possiblity of changing the association.
    anyway, my question is that is there any way of changing this association like csv to oepn in wordpad through java program
    with regards
    satya

    i created a like wordCsv.reg
    REGEDIT 4
    [HKEY_CLASSES_ROOT\.csv]
    "Default"=string:Wordpad.Document.1
    when i click on this file i could see a message that the entry wassucessfully entried but i cannot see the entry
    is my approach was correct in adding entry in regedit programatically,
    please any more ideas
    http://jniwrapper.com/pages/winpack/downloads
    here in this link i saw some samples regarding changing file types association
    , dont now will it works
    since this is for win32
    i found a program FileTypeAssociation dont know will it works
    * Copyright (c) 2002-2005 TeamDev Ltd. All rights reserved.
    * Use is subject to license terms.
    * The complete licence text can be found at
    * http://www.jniwrapper.com/pages/winpack/license
    package com.jniwrapper.win32.shell;
    import com.jniwrapper.Function;
    import com.jniwrapper.LongInt;
    import com.jniwrapper.Pointer;
    import com.jniwrapper.UInt;
    import com.jniwrapper.win32.registry.RegistryKey;
    import com.jniwrapper.win32.registry.RegistryKeyType;
    import com.jniwrapper.win32.registry.RegistryKeyValues;
    import com.jniwrapper.win32.registry.RegistryException;
    import java.io.File;
    * This class provides functionality for creating file type associations.
    * @author Vladimir Kondrashchenko
    public class FileTypeAssociation
    private static final String FUNCTION_SHCHANGENOTIFY = "SHChangeNotify";
    private static final long SHCNE_ASSOCCHANGED = 0x08000000L;
    private static final long SHCNF_IDLIST = 0x0000;
    private String _extention;
    * Creates a class instance for associating files of the specified type.
    * @param extention specifies the file type by its extention.
    public FileTypeAssociation(String extention)
    if (extention.startsWith("."))
    _extention = extention;
    else
    _extention = "." + extention;
    * Creates a file type association.
    * @param executable an associated file will be passed as a parameter of this executable file.
    * @param progID the programm identifier in the registry. If the specified prog ID is not exist, it
    * will be created.
    public void createAssociation(File executable, String progID)
    if (!executable.isFile())
    throw new IllegalArgumentException("File not found.");
    String commandLine = "\"" + executable.getAbsolutePath() + "\" \"%1\"";
    createAssociation(commandLine, progID);
    * Creates a file type association.
    * @param commandLine specifies an executable command.
    * @param progID the executable programm identifier in the registry. If the specified prog ID is not exist, it
    * will be created.
    public void createAssociation(String commandLine, String progID)
    RegistryKey registryKey = RegistryKey.CLASSES_ROOT.createSubKey(progID+"\\shell\\open\\command", true);
    RegistryKeyValues values = registryKey.values();
    if (commandLine != null)
    values.put("", commandLine);
    else
    values.put("", "");
    registryKey.close();
    registryKey = RegistryKey.CLASSES_ROOT.createSubKey(getExtention(), true);
    values = registryKey.values();
    values.put("", progID, RegistryKeyType.SZ);
    registryKey.close();
    changeNotify();
    * Removes all associations for the file extention.
    public void removeAssociation()
    try
    RegistryKey.CLASSES_ROOT.deleteSubKey(getExtention());
    catch(RegistryException e)
    try
    RegistryKey.CURRENT_USER.openSubKey("Software\\Microsoft\\Windows\\CurrentVersion\\Explorer\\FileExts").
    deleteSubKey(getExtention());
    catch(RegistryException e)
    try
    RegistryKey.LOCAL_MACHINE.openSubKey("SOFTWARE\\Classes").deleteSubKey(getExtention());
    catch (RegistryException e)
    changeNotify();
    * Returns the default executable command for the file extention.
    * @return the default executable command for the file extention.
    public String getDefaultCommand()
    RegistryKey key = RegistryKey.CLASSES_ROOT.openSubKey(getProgID());
    key = key.openSubKey("\\shell\\open\\command");
    RegistryKeyValues values = key.values();
    return values.get("").toString();
    * Returns the program identified of the default executable program.
    * @return the program identified of the default executable program.
    public String getProgID()
    RegistryKeyValues values = RegistryKey.CLASSES_ROOT.openSubKey(getExtention()).values();
    return values.get("").toString();
    * Returns <code>true</code> if a file type association for the specified extention is registered.
    * @return <code>true</code> if a file type association for the specified extention is registered.
    public boolean isRegistered()
    try
    RegistryKey.CLASSES_ROOT.openSubKey(getExtention());
    catch (RegistryException e)
    return false;
    return true;
    * Returns the file extention.
    * @return the file extention.
    public String getExtention()
    return _extention;
    private void changeNotify()
    Function function = Shell32.getInstance().getFunction(FUNCTION_SHCHANGENOTIFY.toString());
    function.invoke(null,
    new LongInt(SHCNE_ASSOCCHANGED),
    new UInt(SHCNF_IDLIST),
    new Pointer(null, true),
    new Pointer(null, true));

  • Changing file type when saving doesn't work

    How can I fix the problem where, if I change file type when saving, eg from tiff to jpg, the 'jpg' suffix is not appended in the save window? It remains as tiff. This has only started happening recently.

    I have a G5 iSight running OSX 10.4.11 with all the latest upgrades. The problem is about a week old.
    Yesterday I did a clean install of everything (not because of this problem) which I'm sure would have cleared the problem. But I was playing around with importing all my old PS and InDesign settings via copying the old preference files (and others), and the tiff/jpeg problem has reappeared. Seems to me like one of the files I copied, contains the problem. I suspect the only way out of this is to reload PS. But I was hoping it might be as simple as deleting a certain preference file.

  • Where is "save as" or how to change file type in Preview in Lion?

    Where is "save as" or how to change file type in Preview in Lion? I used to use Preview to change quickly change a lot of PNGs to either JPEGs or PDFs but with the introduction of versions auto save etc there no "save as" in the File menu. Any suggestions how to get this functionality back or how to get around it within OS X (no Photoshop etc)?

    Just wasted 15 minutes looking for that.  What's wrong with Save As?

  • Windows BUG: Can't change file types through control panel Quicktime settings

    I am running the latest version of Quicktime on Viista Home Premium 64-bit.
    When I into Control Panel -> View 32-bit Control Panel Items -> Quicktime -> Browser, and I click on "File Types" or "MIME Settings", I get a blank page that looks like this: http://oi40.tinypic.com/hvbbia.jpg, and Quicktime momentarily freezes.
    I have no issue adjusting file type settings when bringing up Quicktime outside of control panel, or when using "Default Programs" within control panel, it's only when I do it within "View 32-bit Control Panel Items" that it does this.
    This is a minor bug but still weird. Can anyone else verify the issue? I tried uninstalling and reinstalling but that didn't help.

    This could be caused by damaged QuickTime preference files (or possibly a permissions problem on the preferences files).
    We can try rebuilding one set of your preference files to see if that helps with the greyed-out stuff.
    First, quit QuickTime if you have it open.
    Next, you'll need to make sure you are set up to view hidden files and folders in Vista (or 7).
    1. From the Start menu, click Open.
    2. In the Organize menu, click Folder and Search Options.
    3. Click the View tab.
    4. In the "Advanced settings" pane under "Hidden files and folders" make sure that the "Show hidden files and folders" option is selected.
    5. Click OK.
    Next, you'll remove the QuickTime preference folder (and contained file).
    6. In Computer, open Local Disk: C or whichever drive your documents are stored on.
    7. Open the Users folder.
    8. Open the folder with the name of the Windows 7 user account in which the QuickTime file types are "greyed out".
    9. Open the AppData folder.
    10. Open the Local folder.
    11. Open the Apple Computer folder.
    12. Drag the QuickTime folder out onto the Desktop.
    Now you'll rebuild the preference folder and file.
    13. Launch QuickTime. Check your file types again.
    Are they still greyed out, or can you change them now?

  • Some mp3 downloads are coming up as adobe files and wont let me change file type

    I am trying to download mp3 files or music files and they are coming up as adobe files when the window pops up and it has no option to change the file type and i have clicked the other options and they dont change anything either (e.g. open, save etc) If you then go ahead and try to download it has finished withina few seconds and you have no music file at the end of it.

    .EXE files are not very easy to open on Macs with Mac OS X 10.4.3 or earlier. They typically require an emulation program to run Windows.
    See my FAQ*:
    http://www.macmaps.com/macosxnative.html#WINTEL
    Newer Macs are more capable of running Windows, and can do so natively. You can attempt to find a 10.3.9 compatible alternative compatible application as well. Audio and video files don't play very well on emulation, but work fine in Windows native compatible Macs.
    - * Links to my pages may give me compensation.

  • Unable to change file type to audio book; previously able to.

    I have some audio book files (mp3) that I have added to my iTunes library and am trying to change the type to "audio book" by doing the standard right click and get info and changing to audio book etc.  However, iTunes is only actually changing them to audio books some of the time; the books that are and are not converting are both the same file type (mp3). Whenever it does not change it over, iTunes literally does not do anything (as in it does not try to change it and then fail). I am unsure what the issue is, can anyone help? Thanks!
    Windows 8.1   64 bit
    iTunes 11.3.1.2

    Hi,
    There is no preference but it turns out you can manually edit one of the preferences.xml files to force PL/SQL types to use the SQL worksheet editor. For SQL Developer 3.2.20.09.87 that file is system3.2.20.09.87\o.sqldeveloper.11.2.0.9.87\preferences.xml and will be located (on Windows 7, for example) in directory C:\Users\<userid>\AppData\Roaming\SQL Developer
    No guarantee this will work in future versions of the product, but for now you can add the following two xml blocks...
    For example, for .pls, add to <extensionToContentTypeMap ...>
                <Item>
                   <Key>.pls</Key>
                   <Value>TEXT</Value>
                </Item>
    and <userExtensionList>
                <Item>
                   <docClassName>oracle.ide.db.model.SqlNode</docClassName>
                   <userExtensions class="java.util.ArrayList">
                      <Item class="oracle.ide.config.DocumentExtensions$ExtInfo">
                         <extension>.pls</extension>
                         <locked>false</locked>
                      </Item>
                   </userExtensions>
                </Item> I researched this a while back after reading through some forum thread where someone claimed the PL/SQL file extensions got opened in the SQL editor in his environment, but without stating any specific release information. Possibly it worked for him then due to different product behavior (whether intentional or a bug), or perhaps even due to the technique described above.
    Regards,
    Gary
    SQL Developer Team

  • Unable to change File Type for specific file extensions

    Under Preferences->File Types different file extensions are assigned a file type e.g. The file extension .pkb is assigned the file type of PL/SQL. The file type of PL/SQL then opens the Code editor.
    I have a user who would prefer to open .pkb files in the SQL Worksheet editor but I am unable to change the file type to SQL Script as the option is greyed out.
    How do I change the File Type for these extensions? Is there a preferences file I need to change?
    Version: 3.2.20.09
    Thanks for your help.

    Hi,
    There is no preference but it turns out you can manually edit one of the preferences.xml files to force PL/SQL types to use the SQL worksheet editor. For SQL Developer 3.2.20.09.87 that file is system3.2.20.09.87\o.sqldeveloper.11.2.0.9.87\preferences.xml and will be located (on Windows 7, for example) in directory C:\Users\<userid>\AppData\Roaming\SQL Developer
    No guarantee this will work in future versions of the product, but for now you can add the following two xml blocks...
    For example, for .pls, add to <extensionToContentTypeMap ...>
                <Item>
                   <Key>.pls</Key>
                   <Value>TEXT</Value>
                </Item>
    and <userExtensionList>
                <Item>
                   <docClassName>oracle.ide.db.model.SqlNode</docClassName>
                   <userExtensions class="java.util.ArrayList">
                      <Item class="oracle.ide.config.DocumentExtensions$ExtInfo">
                         <extension>.pls</extension>
                         <locked>false</locked>
                      </Item>
                   </userExtensions>
                </Item> I researched this a while back after reading through some forum thread where someone claimed the PL/SQL file extensions got opened in the SQL editor in his environment, but without stating any specific release information. Possibly it worked for him then due to different product behavior (whether intentional or a bug), or perhaps even due to the technique described above.
    Regards,
    Gary
    SQL Developer Team

  • Change file types in iTunes

    Is it possible to change the file types of music files already downloaded in iTunes (aac to mp3)

    Hi Wall!
    Welcome to the Discussions!
    You have a mini-nightmare going on, but nothing that can't be sorted out.
    First, if you have any iTunes Music Store purchased music in your iTunes Library, please insure that you have authorized your computer so that you can play it and can load it on the iPod to play it there. These songs show as "Protected AAC audio files" in your iTunes window under the "Kind" heading.
    If you loaded/imported the CDs as AACs, they should play in that format and should load into your iPod in that format. I suspect that they won't play or load onto the iPod because iTunes can't find them on your hard drive.
    If I were you, I would highlight my Library in the iTunes window, select "Show Duplicates" from the menubar, then sort the files based on "kind" by clicking on the "kind" header on the iTunes window. (If "kind" doesn't show as one of your headers, choose View Options from the menubar and check it so it does appear in the iTunes window.) After sorting by "kind", you should have your duplicate song files grouped together as AACs and MPEG Audio Files (MP3s). I would highlight all of the MP3s that were duplicated by the conversion you did and delete them, thus undoing the conversion and making things a bit simpler to work with. When You're done with this, change the option back to "Show All Songs".
    Now, you're left with the AACs that are not linked with iTunes... Unless you deleted them from your drive, they're still there, but iTunes doesn't know where they are. Go to the Advanced Pane of your iTunes Preferences, click on the "General" tab, then check the boxes to "Keep iTunes Music folder organized" and "Copy files to iTunes Music folder when adding to Library". Also note the location listed for your iTunes Music folder while you're there. Click "OK'" and these changes will take effect.
    Now, from the iTunes menubar, find and choose "Consolidate Library", which will scour your hard drive for music files and add them to the iTunes Music Folder. Your songs should then be present in the iTunes window. Check to insure that they are, and that they play before proceeding... You may now have duplicates again: the original AACs that weren't linked, as well as the files that were added through the "consolidation" that you just did. If so, you can once again choose to show duplicates in your Library, then sort them based on Date Added, which will separate the old song titles from the new ones. Once you sort them this way, you can then highlight all the old duplicates and delete them. You should be left with a working Library. (Be careful to not mistakenly delete any "Protected AAC audio files" if you have music from the iTunes Music Store.)
    There may be an easier way to do this, but I don't know of one without messing around with the files inside the iTunes folder, which I'm very hesitant to do or to recommend to someone else...
    Wall, just know that the files you imported from those 600 or so CDs should be somewhere on your drive, even though iTunes has "lost" a link to them. If you keep them in your iTunes folder, you'll know where to look for and find them. The preference settings I referenced a couple of paragraphs above should help to keep them organized there.
    You might want to check out the AAC loading/playing before doing any of the above. First, check/change your "General" iTunes preferences as I previously described. Then insure your "Importing" preference is set to AAC. Create a new playlist, load one of the CDs you previously imported, and drag it's icon to the new playlist to add it to the Music folder and Library. Attempt to play the songs from that playlist. They should play just fine. If you want, you can then sort the Library by "Date Added" in the iTunes window and delete the songs from the Library from the CD you just added. If this works for you, then proceed with the consolidation and cleanup as above.
    Gary
    1GH DP G4 Quicksilver 2002, 400MH B&W G3, Mac SE30   Mac OS X (10.4.2)  

  • Change file type classification? mkv as "Movie"

    In short, I would like to make mkv files show up under the class of "Movie" in smart folders and such. I'm assuming that buried in some setting or file there is a list of extensions I can add "mkv" to. I would have thought this was a common question but so far forum trawling has got me nowhere. Can anyone shed some light? The reason, if you care to read is below, but it doesn't have that much bearing on the question.
    I have a sizeable DVD collection, I also have a new job that puts me in hotels 5 weeks out of 6 for training. I don't want to carry them around as they'll get damaged and broken. Last week I left my MacPro chobbling away at encodes and now my entire DVD collection resides on a NAS as well as my shelves. I've created a simple automator finder service that will copy the selected files to a "Films" folder within the Movies folder that I've removed from the time machine backup so as not to waste space. This is set to only show up if the selected items are "Movies". As a consequence, it doens't appear for mkv's.
    I know I can just alter the service to be there permanantly which is what I'll do for now, but it's not a very elegant solution.

    I was able to change the extension in Windows, which then changed the file type. I'm still curious as to how to make the change directly on my MAC.

  • How to change file type associations in SAP ERP 6.0?

    Hello,
    I'd like to figure out how to change the application associated with a given file type in SAP. I want to open a .DOC file, but I am using OpenOffice instead of MS Word. I have .DOC file type already associated with OpenOffice in Windows XP, but SAP doesn't seem to recognize that association. I am using SAP ERP 6.0. Any ideas?
    Mike

    Hi,
    MS Word is mandatory. You will not be able to work using Open Office in SAP.
    Regards,
    Rajesh Kumar

  • Changing file type API to open with Adobe Reader 9.2

    In windows XP, if I go to C:\Program Files\Adobe\Reader 9.0\Reader\plug_ins, it shows the API extension to be File Type AcroExch.plugin
    This seems to be because Adobe Acrobat 5.0 is installed first on the PC, then Adobe Reader 9.2 is installed on the PC.
    On a clean PC, if I install Adobe Reader 9.2, then the file type becomes API file.
    How do I change the file type from AcroExch.plugin to API file?

    I want to do this because I have a 3rd party plugin which will not work otherwise.
    The 3rd party plugin is FileOpen Installer.
    http://plugin.fileopen.com
    If Adobe Reader 9.2 is installed on the PC first, then the folder c:\program files\adobe\reader 9.0\reader\plug_ins looks like the attached JPG Adobe Reader 9 Plugin working.jpg
    FileOpen Plugin works with the above situation.
    Note that it is a 3rd party supplier which sends files which require the 3rd party Plugin FileOpen and a test document is here
    http://fileopen.bl.uk:8008/FileOpenFreeLink-1.0/entryPage.do;jsessionid=FADC8178CCD0236480 199338A79483E7
    If Adobe Acrobat 5.0 is installed on the PC first and the Adobe Reader 9.2, then the folder c:\program files\adobe\reader 9.0\reader\plug_ins looks like the attached Adobe Reader 9 Plugin Problem.jpg and the test file sent by the British Library above will not open.
    You get the following when you try to open the British Library test file (see British Library2.jpg)
    FileOpen is installed as a 3rd Party Plugin in Adobe Reader 9.2 and I can see this under Help About 3rd Party Plugins FileOpen Installer.
    (Note Adobe Acrobat 5 runs via a network install and is not installed onto the workstation so I can't remove it via Add/Remove Programs).
    So I am guessing the problem is to do with the API file type being different when Adobe Acrobat 5 is installed first?
    Thanks,
    Paul

  • Change File Type/Kind of File

    I have a file on my MAC that I use in Windows, which I run on my MAC using Parallels.
    File 1
    Under Get Info, it shows the file Kind as a Unix Executible File (since there is nothing associated with it on the MAC) - in Windows it correctly shows the file as a QuickBooks file.
    File 2
    I fooled around with the extension and made it XLS. Now under Get Info, it shows the file Kind as a Microsoft Excel Workbook - in Windows, I can change the extension, but it shows the file type as a Excel file.
    I'm trying to change the file Kind from Excel to Unix Executable File, or other. I think if I can say what it opens with, it might work. The problem is that the file doesn't open with any MAC program, so I can't do that (note with file #1, the open with field says <none>, which is okay).
    Can anyone offer any help. The file works fine, I just don't want my Quickbooks file to say that it is an Excel file. This is not an extension issue, it is a hidden coding issue that I can't figure out.

    I was able to change the extension in Windows, which then changed the file type. I'm still curious as to how to make the change directly on my MAC.

  • How do I change file type?

    I am trying to upload a video that I edited onto my hard drive in order to share and view it through different players.  My problem is that after I upload the video, the players do not recognize the file type.  How do I change the file type in order to view it with different players other than Adobe?

    sparkyjj
    Did you ever say what version of Premiere Elements that you are using and on what computer operating system the program is running?
    For now, I am assuming that you are using Premiere Elements 11 Windows 64 bit.
    The .prel file is just the project file whose Timeline needs to be exported either
    a. file saved to the computer hard drive for an upload at the web site's home
    or
    b. a direct upload of the Timeline content to the sharing site provided for in Online/YouTube or Facebook or Vimeo with the preset offered.
    If the Premiere Elements Online features do not meet your needs, an you want to export and save the file for upload to YouTube, Facebook, or Vimeo, you check out the video sharing requirements of the site of interest
    Facebook
    http://www.facebook.com/help/218673814818907
    If you decide that you want the file involved to be .wmv, then you visit Publish+Share/Computer/Windows Media and set the export settings there under the Advanced Button of the preset.
    There are also export choices for this export to file under
    Publish+Share
    Computer
    AVCHD
    for Vimeo and YouTube
    Many of these sites, convert your upload to flash video. YouTube does.
    Here are some Vimeo requirements
    http://vimeo.com/help/compression
    http://vimeo.com/videoschool/lesson/259/video-compression-basics
    Please review and consider and then get back to us if your question has not been answered.
    Thanks.
    ATR

Maybe you are looking for

  • How do I restore deleted podcasts?

    I was trying to clear some space on my HDD and, my 110GB iTunes library being the worst offender, I decided to move a lot of podcasts onto DVDs. Having burned them to disc, I deleted all but the most recent episode, but just before emptying the recyc

  • Error while installing EP6.0 SP 6

    Hi all, I am currently using EP6.0 SP4. And while upgrading to EP6.0 SP6 I got the following error.. Error: Unresolved dependencies found for the following SDAs: 1.: development component 'com.sapportals.connectors.sap'/'sap.com'/'SAP AG'/'606.200406

  • Conversion of a string to a number

    Hi there, I have a problem sending a String as a number.. I have a text field called score0 :- var score = score0.text; The string (score0.text) will have an "s" at the end as the time is counted in seconds and tenths, so I will be receiving somethin

  • PDFMaker adds codes to headings

    I am using the PDFMaker of Acrobat X Pro in Word 2010. When I choose the option to make bookmarks using the headings in Word, the resulting PDF shows a very tiny 2- or 3-character alpha-numeric code on the baseline at the beginning of the headings. T

  • Optional Parameter without a value

    Hi, I'm using Discoverer 10g. Somebody knows what is passed when an optional parameter (a parameter which doesn't require a user to enter a value) is left without a value ? I didn't understand actually if is passed NULL, 'NULL', '',' '... I need to k