Dragging guides out crashes Indesign CC

Hi,
I've just updated to Indesign CC and whenever I try to drag guides out onto my document the programme crashes. Any ideas?
I am on a Mac Pro 3.1 running Mountain Lion with a quadro 4000

Thanks for getting back to me Michael.
The update appeared in Creative Cloud shortly after you answered and has solved the problem.
Kind of you to assist. Thank you.

Similar Messages

  • I am unable to get dragging guides from rulers when using CS6 InDesign. Is anybody else getting this problem?

    I am unable to get dragging guides from rulers when using CS6 InDesign. Is anybody else getting this problem?

    Try restoring your InDesign preferences:
    Trash, Replace, Reset, or Restore the application Preferences

  • Dragging guides from rulers in CS6 InDesign

    I am unable to get "dragging guides from rulers" when using CS6 InDesign. Is anybody else having this problem?

    I tried restoring my InDesign preferences, but it still doesn't work. I used both the Ctrl+Atl+Shift method and the manual method (by replacing the files), but the draggable guides are still not showing. I have made sure to turn guides on in the settings as well. I've looked everywhere online and the only conclusion I can come up with is that it's a bug. By the way I'm using Windows 8. The strange thing is that my Adobe Illustrator, and Photoshop are working fine (including guides), however InDesign has been causing problems, so there has to be something wrong with the program. But I don't know what it is   

  • CS2 Javascript crashing InDesign works as 2 parts and in CS3.

    I have a script which works fine in CS3 but when I set it up in CS2 I found it was crashing InDesign. I've tried to cut it down to the minimum and set the 2 parts as functions.
    The first function makeMyslug create a new layer called slug and then some text frames on all master pages, with details about the document. The second function printMyslug prints all pages to postscript and adds a page number to the postscript file.
    If I have a document open and run each of the functions separately all is well. If I try and run both function in one go InDesign crashes. The script seems to crash InDesign once the printing process begins.
    NOTE for this example to work you will need to have a document open and make sure there are no blank pages. I'll post in as a reply so that it can be copied if anyone is able to help me out.
    Any suggestions would be greatly appreciated.

    //Here is the script.
    var mySluglay, myBlueBlk, mySlugChr, mySlugPar, myPageNo, myTitle
    myPageNo = 1;
    myTitle = "Test";
    myDocument = app.activeDocument;
    function makeMyslug(){
    //Create a layer for the slug items.
    mySluglay = myDocument.layers.item("Slug");
    if (mySluglay == null){
    mySluglay = myDocument.layers.add({name:"Slug"});
    //Create a blue background color.
    myBlueBlk = myDocument.colors.item("BlueBack");
    if (myBlueBlk == null){
    myDocument.colors.add({name:"BlueBack", model:ColorModel.process, colorSpace:ColorSpace.cmyk, colorValue:[100, 60, 0, 0]});
    //Create a cahr style.
    mySlugChr = myDocument.characterStyles.item("SlugChar");
    if (mySlugChr == null){
    myDocument.characterStyles.add({name:"SlugChar", appliedFont:"Arial"});
    //Create a para style.
    mySlugPar = myDocument.paragraphStyles.item("SlugPar");
    if (mySlugPar == null){
    myDocument.paragraphStyles.add({name:"SlugPar"});
    // Set units to mm.
    app.activeDocument.viewPreferences.horizontalMeasurementUnits = MeasurementUnits.MILLIMETERS
    app.activeDocument.viewPreferences.verticalMeasurementUnits = MeasurementUnits.MILLIMETERS;
    with(myDocument.documentPreferences){
    //Slug
    slugBottomOffset = "20";
    slugTopOffset = "20";
    slugInsideOrLeftOffset = "0";
    slugRightOrOutsideOffset = "0";
    //Set the documents ruler origin to page origin. This is very important
    //--if you dont do this, getting objects to the correct position on the
    //page is much more difficult.
    myDocument.viewPreferences.rulerOrigin = RulerOrigin.pageOrigin;
    //Create the slug details on all master pages.
    with(myDocument.masterSpreads.item(0)){
    myDocument.pages[0].appliedSection.continueNumbering = false;
    myDocument.pages[0].appliedSection.pageNumberStart = parseInt(myPageNo);
    var myDetails = "Title: "+myTitle;
    var myPageWidth = myDocument.documentPreferences.pageWidth;
    var myPageHeight = myDocument.documentPreferences.pageHeight;
    mp = app.activeDocument.masterSpreads.everyItem().pages.everyItem().getElements();
    for (i = 0; i < mp.length; i++){
    var myTitleBox = mp[i].textFrames.add(myDocument.layers.item("Slug"), undefined, undefined, {geometricBounds:[myPageHeight+6,10,myPageHeight+14, myPageWidth-10], contents:myDetails});
    myTitleBox.label = "Title";
    myTitleBox.textFramePreferences.verticalJustification = VerticalJustification.bottomAlign;
    myTitleBox.parentStory.paragraphs[0].appliedCharacterStyle = "SlugChar";
    myTitleBox.parentStory.paragraphs[0].appliedParagraphStyle = "SlugPar";
    myTitleBox.parentStory.fillColor = myDocument.swatches.item("Paper");
    myTitleBox.parentStory.pointSize = 10;
    myTitleBox.bringToFront();
    myTitleBox.textFramePreferences.ignoreWrap = true;
    myTitleBox.textFramePreferences.textColumnCount = 1;
    var mycount = app.activeDocument.masterSpreads.item(0).pages.item(0).textFrames.item("Title");
    var myBlueBlock = mp[i].textFrames.add(myDocument.layers.item("Slug"), undefined, undefined, {geometricBounds:[myPageHeight+6, 8,myPageHeight+20, myPageWidth-8]});
    myBlueBlock.label = "BlueBlock";
    myBlueBlock.fillColor = "BlueBack";
    myBlueBlock.textFramePreferences.verticalJustification = VerticalJustification.bottomAlign;
    myBlueBlock.sendToBack();
    var myWhiteBlock = mp[i].textFrames.add(myDocument.layers.item("Slug"), undefined, undefined, {geometricBounds:[myPageHeight+14.5, 9,myPageHeight+19, myPageWidth-9]});
    myWhiteBlock.label = "WhiteBlock";
    myWhiteBlock.fillColor = myDocument.swatches.item("Paper");
    var myPageNoBox = mp[i].textFrames.add(myDocument.layers.item("Slug"), undefined, undefined, {geometricBounds:[myPageHeight-5, 10, myPageHeight+18, myPageWidth-10]});
    myPageNoBox.label = "PageNo";
    myPageNoBox.insertionPoints.item(0).contents = SpecialCharacters.autoPageNumber;
    myPageNoBox.insertionPoints.item(0).contents = SpecialCharacters.emSpace;
    myPageNoBox.insertionPoints.item(0).contents = "Page No";
    myPageNoBox.parentStory.paragraphs[0].appliedCharacterStyle = "SlugChar";
    myPageNoBox.parentStory.paragraphs[0].appliedParagraphStyle = "SlugPar";
    myPageNoBox.textFramePreferences.verticalJustification = VerticalJustification.bottomAlign;
    myPageNoBox.textFramePreferences.ignoreWrap = true;
    myPageNoBox.textFramePreferences.textColumnCount = 1;
    //print function
    function printMyslug(){
    alert("Start print process.");
    myDocument.printPreferences.printer = Printer.POSTSCRIPT_FILE;
    myDocument.printPreferences.ppd = PPDValues.DEVICE_INDEPENDENT;
    for(var myCounter = 0; myCounter < myDocument.pages.length; myCounter++){
    myPageName = myDocument.pages.item(myCounter).name;
    myDocument.printPreferences.pageRange = myPageName;
    //The name of the exported files will be the base name + the page name + ".pdf".
    //If the page name contains a colon (as it will if the document contains sections),
    //then remove the colon.
    var myRegExp = new RegExp(":","gi");
    myPageName = myPageName.replace(myRegExp, "_");
    myFilePath = "/c/idjavascript/test_" + myPageName + ".ps";
    myFile = new File(myFilePath);
    document.printPreferences.printFile = myFile;
    try{
    myDocument.print(false);
    catch(e){
    alert("Page "+myPageName+" may be blank plesae check.");
    //call the makeMyslug function
    makeMyslug();
    //call the printMyslug function
    printMyslug();

  • How to disable "shift-option" from zooming out in InDesign?

    Hi all,
    This truly is driving me crazy...how can I disable the "shift-option" shortcut so that I do not zoom out in InDesign? I have searched through the keyboard shortcuts but cannot find where or how to disable this:( I use the shortcut a LOT when I am drag-copying something that needs to be on the same horizontal or vertical line as the the item I am copying from.
    Thank you so much in advance for your help,
    Christine

    I haven't had time to come back here and post a reply because I've been so incredibly busy working on a catalog. I do have to say that this zooming out is KILLING me and cutting heavily into production time. This was not happening in ID CS5 and only seems to have been happening with ID CS6. There is no third key and it doesn't seem to happen ALWAYS...so I am completely baffled. Normally it is when I shift-option drag an object. Sometimes even just option-dragging an object causes it to happen. I just don't know what is causing this or what I can disable to stop it from happening:(

  • Exporting PDF's out of InDesign CS5.5?

    I have a bunch of users in my newsroom that are having various different issues (yes we have 3rd party extensions and no we can't disable them and put out a paper that way...kind of between a rock and a hard place there!).  One of the issues is exporting pages out as PDF's.  It's crashing fairly regularly. 
    It appears to me that there are 3 different ways to put out a PDF for printing (systems admin for a newspaper).  Is there a right and a wrong way to get a PDF out of InDesign?  Perhaps a less likely to crash option?  As of my count there's 3 different ways that a PDF can be created from InDesign:
    File - > Adobe PDF Presets
    File -> Export
    File -> Print
    The computers they are running are Windows XP (all updates applied), 4 Gigs of RAM, Dual monitors set vertical (read something that this might be an issue?), Quad Core systems. 
    Thanks in advance.

    Stack Trace: http://pastebin.com/T8LRNDDv
    Sorry for the delay. As Jongware suggests, the messages about symbols are normal and not indicative of a problem. I try to eat symbols for breakfast but not for lunch, if that's OK. Your first frame:
    *----> Stack Back Trace <----*
    WARNING: Stack unwind information not available. Following frames may be wrong.
    ChildEBP RetAddr  Args to Child             
    0012f6fc 065a1c70 63ccb5e0 00000000 0012f74c APPFRAMEWORK+0x67777
    0012f788 065a1fb6 0012f830 0012f800 0012f810 APPFRAMEWORK+0x71c70
    00000000 00000000 00000000 00000000 00000000 APPFRAMEWORK+0x71fb6
    Is not encouraging. It doesn't look anything like PDF Export, and it also appears to be rather incomplete.
    Was this crash, from 8:26pm on Monday, truly in pdf export?
    7.5.2 is certainly the version to be on. Do you know if your problems occurr with CS5?
    Which of the 3 (well, 2) methods of obtaining a PDF produce the crashes?
    Have you taken special steps to disable background (async) PDF exports?

  • Why can't I drag files out of Photoshop CC to another program?

    Hello, I have a smart object in Photoshop that I want to drag into InDesign, however when I drag the file onto InDesign's icon in the dock it does nothing. This has worked for me in the past. It won't drag into Illustrator either.
    Has anyone else experienced this and resolved it?

    The reason is Photoshop is a document editor. It does not work on files it can only save documents into some image file formats. So there is no file that you can drag out of Photoshop. It does support copy and paste and you can copy layer from to the system clipboard or a copy merge to the clipboard and paste into an othe application.  I do not have other Adobe applications so  I do not know what data exchange Adobe does support between its application.

  • Textframe crashing InDesign...??

    I'm breaking a bunch of documents out of their textframes. I'm basically taking a bunch of objects that have been placed into one textframe and I'm placing them into individual ones. Essentiallly I get the paragraph outlines, and copy the correlative contents into it. There's been a lot of exception handling etc. that I've had to deal with, but for the most part its gone smoothly. Then I stumble into this:
    OS_PopupWindows: InDesign.exe - Application Error
    The instruction at 0x71482357 referenced memory at 0x171d9000. The memory could not be read.
    I feel like that means something is corrupted, but don't really know. The application isn't particularly informative of why it's crashing... I'm sure this means something to a machine. I suppose this is a nice crash in the sense that I get any information at all.
    Is it possible for a single textframe to be somehow "corrupted"? Otherwise any ideas on how this type of thing could happen? Anything at this point would help. Every other document processes fine without crashing InDesign. Ultimately it might be a matter of simply laying it out from scratch...
    A brief summary of some of the testing I've done to try and isolate the problem:
    1) Checked to see if any of the objects were locked and if so I unlocked them.
    2) Tried removing the paragraphs one at a time, I found that a paragraph containing a graphic would crash if I removed it.
    3) If I duplicate the textframe, its duplicate behaves "normally" in the sense I can move it around or remove it without experiencing a crash, however even with a duplicate attempts to remove the original crash the application.
    4) Checked if the textframe was anchored... it's not.

    Ok, ho capito dove è il problema. Cambia i dizionari in Proximity, e togli Hunspell. Ero quasi certo fosse un problema di dizionario.. ed in effetti è quello.
    Ne approfitto per ricordarti che esiste anche un gruppo italiano di InDesign..
    https://www.facebook.com/groups/indesignusergroupit/
    Leonardo Agosti
    AdobeGuru
    PS.. for the english people reading this conversation, the problem is in the HUNSPELL dictionary. Changing it in the preferences and choosing the old (and wise) Proximity, InDesign doesn't crash.

  • Uploading article crashes InDesign

    I am in CS6 and when I upload an article it crashed InDesign. So far out of 32 articles in this folio, this is the only one that crashes. Any ideas?

    Hello Alistair,
    I'm facing the same problem in terms of uploading an article. Is there any way of testing this? I've got a multi-state layer (about 43 states) with separate links within one state and checking them one-by-one isn't very feasible. Alternatively, is there any way of manually uploading an article (not through Folio Builder panel)?
    Any help is appreciated!
    Thanks!

  • GREP search crashes InDesign

    Hi,
    I have a script which imports XML and formats it. As part of the formatting, there's numerous GREP searches which remove redundant spaces, returns and so on.
    One in particular crashes InDesign and it's driving me nuts.
    It's supposed to remove redundant returns in a table:
    // GREP Search for redundant returns
    app.findGrepPreferences = app.changeGrepPreferences = null;      
    app.findGrepPreferences.appliedParagraphStyle = "ArticleMinister";
    app.findGrepPreferences.findWhat = "\r$";
    app.changeGrepPreferences.changeTo = "";
    app.activeDocument.changeGrep();
    The problem is there's an XML closing tag between the carriage return and the end of the para, i.e. data{return}</closingtag>, but it works fine when the XML is data</closingtag>{return}.
    Any assistance would be most appreciated.

    Hi Vamitul,
    Thanks very much for the reply and it makes perfect sense.
    This script creates quite a complex document and, for some reason, moving the {return} outside the XML tags makes a mess of the document. I do not know why but I suspect that some of the 'clean up' non-GREP search and replace commands in the script are ignoring the XML data - perhaps not but I cannot for the life of me work out why a simple change is making the text a real mess.
    So the 'harder fix' sounds like something worth pursuing as this is the last step in a long process. Do you have any more information about checking the xmlContents? I don't expect anyone else to do my work for me, but advanced (or even intermediate) scripting is something I struggle with.
    Cheers,
    Simon.

  • Overlay creator crashing InDesign

    Hello,
    I've been working with DPS in InDesign CS5.5 with no problems. About five days ago I updated to the current Folio Producer Tools and Folio Panel Tools for CS5.5 and have had no problems. Today out of the blue, every time I try to open the Overlay Creator panel it crashes InDesign.
    I am on a Mac and I have rebooted, trashed InDesign preferences, uninstalled the tools and reinstalled, and even went back to an earlier version of the Folio Producer and Folio Panel. I tried opening the Overlay Creator in a new blank document and it still crashes the entire program.
    I'm tearing my hair out and would appreciate any new suggestions of what I might try.
    Thank you,
    lkovalic

    Hi Dave,
    I'm not sure how the server problems would affect opening the Overlay Creator -- I'm not trying to upload anything or trying to do a preview -- the simple act of trying to open the Overlay Creator extension is what is crashing InDesign. Doesn't that extension reside on my computer?
    Thank you,
    lkovalic

  • How do I create a downloadable link from an Interactive PDF file created out of InDesign CS6?

    Hello,
    I created an Interactive PDF file out of InDesign and would like to make the large file a downloadable link and share it with the user in an email. I do not want to use DropBox or GoogleDrive.
    The company I contract for has their own site - do I insert the file into the site or can I create a separate link for it?
    I will be recreating these presentation PDF's constantly, so I would like to know if there is a simple way to create this link for files in the size of 7-12MB.
    Any ideas on downloadable links? I do have flash - but rarely use, perhaps load the file out of flash?
    Thank you so much for your help,
    Megan

    Hi Willie,
    Thanks for your help. Most likely contact the company who maintains the
    site then to share the file with them I'm assuming?

  • Somehow my iTunes app has been put into the trash.  How can I get this and all of the stuff that was in it back to my Application folder?  I try to drag it out of trash, but it won't work.

    Somehow my iTunes app has been put into the trash.  How can I get this and all of the stuff that was in it back to my Application folder?  I try to drag it out of trash, but it won't work.

    Also, when I do try to drag it out of the Trash to put it back into Applications (on the Finder sidebar), it asks me to authenticate with the administration password.  I enter it, and then a window appears saying that I can't do that because I do not have permission to modify iTunes.  Please help.

  • [CS3 JS] event crashes InDesign

    Scripting ladies and gentlemen,
    I'm working on this event script that searches for linked PDF files and
    lets the user copy/relink them. Using the afterOpen eventListener however
    crashes InDesign no matter what I do. This is also the case with
    beforeClose. It appears that my function cnvrtPDFlnk is causing the crash
    (I'm able to alert succesfully with the afterOpen event if I //-comment
    the cnvrtPDFLnk(myDocument)).
    Do one of you scripting gurues have a tip?
    #targetengine "session"
    main();
    function main() {
       app.addEventListener("afterOpen", myEventFunction, false);
    function myEventFunction(myEvent) {
       var myDocument = myEvent.parent;
       var label = docLabel(myDocument, "PDFCheck");
       if(label) {
          //myEvent.stopPropagation();
          //myEvent.preventDefault();
          exit();
       else {
          cnvrtPDFLnk(myDocument);
    function docLabel(myDocument, key) {
       var hasLabel = (eval(myDocument.extractLabel(key))?true:false);
       return hasLabel;
    function cnvrtPDFLnk(myDocument) {
       var graphics = myDocument.allGraphics;
       var link; var linkExt; var linkType; var linkPath; var linkPageRef; var myConfirm; var myFolder; var myFile; var myOrgPath;
       var myLinkObjects = [];
       for (var i = 0; i < graphics.length; i++) {        
          link = graphics[i].itemLink;
          linkExt = link.filePath.split('.').pop().toLowerCase(); 
          linkType = link.linkType.toLowerCase();       
          if (linkExt == 'pdf' || linkType.match('pdf') != null) {
             link.show();
             if(myConfirm= confirm(link.name+"\nDo you want to convert this link?")?myLinkObjects.push(link):alert("Link skipped!\n"+link.name));
       if (myLinkObjects.length > 0) {
          myFolder = Folder.selectDialog("Point me to a hotfolder..");
          copyLink(myLinkObjects, myFolder); // run copyLink function - copies links according to myfolder
          if(myConfirm = confirm("Do you want to relink now?")) {
             reLink(myLinkObjects); // run reLink function - relinks according to myFile dialogue
             app.menuActions.item("Fit Page in Window").invoke();
             app.menuActions.item("First Page").invoke();    
       myDocument.insertLabel("PDFCheck", "true");
       }// no links
    }// end cnvrtPDFLnk
    Best regards,
    Rasmus

    Hi Rasmus,
    Here is an example of scripted plug-in — very simple yet useful for me.
    Its goal is to check color settings in InDesign and Photoshop after a document opens. We use two profiles at work: one for the main part of our magazine and another profile for its cover and the inset for another magazine. Sometimes, although rarely, we forget to switch on the correct setting.
    That's where the plug-in comes to the aid. After a document opens it checks if the file name contains certain characters – e.g. if file name starts with "Obl_" that means that this is a cover and the script checks the color settings, if they are not correct it gives warning.
    Here is short description of how to do it:
    Create a new scripted plug-in project from APIDTemplate.indd file.
    Open APID panel
    Enter 'docLoaded' into Event Filter field and press Enter
    Here is the script that does the job (the script file is generated in the same folder as indd-file):
    if (theItem.eventCode == "docLoaded") {
       var gKasmyDoc = app.activeDocument;
       var gKasDocumentName = app.activeDocument.name;
       KasCheckProfile();
       KasinfoFromPS();
    function KasCheckProfile(){
       var myIssueNumber = parseInt(gKasDocumentName.substr(2, 3));
       if (gKasDocumentName.substr(0, 2) == "Q_" && myIssueNumber >= 730 && myIssueNumber <= 999 && gKasDocumentName.match("_Vshivka") == null){
          if (app.colorSettings.workingSpaceCMYK != "ISO Web Coated"){
             alert("Внимание! Для газеты должен использоваться провиль \"ISO Web Coated\", а установлен. — " + app.colorSettings.workingSpaceCMYK);
       if (gKasDocumentName.substr(0, 2) == "Q_" && myIssueNumber >= 730 && myIssueNumber <= 999 && gKasDocumentName.match("_Vshivka") != null){
          if (app.colorSettings.workingSpaceCMYK != "ImationMatchprn175lpi_avr.icc          "){
             alert("Внимание! Для вшивки должен использоваться провиль \"ImationMatchprn175lpi_avr.icc\", а установлен. — " + app.colorSettings.workingSpaceCMYK);
       else if (gKasDocumentName.substr(0, 4) == "Obl_"){
          if (app.colorSettings.workingSpaceCMYK != "ImationMatchprn175lpi_avr.icc          "){
    //         alert("Внимание! Для обложки должен использоваться провиль \"ImationMatchprn175lpi_avr.icc\", а установлен. — " + app.colorSettings.workingSpaceCMYK);
             if (confirm("Внимание! Для обложки должен использоваться провиль \"ImationMatchprn175lpi_avr.icc\", а установлен. — " + app.colorSettings.workingSpaceCMYK)) {
                app.colorSettings.cmsSettings = "Listovaya Mashina";
    function KasinfoFromPS() {
       var bt = new BridgeTalk;
       bt.target = "photoshop";
       bt.body = "app.colorSettings;"
       bt.onResult = function(resObj) {
          var myResult = resObj.body;
          KascheckPsColorSettings(myResult);
       bt.send();
    function KascheckPsColorSettings(myColorSettings){
       var myIssueNumber = parseInt(gKasDocumentName.substr(2, 3));
       if (gKasDocumentName.substr(0, 2) == "Q_" && myIssueNumber >= 730 && myIssueNumber <= 999 && gKasDocumentName.match("_Vshivka") == null){
          if (myColorSettings != "ISO Web Coated"){
             alert("Внимание в Photoshop! Для газеты должен использоваться провиль \"ISO Web Coated\", а установлен. — \"" + myColorSettings + "\"");
       if (gKasDocumentName.substr(0, 2) == "Q_" && myIssueNumber >= 730 && myIssueNumber <= 999 && gKasDocumentName.match("_Vshivka") != null){
          if (myColorSettings != "Listovaya Mashina"){
             alert("Внимание в Photoshop! Для вшивки должен использоваться провиль \"ImationMatchprn175lpi_avr.icc\", а установлен. — \"" + myColorSettings + "\"");
       else if (gKasDocumentName.substr(0, 4) == "Obl_"){
          if (myColorSettings != "Listovaya Mashina"){
             alert("Внимание в Photoshop! Для обложки должен использоваться провиль \"ImationMatchprn175lpi_avr.icc\", а установлен. — \"" + myColorSettings + "\"");
    You can put your own stuff into the script:
    if (theItem.eventCode == "docLoaded") {
    // do your stuff here
    And finally generate the plug-in.
    Kasyan

  • Can't drag files out of the dock folders/stacks

    On Mavericks I'm able to drag files out of the folders/stacks I have on the Dock (Downloads, Documents, etc.) just as you would anywhere on OSX. But, for some reason my mom (Mavericks) and my fiancee (Mountain Lion) can't. I've tried checkin the permissions for those folders (in Get Info) and they have read/write permissions. This only happens in list view, not in fan, grid or automatic. Is there some hidden setting or something else that would allow them to be able to drag files?

    For downloads, go to your user folder downloads and remove them there. Same for Applications. To remove alias from the Dock hold down the command key while dragging them from the Dock.
    If that does't work, go to Finder and select your user/home folder. With that Finder window as the front window, either select Finder/View/Show View options or go command - J.  When the View options opens, check ’Show Library Folder’. Then try a Dock reset.
    Try doing a Dock restart using the following Terminal command:
    killall Dock
    Log out/in and test. If that doesn’t work, you need to look in your user Library/Applications Support/Dock for the .db. Use the Finder “Go To Folder” command. Enter ~/Library/Applications Support/Dock.  Move the .db to your desktop.
    Then try a dock reset.
    Applications/Utilities/Terminal enter the command
    killall Dock
    Log out/in test. If it works okay, delete the .db from the desktop.
    If the Dock is the same, return the .db to where you got them from, overwriting the newer ones.

Maybe you are looking for

  • All sales orders

    Hi, Please help me out in generatio  of below report. A report for list of incomplete sales orders, all or only open orders, display contracts. you can send your views to '[email protected]'. Thanks in advance. -muraly

  • How can I view an AI file created on a MAC on a PC without corrupting the fonts?

    How can I view an AI file created on a MAC on a PC without corrupting the original fonts?  An AI file was created with an image and text on a MAC.  When the AI file was opened on a PC, the text fonts were not the same as originally created.  Also, th

  • IPhone in Europe/roaming/wifi

    So as mentioned in an earlier post, I will be in Europe as of the end of this month for a three month + visit. If I actually needed an excuse to do so one of the main reasons for buying an iPhone was to use it over there, ( UK and France ), during th

  • Insert from Select

    Hi, I have a table A with key field. Now i want to copy same set of values(field2 and field3) from Table A and have different Key(field1) My Table should look something like below. Right now the values are there only for key field 'US' E.g. Field1(Ke

  • Payloads error InDesign CS4

    I tried to reinstall InDesign CS4 (on Snow Leopard). But when I want to install CS4 agian I get the error: Critical errors were found in setup for Adobe InDesign CS4: Incompatible payloads already installed. In run the CS4 and CS3 cleanup script. But