Undo not working in Indesign CC 2014

My indesign CC is not working with Undo. How do i fix this. Never had a problem with Indesign until now!!! Ever since I updated to Mavericks and CC2014 my indesign is whacky. Also does not update things without saving.

That's almost always because of system or third party software that's stealing your keyboard shortcuts.
Check System Preferences > Keyboard > Keyboard Shortcuts. Investigate third party software and browsers that may be operating at the same time.
If necessary, set up a new user and launch InDesign in the new user to check the problem.

Similar Messages

  • Shift commands not working in InDesign CC 2014

    All commands were working fine last week but opened up InDesign today and for some reason all the Shift-based commands are not working properly (i.e. automatically drawing 45 degree angles and proportionally resizing shapes). Working on a Macbook Pro 2012 running Yosemite 10.10.1

    That's almost always because of system or third party software that's stealing your keyboard shortcuts.
    Check System Preferences > Keyboard > Keyboard Shortcuts. Investigate third party software and browsers that may be operating at the same time.
    If necessary, set up a new user and launch InDesign in the new user to check the problem.

  • Shree Lipi 7.3 does not work in Indesign CC 2014

    Hello,
    I am using Adobe CC with Shree Lipi 7.3.
    Recently adobe has launched Indesign CC 2014.
    I have installed it but unable to type in Indian Language in Shree Lipi.
    At the time of typing it keep space between characters.
    (Shree Lipi works fine in Photoshop and Illustrator CC 2014 )
    can any body have solution to solve this issue.
    Thanks in Advance...

    Hi guys,
    The problem has be solved by set the 5th parameter of the method.
      GSysPoint pt = Utils<IEventUtils>()->GetGlobalMouseLocation();
      menuMgr->HandlePopupMenu(kMyPluginMenuPath, pt, pt, kFalse, controlViewOfCurrentWidget);
    Regards,
    Eric

  • The Move Tool not working in InDesign CC 2014, no click-and-drag. What Can I do to fix it?

    It just started not working this week. I am unable to click-and drag anything in my document with the Move Tool. I have noticed that I can click-and-drag objects if I switch to the Free Transform Tool. Ok work around for now but I want to fix the issues. I have tried deleting the preferences and reinstalling the program but with no luck.
    Anyone have any suggestions?

    OSX 10.10.1 Yosemite
    iMac (27-inch, mid 2011)
    2.7 GHz Intel Core i5
    4GB 1333 MHz DDR3 Ram
    AMD Radeon HD 6770M 512MB
    I have looked into replacing my preferences but I cannot find a good preferences in which to copy and use.

  • Logitech mouse buttons not working in photoshop cc 2014

    logitech mouse buttons not working in photoshop cc 2014 winds 8.1. Is this a common problem?
    I have updated the latest drivers and have a few buttons programmed with keyboard shortcuts that used to work in previous versions of Photoshop but don't work now.
    Scrolling with mouse in bridge stopped working in cc butI see it is now working.
    any ideas?

    Many Photoshop extensions are not compatible with Photoshop CC 2014 for Adobe removed support for Flash Panels in CC 2014. Many extensions panels are flash based.  Check with the developer to see if their blendmein extension works with CC 2014.
    Adobe does not maintain Photoshop so it backward compatible with prior versions of Photoshop.  This brakes things like action scripts plugins extensions etc. Keep old version of Photoshop installed....

  • EXEC SP_EXECUTESQL not working in sql server 2014

    EXEC SP_EXECUTESQL not working in sql server 2014

    EXEC SP_EXECUTESQL not working in sql server 2014
    Hi Amar,
    What's the error when executing this stored procedure?
    I have tested it on my local environment, we can run this SP without any problems.
    Please provide us more information, so that we can make further analysis.
    Regards,
    Charlie Liao
    TechNet Community Support

  • Bridge CC Tools - Photoshop - Batch does not work in Photoshop CC 2014.

    in Bridge CC Tools - Photoshop - Batch does not work in Photoshop CC 2014. At first I didn't even see the option but I reinstalled Photoshop CC and now I see the menu option but when I try it there is a message that I need to use Photoshop CC. So I open Photoshop CC and the same thing happens? I can't seem to make it work.

    Kitty,
    Your screen shot is in the virus scanning queue, where it can linger for minutes, hours, days or weeks.
    If you use the camera icon in the reply editor's formatting bar, you can embed your image in your post, where it will be viewable instantly.
    then:
    As for your issue, make sure all applicable scripts are checked in Bridge preferences:

  • CC 2014 nik efex - My Nik Efex filters are not working in Photoshop CC 2014 - they appear under plug-ins and seem to work, but after running and clicking okay, no new layer appears - seems to have no effect.  The separate menu panel does not appear either

    My Nik Efex filters are not working in Photoshop CC 2014 - they appear under plug-ins and seem to work, but after running and clicking okay, no new layer appears - seems to have no effect.  The separate menu panel does not appear either.  Help with this?

    BINGO !!!!
    Thanks so much Woodsroad. I had the exact same problem with my Dell Windows 7 64 bit with AMD Radeon 6700 Video card.
    All the video tests passed with flying colors.
    The sniffer rename trick fixed the problem.
    Thank goodness for the internet!

  • VBA-script not working in InDesign

    Goal: To have text placed from Word formatted in the paragraph styles I like. I receive the text from other authors and they are formatted with standard Word paragraph style formatting.
    Two solutions:
    Format the text in Word (change paragraph styles) using VBA, place/import it and somehow make sure that InDesign uses the styles I already defined in InDesign, not the way that style is defined in Word. I can't figure out how to do this.
    Do the formatting in InDesign, using script. But the VBA-macro does not work in InDesign.
    How may I change the code in order to work in InDesign? The code should look for specific paragraph styles and change them or the style of the next paragraph.
    Sub stilSkifte()
    Selection.GoTo What:=wdGoToPage, Which:=wdGoToNext, Name:="1"
    Dim para As Paragraph
    For Each para In ActiveDocument.Paragraphs 'søk gjennom hvert enkelt avsnitt i dokumentet
       On Error Resume Next
        'INGEN MELLOMROM og overskriftene
        If para.Range.Style = "Ingen mellomrom" Then
            para.Style = "Normal"
            GoTo SisteLinje 'Gå til linja i koden som heter SisteLinje, = gå til neste avsnitt
        End If
        If para.Range.Style = "Overskrift 1" Then
            para.Style = "Tittel-små"
            GoTo SisteLinje 'Gå til linja i koden som heter SisteLinje, = gå til neste avsnitt
        End If
        If para.Range.Style = "Overskrift 2" Then
            para.Style = "Ingress"
            GoTo SisteLinje 'Gå til linja i koden som heter SisteLinje, = gå til neste avsnitt
        End If
        If para.Range.Style = "Overskrift 3" Then
            para.Style = "mellomtittel"
            GoTo SisteLinje 'Gå til linja i koden som heter SisteLinje, = gå til neste avsnitt
        End If
        'NORMAL til BYLINE
        If para.Range.Style = "Ingress" Then
            If para.Next.Style = "Normal" Then
                para.Next.Style = "byline1"
            End If
               GoTo SisteLinje
        End If
        If para.Range.Style = "byline1" Then
            If para.Next.Style = "Normal" Then
                para.Next.Style = "byline2"
            End If
               GoTo SisteLinje
        End If
       'Hvis avsnittet er i NORMAL og det neste er...
        If para.Range.Style = "Normal" Then
            '...i NORMAL endres dette til NORMAL M INNRYKK
            If para.Next.Style = "Normal" Then
                para.Next.Style = "Normal med innrykk"
            End If
            GoTo SisteLinje
        End If
    SisteLinje: Next
    End Sub
    I apriciate any suggestions!

    Thank you Kasyan, but it doesn't work as I expected it to. The InDesign style are somtimes overridden, sometimes not. It seems to have something to do with wether the Word-style is based on another Word-style or not. In addition I have my InDesign styles grouped, and when InDesign upon placing a text doesn't find the style on the top level, it imports the Word-style.
    My solution:
    Change Word-styles so they are not based upon another style
    Running the VBA-code in Word
    Placing the text using "Use InDesign style definition" for paragraph and character styles conflicts.
    Editing the imported InDesign styles so that they are based upon and equals the original InDesign style in the respective group

  • Spotlight still not working in inDesign

    Why is it that after nearly TWO years the spotlight function in the open dialogue box is still not working in inDesign? Is this some sort of sick joke from the inDesign programmers? Why can it work when in the PASTE dialogue box but not the OPEN dialogue box? I discovered this fault years ago and wrote about it in length but it has yet to be addressed.

    Thank you Daniel,
    I omitted posting that the Search box in my Systems Preferences Window used to work, so that I do know what to look for: as I type letters the preference panes whose description contains the (partial) word I am typing should be highlighted by an undimmed circle.
    Unfortunately, in my case, the behavior I have is that regardless of what I type in the Search box in my Systems Prefernces Window, no icons are ever highlighted. Indeed, I can type the complete name of a preference pane, for example 'bluetooth', and while my entire Systems Preferences Window is dimmed, neither my Bluetooth preference pane icon nor any other preference pane icon is highlighted through the use of an undimmed circle about it.
    This failure of the Search box in the Systems Preferences Window has been experienced by other people. For example in this forum, viz:
    Reindexed my HD but no Spotlight preference in Preferences
    http://discussions.apple.com/thread.jspa?threadID=876847
    Unfortunately the solution posted in the above thread was to manually delete the ~/Library/Caches/com.apple.preferencepanes.cache and ~/Library/Caches/com.apple.preferencepanes.searchindexcache files. And as I posted I've tried not only manually deleting the above two files in terminal.app, but also deleting all of my cache files through the use AppleJack 1.4.3. Neither steps have returned the Search box in my Systems Preferences Window to working order.
    Alas, I'm still looking for suggestions...

  • Negative (to inline a letter or to thin it) offset path does not work in Illus-CC 2014 (when preview is on- nothing happens). How can I get this to work like in previous versions.

    Negative (to inline a letter or to thin it) offset path does not work in Illus-CC 2014 (when preview is on- nothing happens). How can I get this to work like in previous versions.

    Thanks for your quick reply. I tried a number of different values. Usually when I do a negative offset they're very small values, like -.25 or -.5.
    An Update- I took the art work into Ai CS 6 and It still did not work, which is really strange. And I've used it hundreds of times with success in the past. Also I tried it with live type and outlines, ungrouped, un-compounded still could not get it to negative offset.
    Thanks for the help.

  • Key combination Shift+Alt+Cmd+D does not work in Indesign CC, why not?

    Key combination Shift+Alt+Cmd+D does not work in Indesign CC, why not?

    Is it assigned to something in the shortcut set you are using?

  • Linotype Decoration Pi will not work with InDesign CS6

    Linotype Decoration Pi Font will not work with InDesign CS6. If I buy a new version from the Sdobr store, will it work?

    Has the font ever worked in CS6? If not, did it work in a previous version? Did it ever work in any version of ID using your current OS version? I ask the last question because I helped someone on another forum today that had a font that did not survive migration on their Mac. In their case, the font was selectable but the application would crash exporting to PDF or printing.
    I'm using a PC. It works here.
    It is listed along with the fonts that start with D here.
    Mike

  • Adobe Staff Please Read - Tab Key Not Working in InDesign HTML5 based panel

    Tab Key Not Working in InDesign HTML5 based panel
    Instead of changing focus to next entry field when the tab key is pressed it hides the panel instead.
    UI Nightmare.

    I’m using editable text fields. When I hit tab nothing happens. Focus stays on current text field.
    Mike Baugh • Creative
    Director, Digital Production
    +1 240-662-4442 office
    +1 410-807-1633 mobile
    [email protected]<mailto:[email protected]>
    agency.discovery.com<http://agency.discovery.com/>

  • Blendmein extension is not working in photoshop cc 2014

    I installed add-ons from adobe add-ons website but add-ons are not visible in windows>extension...

    Many Photoshop extensions are not compatible with Photoshop CC 2014 for Adobe removed support for Flash Panels in CC 2014. Many extensions panels are flash based.  Check with the developer to see if their blendmein extension works with CC 2014.
    Adobe does not maintain Photoshop so it backward compatible with prior versions of Photoshop.  This brakes things like action scripts plugins extensions etc. Keep old version of Photoshop installed....

Maybe you are looking for

  • Multiple Devices on the same plan?

    I always manage to leave my MiFi Mobile Hot Spot at home for use with equipment there and forget to bring it along when I leave home, travel etc.  Is it possible to add another device such as a USB modem to the same account/plan so I always have acce

  • How do I get rid of the "Allow" button that pops up sometimes even on trusted sites?

    The "Allow" button pops up many times while in a trusted site. It is annoying and does not happen on my other computers. If I knew how to get rid of it, I would.

  • I cant sign in facetime and imessage in ipad3

    After i changed the password, i couldnt sign in both of facetime and imessage. I tried sign out itune and reset all setting and turn off the ipad several times. it still said "could not sign in. please check your network connection and try again."  T

  • Call function in function?

    is this possible? I was told it's best to do this, how would I go about it. I've attached my code below and bolded the areas I'm having a problem with. backbutton.addEventListener(MouseEvent.CLICK, backclick); helpbutton.addEventListener(MouseEvent.C

  • Correlation Set With externals partners

    Hello, I have a question regarding correlation set and there usage. I'm currently making a samll poc on "correlation set" for testing the feature to determine if we could use it for our use case. I'm hitting some problems that I can't overcome for th