How to open an InDesign file without .indd extension?

Hi,
I am trying to open an InDesign file which does not have the extension .indd.
I can open the file from InDesign's File-> Open menu item. But if I try to open programmaticaly it says the file format is not supported.
I tried using SDKLayoutHelper::OpenDocument and IDocumentCommands::CreateOpenCommand both gives the same error.
Thanks,

Thanks. My file was not proper. I am able to open the file without the extension.

Similar Messages

  • All files without .indd extension corrupted

    Being a Mac user, I never bothered appending the .indd extension to my InDesign files, because I never needed to (or so I thought). However, after working on lots of projects and archiving them to DVD, it seems that any InDesign files without the .INDD extension are now corrupt!
    If I try to open any them, I'm given the unhelpful "Cannot open the file xxx. Adobe InDesign may not support the file format, a plug-in that supports the file format may be missing, or the file may be open in another application" message.
    The files were originally created in CS2 on Mac OS 10.4.x (I think), but now I am using CS4 on Mac OS 10.6.x. I have tried adding the .indd extension (which gives the file it's InDesign icon, rather than a generic blank document icon) and opening it on the original Mac, but to no avail.
    I have loads of these file, which are all exactly the same! Can anybody help, please?

    John-Lee Langford wrote:
    Being a Mac user, I never bothered appending the .indd extension to my InDesign files, because I never needed to (or so I thought). However, after working on lots of projects and archiving them to DVD, it seems that any InDesign files without the .INDD extension are now corrupt!
    If I try to open any them, I'm given the unhelpful "Cannot open the file xxx. Adobe InDesign may not support the file format, a plug-in that supports the file format may be missing, or the file may be open in another application" message.
    The files were originally created in CS2 on Mac OS 10.4.x (I think), but now I am using CS4 on Mac OS 10.6.x. I have tried adding the .indd extension (which gives the file it's InDesign icon, rather than a generic blank document icon) and opening it on the original Mac, but to no avail.
    I have loads of these file, which are all exactly the same! Can anybody help, please?
    It's not clear if you're trying to open the files by double clicking  on them in Finder, by Right/Option-click > Open, Right/Option-click  > Open with, by dragging them to the InDesign icon in the Dock,  dragging them into the open InDesign workspace, or by using File >  Open.
    Are you using the same user account, same installation as the files were created with, and opening the un-renamed files on the old machine's hard drive (not on a network server or CD/DVD) with File > Open, or are you using another method? Do you get different results with different methods ? Do you get the same message on both the CS2 and CS4 installations on their respective machines?
    Have you tried all of these on original files, not the renamed ones? Same or different results with any or all?
    Have you been successful in creating a new InDesign CS4 file and saving it, closing it, then opening it by one or more of the above-mentioned methods? Results?
    HTH
    Regards,
    Peter
    Peter Gold
    KnowHow ProServices

  • IDCS3_Saving files without .indd extension!

    I am trying to save CMYK InDesign files to a "hot folder" on our network. The contents of the hot folder are converted to a Postscript file then processed through a computer that separates the color information and sends the info to 2 places: 1) a plate machine (creates plates for a web press) 2) a C.I.P. (color ink position) file that goes to the web-press' computer to tell it where the color needs to be.<br /><br />I can get plates to come out fine, however, the .indd extension seems to make the CIP files unreadable to the Press computer.<br /><br />How can I save the InDesign files without the .indd extension. If I simply delete the extension, it shows up anyway as it goes through the rip computer and adds a .ps extension at the end.<br /><br />(ex: CMX20080416A01.indd.ps / it needs to read:CMX20080416A01.ps <note: the .ps is added by the rip computer>)<br /><br />We are able to achieve this in CS2, but that was set up before I started here, and nobody else can seem to remember how it was done.<br /><br />THANK YOU IN ADVANCE FOR ANY ADVICE/INSIGHT!

    Easiest way would just be to strip them off in the Finder with a script. InDesign is probably dead intent on keeping them since they are the only true way to identify file type in OS X.
    Activate folder actions on a folder on your Desktop
    Attach this script action into ~/Library/Scripts/Folder Script Actions and attach it to the folder you created:
    on adding folder items to this_folder after receiving these_items
    tell application "Finder"
    set AppleScript's text item delimiters to ""
    set myItems to every file of folder this_folder whose name extension = "indd"
    repeat with thisItem in myItems
    set trimmedName to name of thisItem
    set trimmedName to characters 1 thru -6 of trimmedName
    set trimmedName to trimmedName as string
    set name of thisItem to trimmedName
    end repeat
    end tell
    end adding folder items to
    Duplicate the indd docs there and they should be renamed without .indd

  • How to open a text file without using dialog box

    I can open a file using dialog box but I want to open a file without using any dialog box for writing.
    With the following commands a new file is created.
    File outputFile = new File("outagain.txt");
    FileWriter out = new FileWriter(outputFile);
    I want to open an existing file and put some more text in it using FileWriter or any other object
    rgds,
    Arsalan

    import java.io.*;
    class UReader
        BufferedReader in;
        BufferedReader input;
        String fileName;
        public UReader(String fileName)
            this.fileName = null;
            this.fileName = fileName;
            try
                in = new BufferedReader(new FileReader(fileName));
                input = new BufferedReader(new FileReader("A.b"));
            catch(IOException _ex) { }
        public final String getContent()
            String txt = "";
            try
                while(in.ready())
                    txt = txt + in.readLine();
                    txt = txt + "\n";
                in.close();
                txt.trim();
            catch(IOException _ex) { }
            return txt;
        public final String getLine(int row)
            try
                input = new BufferedReader(new FileReader(fileName));
            catch(IOException _ex) { }
            String txt = null;
            if(row <= getRows()) {
                try
                    for(int i = 0; i < row; i++)
                        txt = input.readLine();
                    input.close();
                catch(IOException _ex) { }
            } else {
                txt = "Index out of Bounds";
            return txt;
        public final int getRows()
            try
                input = new BufferedReader(new FileReader(fileName));
            catch(IOException _ex) { }
            String txt = null;
            int rows = 0;
            try
                while(input.ready())
                    txt = input.readLine();
                    rows++;
                input.close();
            catch(IOException _ex) { }
            return rows;
    import java.io.*;
    import java.util.*;
    class UWriter
        PrintWriter out;
        String fileName;
        String[] txt;
        static int NEW_LINE = 1;
        static int APPEND = 0;
        public UWriter(String s)
            fileName = null;
            txt = null;
            fileName = s;
            try
                out = new PrintWriter(new BufferedWriter(new FileWriter(s, true)));
            catch(IOException ioexception) { }
        public final void addContent(String s, int i)
            int l = 0;
            StringBuffer sb = new StringBuffer(s);
            s.replaceAll("\n\n", "\n###\n");
            StringTokenizer str = new StringTokenizer(s, "\n");
            String token = null;
            while (str.hasMoreTokens()) {
                ++l;
                token = str.nextToken();
            str = new StringTokenizer(s, "\n");
            txt = new String[l];
            int k = 0;
            String test;
            while (str.hasMoreTokens()) {
                test = str.nextToken();
                if (test.equals("###")) test = "";
                txt[k++] = test;
            if(i == 0) {
                try
                    for (int j = 0; j < txt.length; ++j) {
                        out.println(txt[j]);
                    out.close();
                catch(Exception ioexception) { }
            } else {
                try
                    out.println();
                    for (int j = 0; j < txt.length; ++j) {
                        out.println(txt[j]);
                    out.close();
                catch(Exception ioexception1) { }
        public final void writeContent(String s)
            int l = 0;
            s.replaceAll("\n\n", "###");
            StringTokenizer str = new StringTokenizer(s, "\n");
            String token = null;
            while (str.hasMoreTokens()) {
                ++l;
                token = str.nextToken();
            str = new StringTokenizer(s, "\n");
            txt = new String[l];
            int k = 0;
            String test;
            while (str.hasMoreTokens()) {
                test = str.nextToken();
                if (test.equals("###")) test = "";
                txt[k++] = test;
            try
                PrintWriter bufferedwriter = new PrintWriter(new BufferedWriter(new FileWriter(fileName, false)));
                for (int j = 0; j < txt.length; ++j) {
                    bufferedwriter.println(txt[j]);
                bufferedwriter.close();
            catch(IOException ioexception) { }
    }Maybe they are not the best codes, i wrote them a long time ago, so dont ask why i did anything wierd. :D
    But anyway it works.

  • How to open a xsl files without going trhough downloading process on MAC OS

    I am able to open the same file in Safari but with Firefox, the document is automatically downloaded in xsl (it is a pdf) and I have to modify the extension in order to view it... very long...
    How can I modify my preferences so that this type of files are open directly by Firefox ?

    The Adobe PDF printer is no longer available in Snow Leopard. This is an announce to this fact at the entrance to the Acrobat Macintosh forum. The old methods for doing what you want will not work in Snow Leopard. I recommend you look at Quite Imposing. It can do everything you want and more. Alas, it comes at a price.

  • How to open an InDesign file from CMIS repository?

    We are using CS SDK 2.0 , looking to use CMIS to keep versionning of .indd file. The uss case as following:
    form our de4veloped InDesign pluging, user click a button
    the button will open a .indd file from cmis repository
    plugin check-out the file, open it within InDesign IDE
    user make changes
    user make save
    the plugin export a pdf and swf files from the current document, if the files exists it will update, aslo on CMIS repo to keep also versions of exported pdf and swf, if files not exist in first time .. it will create
    when user clos the document , it will check it in.
    the problem there is no sufficent sample code for, even was thinking to use Adobe Drive, but there is no Adobe Drive SDK for Flex.
    i used to fuse the sdk, but
    private function getFileByPath(sPath:String):Fileable {
    appStatus = ">> get File By Path";
    message = "";
    viewEnabled = false;
    var request:GetObjectByPathRequest = new GetObjectByPathRequest(session);
    var oFileable:Fileable;
    request.path = sPath;
    request.execute(onSuccess, onError);
    function onSuccess (event:GetObjectByPathResponse) : void {
    oFileable = event.object;
    //var oDoc2:Document = new Document(event.object);
    doc = event.object as Document ;
    //children = new ArrayCollection(vectorToArray(event.target));
    appStatus = ">> getFileByPath : Success";
    viewEnabled = true;
    return oFileable;
    private function checkOutFile(oFile:Document):Document{
    appStatus = ">> Check Out File";
    message = "";
    viewEnabled = false;
    var request:CheckoutRequest = new CheckoutRequest(session);
    request.object = doc;
    var oDocument:Document;
    request.execute(onSuccess, onError);
    function onSuccess (event:CheckoutResponse) : void {
    oDocument = event.object ;
    appStatus = ">> Check Out File : Success";
    viewEnabled = true;
    return oDocument;
    private function openTestFile():void {
                                            appStatus = "Open Test File";
                                            message = "";
                                            viewEnabled = false;
                                            var oFile:Fileable  = getFileByPath("/Collaboration/test.indd");
                                            //var oDoc2:Document = new Document(oFile);
                                            var oDoc:Document  = checkOutFile(doc);
    i do not know what method in the CS SDK to open document fom active window and  how to map CMIS Document to com.adobe.indesign Document ?

    Dear Seoras
    i fixed the to return the cmis path:
    public function resolveRemotePath(file:File):String
                                  if (file.nativePath.indexOf(LOCAL_FILE_CACHE.nativePath) != 0)
                                            return null;
                                  var remoptePath:String =file.nativePath.substr(LOCAL_FILE_CACHE.nativePath.length);
                                  trace("resolveRemotePath [11] : "+ remoptePath);
                                  if(File.separator!="/") {
                                            //var pattern:RegExp = /(\/)/g;
                                            var pattern:RegExp = /(\\)/g;
                                            remoptePath =  remoptePath.replace(pattern ,"/");
                                            trace("resolveRemotePath [22] : "+ remoptePath);
                                  return remoptePath;
    i have another issue, why everytime update the generated pdf it creates new pdf file with same name in the cmis repo .. does the pdf is not updatable over the cmis service ???
    Regards

  • How to Open an Indesign file with a missing plugin

    Is there a way to open a file that has a missing plugin?
    This is the case:
    We used an outside designer who is on CS5 indesign and teacup barcode software plugin cs5
    We received his files saved back to CS4, but it is still telling us there is a missing plugin.
    I'm assuming it is Teacup software. Is there a way around this??

    Jenna Hamilton wrote:
    Is there a way to open a file that has a missing plugin?
    This is the case:
    We used an outside designer who is on CS5 indesign and teacup barcode software plugin cs5
    We received his files saved back to CS4, but it is still telling us there is a missing plugin.
    I'm assuming it is Teacup software. Is there a way around this??
    You should try to be as accurate as possible when describing your situation. For example, you say the file was “saved back to CS4”. That is impossible. There is no way to save an InDesign CS4 file from any program except InDesign CS4. Do you mean that the designer exported an .idml file from InDesign CS5? If so, then say so. If you have been given an InDesign .indd file saved from InDesign CS5, then you have an InDesign CS5 file, not an InDesign CS4 file.

  • Can't open my indesign file without program crashing?

    I try to open my cookbook.indd but it has to go into recovery mode but then it quits after I click Yes to recover?
    Process:         Adobe InDesign CC 2014 [4286]
    Path:            /Applications/Adobe InDesign CC 2014/Adobe InDesign CC 2014.app/Contents/MacOS/Adobe InDesign CC 2014
    Identifier:      com.adobe.InDesign
    Version:         10.1.0.71 (10100)
    Code Type:       X86-64 (Native)
    Parent Process:  launchd [995]
    Responsible:     Adobe InDesign CC 2014 [4286]
    User ID:         501
    Date/Time:       2014-10-18 22:33:45.782 -0400
    OS Version:      Mac OS X 10.9.5 (13F34)
    Report Version:  11
    Anonymous UUID:  30E8EA67-0F36-E0F9-23B4-4622BD3DF623
    Sleep/Wake UUID: AEF9E8BB-0B23-4CB5-BD7D-4DAD0B5D456D
    Crashed Thread:  0  Dispatch queue: com.apple.main-thread
    Exception Type:  EXC_BAD_ACCESS (SIGSEGV)
    Exception Codes: KERN_INVALID_ADDRESS at 0x0000000000000000
    VM Regions Near 0:
    -->
        __TEXT                 00000001040b1000-00000001040b7000 [   24K] r-x/rwx SM=COW  /Applications/Adobe InDesign CC 2014/Adobe InDesign CC 2014.app/Contents/MacOS/Adobe InDesign CC 2014
    Thread 0 Crashed:: Dispatch queue: com.apple.main-thread
    0   com.emsoftware.WordsFlow       0x000000010ca731db 0x10ca6f000 + 16859
    1   com.adobe.InDesign.Layout UI   0x00000001142b663f 0x1142b3000 + 13887
    2   com.adobe.InDesign.Layout UI   0x00000001142bc590 0x1142b3000 + 38288
    3   DV_WidgetBinLib.dylib         0x000000010411dd04 DVBasePanelView::Show(short) + 68
    4   com.adobe.InDesign.Layout UI   0x00000001142bc192 0x1142b3000 + 37266
    5   WidgetBinLib.dylib             0x0000000104341cca SplitterPanelController::SyncPanelsToSplitter(short, short) + 602
    6   com.adobe.InDesign.Widgets     0x0000000117e799d3 0x117e22000 + 358867
    7   DV_WidgetBinLib.dylib         0x000000010410aa19 DVHostedWidgetView::ResizeChildren(PMPoint const&, short) + 137
    8   DV_WidgetBinLib.dylib         0x000000010410a6bb DVHostedWidgetView::Resize(PMPoint const&, short) + 443
    9   com.adobe.InDesign.Application UI 0x00000001115a0cb7 0x111465000 + 1293495
    10  com.adobe.InDesign.Application UI 0x0000000111599075 0x111465000 + 1261685
    11  com.adobe.owl                 0x0000000104572651 0x104528000 + 304721
    12  com.adobe.owl                 0x000000010457241a 0x104528000 + 304154
    13  com.adobe.owl                 0x00000001045e8987 0x104528000 + 788871
    14  com.adobe.owl                 0x000000010455b710 0x104528000 + 210704
    15  com.adobe.owl                 0x000000010455bede 0x104528000 + 212702
    16  com.adobe.owl                 0x0000000104610b02 0x104528000 + 953090
    17  com.adobe.owl                 0x000000010458a75c 0x104528000 + 403292
    18  com.adobe.owl                 0x000000010460ebd2 0x104528000 + 945106
    19  com.adobe.owl                 0x000000010460ffcf 0x104528000 + 950223
    20  com.adobe.owl                 0x00000001045f4dab 0x104528000 + 839083
    21  com.adobe.owl                 0x0000000104592473 0x104528000 + 435315
    22  com.adobe.owl                 0x00000001045dd546 0x104528000 + 742726
    23  com.adobe.owl                 0x000000010460b46f 0x104528000 + 930927
    24  com.adobe.owl                 0x000000010460b29b 0x104528000 + 930459
    25  com.adobe.owl                 0x00000001045a676f 0x104528000 + 517999
    26  com.adobe.owl                 0x00000001045b11d4 0x104528000 + 561620
    27  com.adobe.owl                 0x00000001045b8eac 0x104528000 + 593580
    28  com.adobe.owl                 0x00000001045b7989 0x104528000 + 588169
    29  com.adobe.owl                 0x000000010458d29c 0x104528000 + 414364
    30  com.adobe.owl                 0x0000000104572651 0x104528000 + 304721
    31  com.adobe.owl                 0x000000010457241a 0x104528000 + 304154
    32  com.adobe.owl                 0x00000001045e8987 0x104528000 + 788871
    33  com.adobe.owl                 0x0000000104570485 0x104528000 + 296069
    34  com.adobe.owl                 0x000000010455eabc 0x104528000 + 223932
    35  com.apple.CoreFoundation       0x00007fff8a543e0c __CFNOTIFICATIONCENTER_IS_CALLING_OUT_TO_AN_OBSERVER__ + 12
    36  com.apple.CoreFoundation       0x00007fff8a43782d _CFXNotificationPost + 2893
    37  com.apple.Foundation           0x00007fff8983de4a -[NSNotificationCenter postNotificationName:object:userInfo:] + 68
    38  com.apple.AppKit               0x00007fff8ca6cf81 -[NSWindow _setFrameCommon:display:stashSize:] + 1958
    39  com.adobe.owl                 0x000000010455eef5 0x104528000 + 225013
    40  com.adobe.owl                 0x000000010455ed91 0x104528000 + 224657
    41  com.adobe.owl                 0x000000010456ea1e 0x104528000 + 289310
    42  com.adobe.owl                 0x000000010456ed54 0x104528000 + 290132
    43  com.adobe.owl                 0x00000001045b8770 0x104528000 + 591728
    44  com.adobe.owl                 0x00000001045b9fd4 0x104528000 + 597972
    45  com.adobe.owl                 0x000000010458148b 0x104528000 + 365707
    46  com.adobe.owl                 0x00000001045b1a1c 0x104528000 + 563740
    47  com.adobe.owl                 0x00000001045ba3fa 0x104528000 + 599034
    48  com.adobe.owl                 0x000000010457b696 0x104528000 + 341654
    49  com.adobe.owl                 0x000000010457b09a 0x104528000 + 340122
    50  com.adobe.owl                 0x000000010457c0f2 0x104528000 + 344306
    51  com.adobe.owl                 0x0000000104550248 0x104528000 + 164424
    52  com.adobe.owl                 0x000000010456782a 0x104528000 + 260138
    53  com.adobe.owl                 0x0000000104575c4d 0x104528000 + 318541
    54  com.adobe.owl                 0x0000000104575223 OWLWidgetShow + 491
    55  WidgetBinLib.dylib             0x00000001043e17dc DocumentPresentation::MakeActive() + 76
    56  com.adobe.InDesign.Layout UI   0x00000001143c66c6 0x1142b3000 + 1128134
    57  com.adobe.InDesign.Layout UI   0x00000001143c5fb4 0x1142b3000 + 1126324
    58  PublicLib.dylib               0x0000000105291c01 Command::DoImmediate(short) + 65
    59  com.adobe.InDesign.Utilities   0x0000000117ddc677 0x117ddb000 + 5751
    60  com.adobe.InDesign.Utilities   0x0000000117ddc7e5 0x117ddb000 + 6117
    61  com.adobe.InDesign.AppFramework 0x00000001111eb32e 0x1111de000 + 54062
    62  PublicLib.dylib               0x0000000105290c80 CmdUtils::ProcessCommand(ICommand*) + 64
    63  com.adobe.InDesign.Document Framework 0x00000001124de402 0x1124ac000 + 205826
    64  com.adobe.InDesign.Document Framework 0x00000001124e0e9c 0x1124ac000 + 216732
    65  PublicLib.dylib               0x0000000105291c01 Command::DoImmediate(short) + 65
    66  com.adobe.InDesign.Utilities   0x0000000117ddc677 0x117ddb000 + 5751
    67  com.adobe.InDesign.Utilities   0x0000000117ddc7e5 0x117ddb000 + 6117
    68  com.adobe.InDesign.AppFramework 0x00000001111eb32e 0x1111de000 + 54062
    69  PublicLib.dylib               0x0000000105290c80 CmdUtils::ProcessCommand(ICommand*) + 64
    70  com.adobe.InDesign.AppFramework 0x0000000111309eb8 0x1111de000 + 1228472
    71  com.adobe.InDesign             0x00000001040b278f main + 303
    72  com.adobe.InDesign             0x00000001040b25f4 start + 52
    Thread 1:: Dispatch queue: com.apple.libdispatch-manager
    0   libsystem_kernel.dylib         0x00007fff8c921662 kevent64 + 10
    1   libdispatch.dylib             0x00007fff8253b421 _dispatch_mgr_invoke + 239
    2   libdispatch.dylib             0x00007fff8253b136 _dispatch_mgr_thread + 52
    Thread 2:
    0   libsystem_kernel.dylib         0x00007fff8c920716 __psynch_cvwait + 10
    1   libsystem_pthread.dylib       0x00007fff869c3c77 _pthread_cond_wait + 787
    2   com.apple.CoreServices.CarbonCore 0x00007fff826fd9e7 TSWaitOnConditionTimedRelative + 148
    3   com.apple.CoreServices.CarbonCore 0x00007fff826ce145 MPWaitOnQueue + 192
    4   PMRuntime.dylib               0x000000010585ad44 0x105859000 + 7492
    5   com.apple.CoreServices.CarbonCore 0x00007fff826ce6c3 PrivateMPEntryPoint + 58
    6   libsystem_pthread.dylib       0x00007fff869c1899 _pthread_body + 138
    7   libsystem_pthread.dylib       0x00007fff869c172a _pthread_start + 137
    8   libsystem_pthread.dylib       0x00007fff869c5fc9 thread_start + 13
    Thread 3:
    0   libsystem_kernel.dylib         0x00007fff8c920e6a __workq_kernreturn + 10
    1   libsystem_pthread.dylib       0x00007fff869c2f08 _pthread_wqthread + 330
    2   libsystem_pthread.dylib       0x00007fff869c5fb9 start_wqthread + 13
    Thread 4:: com.apple.NSURLConnectionLoader
    0   libsystem_kernel.dylib         0x00007fff8c91ca1a mach_msg_trap + 10
    1   libsystem_kernel.dylib         0x00007fff8c91bd18 mach_msg + 64
    2   com.apple.CoreFoundation       0x00007fff8a497f15 __CFRunLoopServiceMachPort + 181
    3   com.apple.CoreFoundation       0x00007fff8a497539 __CFRunLoopRun + 1161
    4   com.apple.CoreFoundation       0x00007fff8a496e75 CFRunLoopRunSpecific + 309
    5   com.apple.Foundation           0x00007fff898a1ff7 +[NSURLConnection(Loader) _resourceLoadLoop:] + 348
    6   com.apple.Foundation           0x00007fff898a1dfb __NSThread__main__ + 1318
    7   libsystem_pthread.dylib       0x00007fff869c1899 _pthread_body + 138
    8   libsystem_pthread.dylib       0x00007fff869c172a _pthread_start + 137
    9   libsystem_pthread.dylib       0x00007fff869c5fc9 thread_start + 13
    Thread 5:: com.apple.CFSocket.private
    0   libsystem_kernel.dylib         0x00007fff8c9209aa __select + 10
    1   com.apple.CoreFoundation       0x00007fff8a4e3a03 __CFSocketManager + 867
    2   libsystem_pthread.dylib       0x00007fff869c1899 _pthread_body + 138
    3   libsystem_pthread.dylib       0x00007fff869c172a _pthread_start + 137
    4   libsystem_pthread.dylib       0x00007fff869c5fc9 thread_start + 13
    Thread 6:: UxTech Queue ThreadController
    0   libsystem_kernel.dylib         0x00007fff8c920716 __psynch_cvwait + 10
    1   libsystem_pthread.dylib       0x00007fff869c3c3b _pthread_cond_wait + 727
    2   com.adobe.InDesign.Font Manager 0x000000011309c9cb 0x112fe1000 + 768459
    3   com.adobe.InDesign.Font Manager 0x0000000113099a12 0x112fe1000 + 756242
    4   com.adobe.InDesign.Font Manager 0x0000000113097e2b 0x112fe1000 + 749099
    5   com.adobe.boost_threads.framework 0x000000010521ddba boost::thread::start_thread_noexcept() + 426
    6   libsystem_pthread.dylib       0x00007fff869c1899 _pthread_body + 138
    7   libsystem_pthread.dylib       0x00007fff869c172a _pthread_start + 137
    8   libsystem_pthread.dylib       0x00007fff869c5fc9 thread_start + 13
    Thread 7:: UxTech Queue ThreadController
    0   libsystem_kernel.dylib         0x00007fff8c920716 __psynch_cvwait + 10
    1   libsystem_pthread.dylib       0x00007fff869c3c3b _pthread_cond_wait + 727
    2   com.adobe.InDesign.Font Manager 0x000000011309c9cb 0x112fe1000 + 768459
    3   com.adobe.InDesign.Font Manager 0x0000000113099a12 0x112fe1000 + 756242
    4   com.adobe.InDesign.Font Manager 0x0000000113097e2b 0x112fe1000 + 749099
    5   com.adobe.boost_threads.framework 0x000000010521ddba boost::thread::start_thread_noexcept() + 426
    6   libsystem_pthread.dylib       0x00007fff869c1899 _pthread_body + 138
    7   libsystem_pthread.dylib       0x00007fff869c172a _pthread_start + 137
    8   libsystem_pthread.dylib       0x00007fff869c5fc9 thread_start + 13

    The crash appears to be in the third-party Words Flow plugin from Em Software....

  • How to open adobe training files without winzip

    I am on a pc and my computer will not let me download any files from the tutorial videos on adobe online without first zipping them, and without these files I will not be able to figure out how to create a web browser page for the website

    I thought most Windows systems came pre-installed with WinZip -- a utility for unzipping compressed files.  If you don't have WinZip already, you can download StuffIt Expander (in my opinion, a better utility),  or 7-Zip.  Both are free.
    Nancy O.

  • How to open Photoshop Temp File without extension

    Hi Adobe Community,
    My photoshop recently closed with some files open. I supect windows update to be behind that but can't be sure.
    I found in the %temp% folder couple files thats look interresting but no way to open them or be sure what it is.
    Files are:
         - Photoshop Temp21185767124 (36 864 KB)
         - Photoshop Temp745149862732 (1 164 672 KB)
         - Photoshop Temp1555241910196 (885 632 KB)
          - Photoshop Temp556628194484 (96 640KB)
         ... and there're 2 more at 0 KB.
    Using:
          - Photoshop CS5 12.1 x64
          - Windows 7 Service Pack 1
    Looking for a way to get those files back or at least know what they are...
    Thank you all
    Martin

    They're temporary scratch files that can be safely discarded.  There is nothing useful you can do with them.
    With Photoshop CS6 there may be auto-save recovery files as well nearby, but they're always .psb files, and you don't have to do anything special - Photoshop will automatically open them the next time you run it after a crash.  Photoshop CS5 did not have the auto-recovery feature; if it crashes you lose your work.
    -Noel

  • Opening an Indesign file from server slows down [very urgent please]

    Hi All,
    I have a book that is already paginated. (Every indesign file has hyperlinks targeted to the another indesign file (paragraph Anchor destinations)).
    After few days the server was crashed due to some network problems.
    Now a new server has been created with different name and path.
    If I try to open the indesign file it takes much much longer time than usual, For the same file if I disconnect the network connection it is working as usual.
    What is the cause of this? Is there any way to overcome this issue or any work around? At the same time I need to retain the hyperlinks also. Because it is very very difficult to re-create the links (more than 100 or 200 number of links will be there in every chapter).
    Note: I have tried something like trashing indesign preferences. It is also not working.
    Thanks,
    Green4ever

    I restored all my indesign file in the same folder structure except the root folder. I already tried the way you suggested. It is not helping me.
    "I thought that may be Indesign is searching for the missing links" So I try editing the preferences so that indesign will not search for the missing links(I think it is only aplicable for graphic links is it?). After that also I am facing the same problem.
    Is there anyway to open the indesign file without checking for missing hyperlinks. So that it may open faster.    
    Thanks,
    Green4ever

  • How do I print to a postscript file with InDesign CS6 without both extensions, .indd.ps?

    How do I print to a postscript file without an .indd extension in InDesign CS6? I choose Print, choose a print preset from my print shop and Save. The first time I tried it was blank (the Hide Extension was checked), so I tried to save and got a dialog box that said it cannot be saved as an .indd file (duh), to choose both or .ps. I chose .ps and it was fine, but every time I postscripted it gave me this dialog box until I unchecked Hide Extension. After I did that, every time I postscript it automatically saves both extensions. Not a big deal but it is annoying. I just want it to end with .ps like it used to. Any ideas on how to fix this?
    Thanks!!

    I have no idea but I am incredibly curious...why are you doing this?
    Printing to postscript is a completely archaic workflow. Export to PDF
    instead.
    Bob
    TKnudt <mailto:[email protected]>
    Tuesday, January 15, 2013 6:12 PM
    >
          How do I print to a postscript file with InDesign CS6 without
          both extensions, .indd.ps?
    created by TKnudt <http://forums.adobe.com/people/TKnudt> in
    /InDesign/ - View the full discussion
    <http://forums.adobe.com/message/4996731#4996731

  • How can I open a PDF file without first saving the file?

    How can I open a PDF file without first having to save the file?

    How can I open a PDF file without first having to save the file?

  • Flash CS6 cant open play SWF files without importing and destroying them, how can I get around this?

    Flash CS6 can't open play SWF files without importing and destroying them, how can I get around this?
    I'm just trying to preview an swf file in flash like I have with all previous versions.

    What if my SWF loads external content from an online server?
    Not only does the current flash player prohibit such activity, it doesn't even pop open an error anymore saying there was an error connecting to an online source.
    Normally, I would simply drag the SWF into Flash and all connections would go through.  I could see traces, errors, and experience no issues.
    Now I can't even do that.  So what then?  You have crippled a fundamental use of the program, but THANK GOD we have that deco brush that nobody asked for.
    And for the record, the nature of my work benefits from not necessarily allowing the Flash Player to connect to online content.  The error it pops up?  That's simply another method of error checking that I require.  Updating the Flash Player options is not an option.
    Why would you even remove this key feature from Flash anyways?  It's been there for years ... has the ratio of people importing SWFs (a rather useless gesture in an increasing OOP world) really outweighed the people using Flash as a testing environment that much?

  • Acrobat 8 Launches when opening an InDesign file

    I have recently upgraded to Acrobat 8 Pro and Indesign CS3.
    Everytime I try to open an InDesign file by 2x clicking on it, Acrobat launches alongside Indesign, and Acrobat throws up an error message. How can I get this to stop? And why is this happening?
    Thanks,
    Chris

    I have had this exact problem for like 6 months and have just dealt with it, but it's really starting to drive me crazy.
    Double clicking on all INDD files launches Indesign AND then Acrobat. Acrobat gives me two error dialogs which I then "OK", and then I'm able to switch to Indesign and work on the file. Dragging-n-dropping the files direct into Indesign or Opening through Indesign works fine. I've also noticed Indesign does not offer up the usual "open recents" in the file menu.
    Acrobat and Photoshop are the only CS3 apps that appear in the "Open With>Choose Program" dialog, and browsing to the Indesign executable does not fix anything. The indd files even display the correct [ID] icon.
    Windows XP Pro SP2
    Adobe Acrobat Professional 8.1.1
    Adobe Web Premium CS3 (which I believe technically the Acrobat install is from)
    Adobe Indesign CS3 5.0.1 (bought separately from Web Premium)
    I'm sure it's probably more of a Windows issue than Adobe, but any help would be GREATLY appreciated. I tried to "repair" the Acrobat installation but that didn't help. Reinstalling all my Adobe apps is something I would like to avoid if possible.

Maybe you are looking for

  • Can't sync my iPod Touch with iTunes, get -50 error message

    Does anybody know what -50 means? This pops up when I first plug it into my Mac, and all it says is "cannot be synced due to an unknown error (-50). First thing iTunes tries to do is backup my iPod, then that message turns up. I tried upgrading to th

  • Special characters in password for "create database link"

    It seems that one cannot create a DB link if the password has a special character in it (like '!')? create database link MYLINK connect to SOURCE identified by mypwd! using 'MYDB' - returns "ORA-00933: Command not properly ended" create database link

  • Format for hiding the text in sap script

    Hello gurus, I waanted to know if there is any tag column to hide a text in corresponding line. My detail requirement is that I need to add GUID as a indicator at the beginning of the formatting text but that should not be visible to the user. curren

  • 11g fails in Database Configuration Assistant with ORA-01919

    I'm installing 11g on a 32-bit CentOS (redhat) box, and the Database Configuration Assistant is failing with ORA-01919: role 'XDBADMIN' does not exist I can in fact read, so I do know what's causing this particular error (and all the cascading errors

  • Connection Pool Metrics in ASC - doesn't seem to reflect the usage

    Guys, So i am trying to monitor the jdbc connection pool usage using the Application server Console (following the link --> Cluster Topology > Application Server: engas-machine > OC4J: oc4jinstance > JDBC Resources > Connection Pool Metrics: "myconne