Appcrash when closing Indesign CS5 and CS6

Hello,
Whenever a particular user closes Indesign CS5/6 with a file opened, the following appcrash appears. If there are no files open, and the client is opened, the crash does not happen when you close it.
Problem signature:
  Problem Event Name:                        APPCRASH
  Application Name:                             InDesign.exe
  Application Version:                           7.0.4.553
  Application Timestamp:                     4d890440
  Fault Module Name:                          Public.dll
  Fault Module Version:                        7.0.4.553
  Fault Module Timestamp:                  4d8903ca
  Exception Code:                                  c0000005
  Exception Offset:                                00177873
  OS Version:                                          6.1.7601.2.1.0.256.4
  Locale ID:                                             1033
  Additional Information 1:                  0a9e
  Additional Information 2:                  0a9e372d3b4ad19135b953a78882e789
  Additional Information 3:                  0a9e
  Additional Information 4:                  0a9e372d3b4ad19135b953a78882e789
Read our privacy statement online:
  http://go.microsoft.com/fwlink/?linkid=104288&clcid=0x0409
If the online privacy statement is not available, please read our privacy statement offline:
  C:\Windows\system32\en-US\erofflps.txt
I've tried uninstalling, reinstalling CS5 - with updates, as well setting preferences back to default.
Any recommendations to resolve this issue would be great. Thanks!

I suppose the obvious solution is train users to close files before they close the application.
All kidding aside, the user test says it's either a damaged installation, or a system configuration/software conflict issue. Reinstalling might fix it if it's a damaged install, but won't help for configuationor software conflict. Unfortunately, Windows crash logs are pretty useless as far as diagnosing something like this, so it comes down to best guess and trial and error. You might want to turn off stuff in MSConfig and see if the crashing stops.

Similar Messages

  • Indesign CS5 and CS6 crashing

    OSX 10.7.5
    Working in Indesign CS5 and CS6 on the same computer. Opening multiple different documents, it will crash either while browsing the file, closing, or saving at random intervals.
    Indesign CS5 crash:
    http://pastebin.com/mWyFgWVv
    Crashed Thread:  0  Main Thread  Dispatch queue: com.apple.main-thread
    Exception Type:  EXC_BAD_ACCESS (SIGBUS)
    Exception Codes: KERN_PROTECTION_FAILURE at 0x0000000000000001
    Indesign CS6 crash:
    http://pastebin.com/B3jJM7cr
    Crashed Thread:  0  Main Thread  Dispatch queue: com.apple.main-thread
    Exception Type:  EXC_BAD_ACCESS (SIGSEGV)
    Exception Codes: KERN_INVALID_ADDRESS at 0x00000000ffffffff
    Using Universal Type Server 3 client for fonts. I tried doing a synchronize and reset, and reactivating all of the fonts, but this did not help.

    Is Universal Type Server updated to the latest version? Is InDesign the only program you're facing issues with? Are you working with the document that is located in a network location? Try saving the file locally to your computer and see if you can replicate the crash. Clean the InDesign cache location by dragging the en_US folder from the following location: Macintosh HD/Users/Username/Library/Caches/Adobe InDesign/version 7.0 or version 8.0/ for both CS5 and CS6. If you can't see the Library, then use the Go menu of the Finder holding down the Alt key on the keyboard to make the Library visible inside the Go menu and navigate to it that way.
    Once you've cleaned the cache, re-launch InDesign and open your document to edit. Do not activate all fonts using the UTS, just activate the fonts that you used in your document to test for crash. If ID still crashes, then replace fonts by local fonts and test for crash.
    Change the Display performance settings from Preferences to Fast for both Options panel and Adjust view settings panel and test for crash.

  • InDesign CS5 and CS6 Scripting Changes/Incompatibilities

    I'm new to InDesign scripting and need to write a very complex Javascript for InDesign using the Toolkit. My concerns are if CS5/5.5 users will be able to run the script written for CS6. Are there known incompatibilities with the different releases? If so, where can I find a document to compare the differences. I will probably need to support both CS5 and CS6 (and anything in between), so a possibly solution may be to build for CS5, but if I do, will I be missing out on any key new features of CS6?

    There are differences from 1 DOM version to another and they can and will break your script if you haven't designed it to handle them. For example:
    If you want to use script labels like me (because they are awesome) the following will break if you use CS5 or later:
    app.activeDocument.pageItems.item("myLabel").remove();
    So you'd have to force the DOM to V6.0. But when doing so remember to revert back to the original version after you're done or you'll create bigger problems. This can be done like this:
    app.scriptPreferences.version = 6.0; // CS4's DOM version
    app.activeDocument.pageItems.item("myLabel").remove();
    app.scriptPreferences.version = 10.2; // Current CC DOM version
    This is very inconvenient (for me at least), so I wrap functions that require DOM changes with a custom version changer to handle this for me. In regards to a list of incompatibilities? Not sure, maybe someone here has one, I know Jongware has a website with all the DOM changes from 1 version to another. This can be found here:
    Indesign JavaScript Help
    Hope this helps.
    Brett

  • Line thickness problem in indesign CS5 and CS6

    I use indesign CS5 and many short lines of 0.5 point in my project.
    After export to pdf (press) everything seems correct. After rip process from printer office in compressed file lines seems to have different thickness even on large zoom (400%).
    High quality pdf from rip prepared by printer office still shows small differences in thickness. Lines are in one solid color in my project.
    What is the source of this problem? 0.5 point ines seems not extremely thin.
    If the line is not sharp in pdf will it be not sharp in press?

    I wouldn't go off what I see on screen. I'd be asking the printer for a hi-res proof. If that's not satisfactory they could run a test on offcuts on another print job to see where the problem lies.
    One reason for different linethickness could be that the lines are interacting with transparent areas, giving the appearance of thicker, or could be physically changing the width by a few decimals.
    I'd try putting any of the thin lines on their own layer - and perhaps try different PDF compatibilities, from PDF 1.3 to PDF 1.4 etc.

  • Save InDesign CS5 and CS6, js

    Hi,
    I need to save InDesign CS5 files as CS6 and overwrite the original, but I am not getting the save line correctly:
    myDoc.save(myDocPath+"/"+myDocName, indesign-8.0, true);
    What am I don't wrong?
    Thank you.
    Yulia

    Wow - I never noticed that a Converted doc does not have a valid name OR a valid fullName, unless it has been Saved once -- only the filePath is valid!  (So a Converted doc behaves pretty much like a New Untitled doc.)
    Off-hand, I don't see any other way to get the original doc name of a just-Converted doc.
    But why not have the script open the ID CS5 document in ID CS6? ... then you can grab the File or path of the document before it is even open.
    You must have a lot of documents to convert anyway, right? Otherwise you wouldn't need a script. So it seems like what you really want is something like a script that converts all of the CS5 documents in a folder to CS6. If so, it is not a very hard script to write, and I'll bet that someone has one already laying around...

  • Indesign CS5 and CS6 crash at start up!!!!!!

    Help, Indesign CS 5 and CS6 crash at startup- on Mac OS 10.9.5 Mavericks
    Seems to crash at starting registry
    I have installed all the updates and patches, comes up with a long error log
    Can anyone help

    Ask in the ID forum and provide exact info like the actual error log/ crash report and what Mac.
    Mylenium

  • Hyperlink issues in InDesign CS5 and CS6

    This might be obvious, but it's driving me insane. I'm highlighting text and linking to external URL's from InDesign.  In InDesign it seems to keep rewriting the hyperlinks?  When I highlight and change it to a specific URL, I'll highlight another one and then the previous hyperlink goes to another URL in my hyperlinks list?  Does this make sense?  Anyone else have this problem?  I'm just trying to build a resume and link to websites.  Microsoft Word does this fine.  Any help would be greatly appreciated. 
    Thanks,
    Gerry

    Works fine for me, might be the process of how you create the links. My process is simple, I highlight the text "One", and then in the URL: box type in the website then hit return when done.
    Thinking this thorugh some more, I believe you may be not selecting the entire hyperlink use "Go To Source" to select the link entirely.

  • When I downloaded CC, I uninstalled CS5 and CS6, now I cannot open my older psd

    When I downloaded CC, I uninstalled CS5 and CS6, now I cannot open my older psd photos, has anyone else had this problem...

    Your info is at best vague. PSD files are compatible across versions on a very broad level, so whatever problem you have may be very specific. You have not provided any relevant technical info about your system or your files, so nobody can say anything specific, though.
    Mylenium

  • Create unlimited folios today with InDesign CS5 and 5.5!

    Adobe's official statement
    http://blogs.adobe.com/digitalpublishing/2011/10/create-unlimited-folios-today-with-indesi gn-cs5-5.html
    Did you know…
    Customers with InDesign CS5 and CS5.5 can now create an unlimited number of .folio files for no additional charge.
    You already know that InDesign CS5 and CS5.5 integrate with Adobe Digital Publishing Suite to allow customers to publish apps to tablet devices such as the iPad, Xoom and PlayBook. But for InDesign CS5 and CS5.5 customers who are interested in creating content for tablet devices but are not yet customers, it is now easier than ever to try digital publishing before making the financial investment in the Digital Publishing Suite solution that meets your needs.
    InDesign CS5 and CS5.5 customers can now:
    Create an unlimited number of .folio files in InDesign
    Preview them on Adobe Content Viewer  – including interactivity – to see how they will render when published to a tablet device
    Share them with colleagues or clients on a 1:1 basis via the Adobe Content Viewer
    Further, customers can now access the Folio Producer Service in the Digital Publishing Suite with a valid Adobe ID to manage and edit their .folio files. All of this can be done before purchasing Digital Publishing Suite.
    If you are interested in learning how to create an App directly from InDesign CS5 or CS5.5, without writing code or depending on a developer, feel free to try it. You can pitch ideas to your client or your boss; or you can build a portfolio of your work and preview it on a tablet device. Practice makes perfect, and with an unlimited number of .folios, you can practice as much as you want! When you’re ready to publish to an app store, you can select the Digital Publishing Suite solution that is right for you.

    I'm sorry EvBurk, what you want is intended not to work.
    All Adobe's promotional material concerning InDesign and Digital Publishing (including the above "official statement") carefully uses verbs like "create" or "produce". But they never mention "distribute" or "spread", without explicitly referring to their exclusive hosting services. The whole Folio thing (in contrast to the former "issue" format) revolves around not giving you any chance of physically exporting, managing or owing the folio file itself. It's always somewhere on Adobe's or Apple's servers, or on your iPad, which is also as shut as a vault. So there's no way to export a folio file and toss it around like a pdf or jpeg. All you can do (without a paid distribution) is "share" your folio with some others, under the idea of "testing" and "reviewing". But this can be a cumbersome method. And even when paid (for the app), it's still difficult to distribute it outside Apple's or Android's market.
    More than a year ago (in the middle of the Flash-on-iOS debate) Adobe users, developers, bloggers, and evangelists heavily criticized Apple's "walled garden". Adobe literally stated "We Love Apple - What we don't love is anybody taking away your freedom to choose what you create, how you create it, and what you experience on the web." Well, you could say now: "I love Adobe, but what I don't love is Adobe taking away my freedom to own my files, and distribute them on my own terms." They let us create, but not spread our ideas. It's like giving you a typewriter and copier, that only works with Adobe stock paper. Like giving you a voice and an instrument, but only allowing you to sing and play in some walled gardens (dress code: Apple ID) or secluded shed (invitation only).
    I really wonder why they so fiercely protect 'their' Folio file. Why do they either have to be "under protection" or be turned into apps? I understand why Apple wants and needs to curate apps, but they don't mind me spreading my own ePubs, mp3 or jpegs. Why doesn't Adobe let me put my folio's on my own server, or send them off to someone with my own preferred service? The Content Viewer could easily be an Acrobat-like reader and let the iPad open folio's (by web links or mail enclosures) into it. If I see how many questions, worries, and problems creators and users have due to this whole closed technique and business, it would be easier to just let go and see what happens. Is it money? Of course it is. But my guess is that Adobe would eventually benefit more from it.
    So I hope Adobe declares the Folio as an "open" standard soon, but they're definitely not in that stage. Maybe the specification of the file format just isn't ready yet. Maybe some managers need to remember again how to "Spread the Love"...

  • Open Photoshop CS5 and CS6

    I can't open Photoshop CS5 and CS6 versions simultaneously. When I launch CS6, and then CS5, it takes me to CS6, and vice versa.
    Is it possible to keep open the two versions? With Indesign I can do it.

    As far as I know that is normal behavior:  only one instance of Photoshop at a time.   Forum members have reported running two versions of Photoshop simultaneously using virtual machines on their computer (which emulate separate computers).

  • InDesign CS5 and InCopy CS3

    I work at a weekly newspaper, and we have been using and InDesign/InCopy workflow for several years. The Reporters use InDesign CS2 (never did get around to installing the CS3 upgrades we bought because at first the computers they use wouldn't handle it, and after the computer upgrades got done all around, no one ever bothered). After the stories are written, the editor reviews them in InCopy, then releases them to the page designers who are now working in InDesign CS3 as part of Standard and Premium Suites.
    We are considering upgrading to InDesign CS5, but absolutely NONE of the reporters or the editor needs (or will ever use) the listed improvements included in InCopy CS5. Since there are nine InCopy products in the office, and as everyone knows the economy sucks - especially for PRINTED NEWSPAPERS these days, we really hate to have to upgrade just for upgrades sake.
    I have downloaded InDesign CS5 trial to check if our CS3 files will open and work in it, after reading an article published in the Washington Newspaper, a publication put out by the Washington Newspaper Publishers Association, reported that one of the state's newspapers happily upgraded to CS5 and had a nightmare of problems just opening their CS4 files. This has my editor very nervious about us upgrading. So... I'm testing it out, and I can't place, then open and edit our CS3 Incopy Files. I get a message that says "this story needs toa be converted to "InCopy Document" format to edit it. I've saved it in InCopy CS3 to both incx and incd formats, and both receive the error. Has Adobe made simple InCopy files incompatible with InDesign? I can import files from just about everywhere BUT InCopy??? The Sister Program?
    Please advise a simple work around, or I'll bet our upgrade is totally put off.
    Daria Lacy
    The Reflector

    Bob,
    I have to feel that you aren't really reading my posts. While I did mention that our reporters and editor lessentially use InCopy for a word processing program, I did specifically mention in my last post that we use the program for exactly what it was originally intended, for reporters to write and edit, for designers to layout the text, and for writers/and or correction people to get into the files and fix problems - up until the last minute, so yes, we do need to use InCopy, in the manner we were told it was developed for. We don't use it for viewing layouts - that's what InDesign is for.
    PLUS, none of our reporters have time, inclination or need to view the layout as it appears in InDesign. If they did, we'd get InDesign for them. They are busy investigating and writing stories, they don't have time to learn even the basics of layout, and frankly, they don't even want to. The one single reporter that is interested has learned some of the basics of InDesign, but she doesn't use it on a regular basis, and dosn't need or want to view the pages. She does need and want to edit a story occasionally even after it's been placed into the layout, but she want's to view it as the same copy she wrote, so she can do it quickly, not as a page layout she has to hunt thru it and every other story on the page to find the problem.
    I don't mind Adobe stopping selling older versions - don't blame them at all on that one - if you're buying a new product - go buy the latest and greatest. If the version didn't matter, you wouldn't have to worry if about matching your other versions and you wouldn't need to find an old version. But why BUILD IN obselecense in a PART of a system within just a couple of years. We're using CS3 InDesign, yes, but we bought it just shortly before they came out with CS4. If we'd known when the release would be (we don't track the industry close enough to be checking on when release dates are "expected" to be) we'd have probably waited the 4 months and upgraded to that. But time wise, we haven't had the CS3 THAT long, so I don't go along with the "two versions back is too old" theory.
    I'm afraid I don't quite see why the text fit would change from one version to another when the fit is based on font, text size, etc. And that doesn't change, Times Roman, 10.5 point on 10.7 leading...  And as far as split/span/balanced column features and mutiple page sizes - those aren't going to affect our work flow at all. All we need is the ability to write text, and edit that text from other desks besides the designers, as well as the designers being able to open the file to fix headline size in InDesign.
    As for the reporters getting the trial version and trying it out - did you miss where I mentioned that we provided CS3 to all of them, and pretty much none of them bothered to load it onto their computers??? They don't want any bells and whistles. They want to keep going as they are going.
    If they wanted to go to the latest and greatest - it'd wouldnt' be an issue - but they don't need or want it, why should they be forced to upgrade just for the sake of upgrading?
    And that also brings up the issue, when we buy those 7 versions that aren't going on computers with InDesign (and the whole rest of the Standard and Design Suites) who wants to bet me that it's gonna take more hard drive space, more ram, and there's a huge potential that it ain't even going to fit on their computers and still leave room for it to think?
    And just one other though - just because backwards incompatibility is a fact of life in today's programs - does that make it good or right?
    What this basically means, with no specific NEED for the designers to upgrade to InDesign CS5, and the requirement that if they do we'll have to upgrade not only the reporter's versions of InCopy AND most probably, their computers, we will probably put off upgrading and wait another year and a half for CS6.
    Daria

  • I want to upgarde indesign CS5 to CS6. Please help.

    I'm working with CS5 and want to update my Indesign to CS6. How can I buy the upgrade, without buying the whole CS6. So I only need an upgrade from Indesign CS5 to CS6.
    Please help.

    Hi Leon,
    Please try the following link to purchase the CS6 version.
    Creative Suite 6
    Cheers,
    Kartikay Sharma

  • Warning CS4 CS5 and CS6 Photoshop Action Users

    Adobe introduce the Adjustment Panel in CS4 and included two option that you should NEVER CHANGE from their default setting.  For if either or both are change from their default settings some actions that add adjustment layers will fail to work properly. They may or may not produce error pop-ups.
    I have been trying to get this fixed for a couple of years now.  The other day I received an e-mail from an Adobe programmer informing me that he had been assigned the task to fix the problems I've been having.  He included information he was considering.  It was clear he did not fully understand the problems and that keeping one of the options would make it impossible to maintain compatibility with previous versions of Photoshop.  I wrote two e-mails explaining the problems and a third detailing what the problems I saw with what was proposing.  He wrote back the all he wanted to do was to work on part of the problem not the whole problem. I wrote a fourth note but Adobe is back is stealth mode.
    The two options in the Adjustment Panel fly-out menu are:
    "Add Layer Mask by Default" checked by default.  This is how Photoshop always worked prior to CS4 there was never an option not to add one so nothing was ever recorded whether or not a layer mask was to be added they always were.  Changing this will make Photoshop not backward compatible.
    "Clip to Layer" not checked by default.  There has always been an option to clip adjustment layers to the previous layer. So when the option is used the action recorder records the option "With Clipping Mask" in the make adjustment layer step.  When the Adjustment Layer is not clipped the option "with Clipping Mask" is not recorded. In the past these recordings played back correctly and still do if the Adjustment Panel fly-out option "Clip to Layer" is not checked.  However if Adjustment Panel option is checked even though is was nit when the action was recorded for the option "With Clipping Mas" is not recorded Photoshop clips the layer because of the Adjustment Panel current Option setting. That could be fixed. The current option setting has no meaning in this context in fact the Adjustment panel may not have even been used to recode the Make Adjustment Layer step.
    Here is a link to a simple action recorded in CS6. It opens a new default size document add an Levels Adjustment Layer deletes the layer mask and then clips the adjustment layer to the previous layer.  The Action will play correctly in all versions of Photoshop prior to cs4.  It will fail in CS4, CS5 and CS6 if either or both of the Adjustments Panel fly-out options are changed from their default setting.  http://www.mouseprints.net/old/dpr/CS6AdjLayer.atn

    Generally, you would have got the option to remove the old versions.  However, you can uninstall the old versions but you should do it from Windows Add/Remove modules in the Control Panel so that it doesn't remove the common files from your machine.
    If you are not constrained by disk space then the best thing is to leave the old programs on the system until you are familiar with the new features of the upgraded program.
    I have renmoved the old programs from my Windows 7 because I wasn't using them.  These days I use "Corel Paintshop Pro X5" and "Corel Draw Graphics Suite X6".
    Photoshop is for something I need to test for my colleagues who are not familiar with certain features in Corel so I tell them how to do it in PS CS6.
    Hope this helps.

  • Running OS 10.6.8 on a 3.06 GHz Intel Core i3 Mac can I upgrade from Indesign CS5 to CS6?

    Running OS 10.6.8 on a 3.06 GHz Intel Core i3 Mac can I upgrade from Indesign CS5 to CS6?

    They do, but what happens when the client(s) move to CC? Of course doing
    so opens a new can of worms for you since 10.6.8 is unsupported for
    anything later than CS6.
    You should start budgeting for some upgrades sooner rather than later.

  • Problem of variation of color between Firewoks CS5 and CS6 ?

    Hy everyone !
    I have problem of variation of color between Firewoks CS5 and CS6.
    An Hexa color defined in a CS5 file, dont have the same Hexa component when opened with Firewoks CS6 ?
    Example with au GREEN color :
    #80BB39 (Created with Firewoks CS5)
    is becoming
    #7FBC2E (When opened with Firewoks CS6)
    Thank's for your help.

    Nemo71 wrote:
    I have had a problem with opening some PSD template files.  It doesn't happen all the time and it doesn't happen with every template.  All of the templates were downloaded as zip files and opened and saved using Photoshop CS 5 on a Windows XP PC. 
    As far as I know Photoshop can not open Zip files.  If you unzip the zip archive and it contained PSD files.  How do you know they were all saved on a XP system with Photoshop CS5 with max compatibility.  The message you getting seem to be contradicting that.

Maybe you are looking for

  • How do I change a pop3 account to imap

    HHi, I've recently added my talktalk account to my Mac, it set up a pop3 address instead of an IMAP i can receive emails now but not send any which is really frustrating any ideas?

  • Creating field s dynamically by user

    I wanted to create a project ,where the user can create his own form eg- if he wants to create a registration form , he can chose what fields in the form he wants, he should be able  to drag and drop items like button , textinput, dropdown list etc

  • What are other updates after 10.5.8

    Hi, So today my friend gave me her old Macbook that she hadn't been using. I just wanted to know when i order the Snow Leopard update what other updates i may need because i would prefer to purchase them at the same time. Because it's quicker and eas

  • Settin up a Virtual Cluster

    I'm working on a 2.66Mhz Quad Core and would like to do a couple of things: First I'd like to be able to monitor the CPUs to see how much and how many processors Compressor is using. Secondly, if its not using all of the core's how do I create a Virt

  • How do I debug pl/sql procedures from a bc4j application

    Hi, I would like to use jdevelopers pl/sql debugging capabilities to debug some code that is executed by triggers in the database, when inserting records through my bc4j client application. I already found the remote debugging feature of jdeveloper,