CS4 missing features and functions

Help please, I cannot get my work done!
I have just upgraded from Design Premium CS3 to CS4. InDesign is the only program I am having issues with.
I can no longer Alt-drag to duplicate an object. Using Edit-Duplicate puts the new object off the pasteboard.
I can no longer cut and paste ANYTHING. The features are grayed out in the menu, even when an object is selected. I can copy text from Word, but it will not past into the InDesign text box.
Cannot move selected objects using the mouse, only the arrow keys will move a selected object.

The problem is caused by a bug in the handling of US and GB language files either in InDesign CS4 or its installation program.
You can "force repair" this by using a macro I made: www.e-fastems.com/cs4_indesign_repair_missing_help_and_shortcuts.zip
In the last step, you need to choose the default shortcut set of your area. E.g. for me it was [Default Finnish]
I'm not sure if there are more similar problems in CS4. But in my company, we were able to fix the problem in InDesign CS4 using this macro.
Symptoms of this problem include:
- When trying to open the help in InDesign CS4 you get the message: "Adobe InDesign CS4 Help content is not installed, or the installation has been damaged. Please reinstall InDesign."
- All the tools (Tools, Control, Links) panels are missing (i.e. Workspace settings are missing)
- Copy-paste is not working
- Enter key does not work
- Delete key does not work when e.g. trying to delete a selected object

Similar Messages

  • Missing features and bugs in 2.2 update...

    Missing features and bugs in 2.2 update...
    Here is my shortlist:
    1. Copy/Cut and paste - sadly still missing...
    2. Landscape view for keyboard - SMS and Email - still missing...!
    3. AM/PM indicator missing from "unlock" screen (in 12 hour clock) - BUG
    ... What's wrong with Apple these days - all of these issues (listed above) could have been easily implemented in version 2.2 and were frequently requested by all iPhone users since version 1.0 and yet Apple have ignored all of them...

    These features may or may not be that difficult to include, but what made you "fork out huge amounts to pay for a 'top of the range' iPhone" in the first place?
    As already provided, Apple has what is called their own "allocation of resources and prioritization", and if what is included doesn't meet your needs or wants, you should not have purchased an iPhone in the first place, or continue to keep using the iPhone if Apple doesn't include the features you need or want in a time table that meets your expectations, since there are plenty of cheap $100 phones that meet your needs or wants, you have a wide range of other phones to choose from which are less expensive, so that is exactly what you should do. No point in continuing to use a device that does not meet your needs or wants. Use one of the many less expensive devices you have to choose from that meets your needs or wants and move on.

  • Features and Functionality of Oracle HRMS

    Dear All,
         Can anyone provide me the features and functionality about the Oracle HRMS 12? This is very urgent for me.
    Best Regards,

    Please refer to http://itsafeature.com/new-features-in-oracle-hrms-release-12/
    Excerpt from the above URL:
    New User Experience
    * iRecruitment - Completely re-designed Candidate Registration
    * Absence Management - Updated business flows and entire look-and-feel
    * Salary Administration - Vastly improved UX for Salary Information, including high-interactivity embedded analytics
    * Competency Profile - Completely re-designed user experience
    Oracle’s Top 5 Reasons to Upgrade to Release 12
    * Supports HR Best Practices
    * Reduces Administrative Costs
    * Improves Productivity
    * Key New Features/Functions
    * Extended Maintenance & Support

  • How to remove missing features and webparts?

    I've moved and upgraded a 2007 teampoint site to my Enterprise SharePoint 2010 site. The site is up and running but I've got this nagging error about a missing webpart and a missing feature.
    The features that were not compatable were not used so what SharePoint 2010 would allow me to remove has been removed. Now I have this error message that still needs to be dealt with.
    [MissingFeature] Database [WSS_Content_2007] has reference(s) to a missing feature: Id = [75a0fea7-cd50-401e-af0e-782f3662a299]. The feature with Id 75a0fea7-cd50-401e-af0e-782f3662a299 is referenced in the database [WSS_Content_2007], but is not installed
    on the current farm. The missing feature may cause upgrade to fail. Please install any solution which contains the feature and restart upgrade if necessary.
    [MissingWebPart] WebPart class [768ec641-8c6a-1cc6-6465-185094919a93] is referenced [1] times in the database [WSS_Content_2007], but is not installed on the current farm. Please install any feature/solution which contains this web part. One or more web parts
    are referenced in the database [WSS_Content_2007], but are not installed on the current farm. Please install any feature or solution which contains these web parts.
    So, I'd like to remove the references from the database for the feature and webpart mentioned in the error. I can't seem to spot how to do that with stsadm, it reports that the feature is not installed which leads me to conclude that I just need to remove
    the reference from the db. Is there a SharePoint way to do this or am I destined to remove it manually from the db myself?
    Kevin W. Gagel

    Kindly use the below script for removing missing Feature:
    [System.Reflection.Assembly]::LoadWithPartialName("Microsoft.SharePoint") > 0
    # Loading Microsoft.SharePoint.PowerShell
    $snapin = Get-PSSnapin | Where-Object {$_.Name -eq 'Microsoft.SharePoint.Powershell'}
    if ($snapin -eq $null) {
    Write-Host "Loading SharePoint Powershell Snapin"
    Add-PSSnapin "Microsoft.SharePoint.Powershell"}
    function Remove-SPFeatureFromContentDB($ContentDb, $FeatureId, [switch]$ReportOnly)
     $db = Get-SPDatabase | where { $_.Name -eq $ContentDb }
     [bool]$report = $false
     if ($ReportOnly) { $report = $true }
     $db.Sites | ForEach-Object {
      Remove-SPFeature -obj $_ -objName "site collection" -featId $FeatureId -report $report
      $_ | Get-SPWeb -Limit all | ForEach-Object {
       Remove-SPFeature -obj $_ -objName "site" -featId $FeatureId -report $report
    function Remove-SPFeature($obj, $objName, $featId, [bool]$report)
     $feature = $obj.Features[$featId]
     if ($feature -ne $null) {
      if ($report) {
       write-host "Feature found in" $objName ":" $obj.Url -foregroundcolor Red
      else
       try {
        $obj.Features.Remove($feature.DefinitionId, $true)
        write-host "Feature successfully removed from" $objName ":" $obj.Url -foregroundcolor Red
       catch {
        write-host "There has been an error trying to remove the feature:" $_
     else {
      #write-host "Feature ID specified does not exist in" $objName ":" $obj.Url
    $databases = Get-SPContentDatabase 
    $featureID = "c4b5bf25-2a8a-4ba3-a6a8-87d7fe31ef02"
    Foreach ($db in $databases)
     #Use this line to remove the reference to the feature
     Remove-SPFeatureFromContentDB -ContentDB $db.Name -FeatureId  $featureID
     #Use this line to list all the sites that it has a reference to the feature
     Remove-SPFeatureFromContentDB -ContentDB $db.Name -FeatureId $featureID –ReportOnly

  • Missing text and functionality on install of itunes to Windows 7

    Hi there - I've just installed itunes on a computer that's never had it before. There are several issues, the most obvious being I'm missing half the text and functionality as per my screen shot. My menu bar is about 2mm big and I can't see all the buttons to move between songs / albums / radio etc.
    Searched the forum extensively but nothing has helped. I have completely uninstalled in the correct order. Removed all the temp files and checked all folders were also removed on uninstall. Rebooted. New download just in case. Installed as administrator. I get no error messages. But it doesn't make a difference.
    Any suggestions?
    Thanks

    HI turingtest2,
    Thank you!
    I actually saw this trail after I posted and have been waiting for someone to send me the font file since. Installed and tah-dah! Working!
    Thanks again!
    K

  • Does Apple plan on restoring oft-used features and functions that were removed in the latest iWork?

    In Pages alone, I am sadly missing text-to-table conversions and find and replace of white-space characters, among others.  I had a running list going of features I can no longer find, but after about a dozen, I just got sad looking at it and threw it away.  Is there anywhere to submit these concerns?  Is there any chance Apple will respond with an update that replaces lost functionality?

    You can submit Pages feedback to Apple. Just don’t expect any response. As this is a voluntary, user to user support community, Apple is neither here, nor do they reveal any future product plans to us. Although Apple has released a few updates to Pages v5, it still remains substantially limited, and any timeframe or commitment as to future updates, or content, is known solely by Apple.

  • InDesign CS4: Missing Toolbars and Missing Plug-In

    Currently running InDesign CS4, version 6.0 on a Macbook Pro.
    I was just using the program last night with no issues. Upon opening InDesign today, Adobe Updater popped up at launch; I installed updates. Now when I open a new document in InDesign, there are no toolbars on the side of my screen. (I've tried using the tab key shortcut, but nothing happens.)
    Also, when I try to open previously saved InDesign files from my computer, I get the following pop-up:
    Missing Plug-ins
    LILO.APLN
    The document "filename" uses one or more plug-ins which are not currently available on your system. Do you want to open anyway?
    And then this pop-up:
    Hyphenation breaks may change if you edit the text in this document.
    The following hyphenation services are not installed on this system - Proximity (English: USA)
    I don't know what either of these messages mean. I'm not incredibly tech-saavy, so any advice would be EXTREMELY appreciated.

    Uninstalled the Creative Suite. Ran the cleanup tool. Reinstalled the suite from the installation discs.
    Upon opening InDesign, I got these two messages:
    LILO.APLN
    The document "filename" uses one or more plug-ins which are not currently available on your system. Do you want to open anyway?
    And then:
    Hyphenation breaks may change if you edit the text in this document.
    The following hyphenation services are not installed on this system - Proximity (English: USA)
    Also, toolbars are gone again.

  • Lumia 920 India .. missing features and some sugge...

    Alrito ppl..i have migrated from nokia 701 (Symbian) to Nokia lumia 920 (Windows 8)
    Country : India
    FW : 1232.5951.1249.1001
    OS Version : 8.0.10211.204
    No sim inserted as yet and right now using it in wifi mode only
    Since i was a symbian user..some features are very very essential in my daily phone usage (though some are rare)
    So the required features/suggested
    Camera/Photos :
    1.Red eye reduction 
    2.Self-Timer
    3.Details of photos like size,location,resolution, etc etc
    4.Number of photos like how many photos are there in an album or phone..
    5.wat is the use of having albums tab when u cant create one??!!
    Media:
    1.Heard that Stereo FM is gonna come soon with the next update of accessing fm radio and can also radio transmittor ?
    Hope its coming soon...
    2.Cant the equaliser me edited? and also be accessed from the music player ??
    3.MKV Format files doesnt play !! (Yes, i have tried it)
    Others :
    1.Internet explorer has a problem.. i use my ie whn wifi is on and later after swtiching off wifi 
    if i wanna close down ie..i cant because it jst keeps going back to the previous webpage which cannot load due to no access to net !!! plspls fix this .!!
    2.Nokia MAPS as compared to my symbian nokia 701 ... the gps access is really really bad.. i had to use my old mobile for using the nokia drive option..
    3.I know windows 8 doesnt have ny "file system" but i do hope they bring something like file manager for better access to many other things... 
    4.many other extentions like .zip, .rar dont work because of lack of apps and no basic functionality to access them..pretty bad for a person using the phone for office purpose..
    5.Profiles should be evidently visible and i should be able to create seperate profile because just ring+viobrate, vibrate and flight mode is not enough..
    6.In the groups under contacts...i really want to add people by selecting them and not individually...i know a very small request but it really helps...
    7.In the groups under contacts...i want to see the number of people in the group..i dont want to count them manually.. a small feature again but i request u to add it too..helps a lot..
    8.The counter for message,calls, etc and call logs for more than 30 days will be appreciated if it comes with the update because thn installing app for it is something i wudnt like..but this is a suggestions which i hope is implemented for better user experience...
    will add some other requirements and suggestions as soon as i get better experience of my new phone

    Camera/Photos:
    1. You can use Nokia Creative Studio on the phone to fix red eye.
    3. Install "Picture Info" from the store, it's free.
    5. You need to ask Microsoft that question but it does show albums you've created in skydrive or facebook
    Media:
    1. Only a rumour, Microsoft at this moment does not support FM and the next update does not enable it. Even if the L920 did have the required hardware it would only work as a receiver, not a transmitter.
    3. I don't believe Microsoft has added support for that.
    Others:
    1. Microsoft control IE featurs, if you press the menu dots then close all tabs you can easily exit.
    2. Weird, GPS works well where I am, make sure you use it with a data connection.
    3,4,5,6,7 & 8. You need to suggest that to Microsoft as it is their operating system, not Nokia's.
    You can submit suggestions to Microsoft on the link below:
    http://windowsphone.uservoice.com/forums/101801-feature-suggestions
    You can discuss things about the OS on Microsoft's forum:
    http://answers.microsoft.com/en-us/winphone

  • Lumia Icon - missing features and behavior

    I replaced my Lumia 920 with the Icon yesterday. 
    A main software feature was not present.  The Lock Screen Timeout option for NEVER is missing on the Icon.  It was present on the 920.  Now the screen goes dark every 5 minutes.  Besides being fundamentally irritating, this is a problem while driving and other dangerous situations. 
    Also, sound files in the Ringtones directory do not appear in the available ringtones list.  I used .wma and .mp3 sound file formats. 

    Hi, jockey4her. Welcome to Nokia Support Discussions!
    Have you configured your Lumia phone to connect to your corporate email? If yes, this is the reason why the option went away.
    Also, this feature can vary depending of the chosen customization (operator variant) and the display technology. This means that all Lumia phones do not have the ‘Never’ option.

  • Missing options and functionality in my internal modem for faxing?

    I think my internal modem software on my G4 with OS 10.3.9 isn't fully functional. I can send and receive faxes on my dedicated fax line just fine now, but I want to cancel that phone line and set the modem up to receive faxes on my regular house phone line -- that has an answering machine attached. So that means I need to be able to set it up to receive faxes manually somehow when I pick up the phone and hear a fax.
    I picked this reply up from another forum:
    Then, under "System Preferences", look for the "Print & Fax" panel, select the "Fax" panel, and setup with your personal settings. After that, click the button that says "Set Up Fax Modem..." which creates a Fax Queue (similar to a print queue). I like to have the "Show Fax status in menu bar" box checked also.
    The thing is, I do NOT get the "Set Up Fax Modem" to make a Fax Queue or the "Show Fax Status in menu bar" when I'm in the "Print and Fax" panel. All I can do is check a box that says "receive faxes on this computer", add my telephone number, and choose whether I want the fax as a PDF or send an email, or which printer to print it to. That's it! I can't tell now when a fax is coming in or who is sending it or anything about the fax. I need more functionality, is there a utility I am missing??
    Thanks for any help! --Karen

    Still waiting for an answer from someone.

  • Features and functionality : HW and SW

    Hello Experts,
    I have a read an article about functionality comparison table which compared 3G vs 3GS vs 4. That is a short list.
    What i need is a more comprehensive listing of the differences between these 3 models in terms of both Hardware and Software aspects for non-jailbroken iphones.
    Logically speaking, this list should be available. But where?
    best regards
    catlover999
    Message was edited by: catlover999

    A very quick Google search found these two plus many more:
    http://www.apple.com/iphone/compare-iphones/
    http://gizmodo.com/5283468/iphone-3gs-vs-iphone-3g-feature-chart-comparison

  • Ipod New Features and Functions Suggestions?

    I'm sure with the continuous updates for the Ipod Software that there is a place where we can make suggestions but I can't find it? That said, I have an idea I would like to post so that someone from development could take under consideration. As well this could be a thread for other's ideas as I'm sure we all have them. Here we go:
    1. Wouldn't it be great if while listening to music on your iPod using the shuffle feature, if you heard a song you like, you could press a button and have it return directly to the album from where it's located. When you have 20 - 60 GB of songs, scrolling back through menus to get to artists or songs is long and painful. This would also save serious battery time, etc.
    2. How about a feature on Itunes that allows you to sort or count how many songs (and size) that you have checked versus what you don't. I have 60 gb of music but only a 20gb iPod. Currently you have to use the "Allow iPod to create a playlist" feature to select 20 GB worth of music and then edit from there.

    There is a form you can use to submit suggestions for future iPods; messages submitted there will be read by the iPod engineers, while suggestions posted here may not be.
    (8995)

  • Sick of losing features and functionality with Apple "upgrades"

    So far with upgrading my IPad 1, my iPod touch1 and my Apple TV,  I have lost some features on everything and the iPad is slow and crashes all the time.
    really ****** off,  I have 7 Apple products and didn't think I would ever stray,  but if this keeps up I will be reconsidering.

    Ok, thanks for sharing - but do you actually have a technical question we can help with?
    Which features do you think you've lost? I'm not aware if any features Apple has actually removed. You also don't mention what you gave upgraded from and to.

  • If I move to Mavericks from Mountain Lion, what features and functions will I lose?

    I have read about the problems some users are having with interrupted downloads, slow running etc.  Apple trumpets its new features but doesn't seem to mention which ones will disappear.  I believe USB sync will be lost for some apps: fine if you have internet coverage but not a valid assumption in many parts of rural Queensland. 
    I'd like to hear what other backward steps may be involved in the "upgrade".

    Apple - OS X Mavericks
    Mac OS X 10.9 Mavericks Review
    OS X 10.9 Mavericks review
    OS X Mavericks
    Mac OS X 10.9 Mavericks review

  • Blackberry Screen Reader, features and functions

    Gestures when using the Blackberry Screen Reader indicates that to “Pan or scroll a list” that an audio cue indicates that the scrolling action is complete, and the BlackBerry Screen Reader updates the point of regard so that you can continue reading from the new location.
    Swipe up with two fingers to scroll toward the top. Swipe down with two fingers to scroll toward the bottom. This action sets a new point of regard.
    Q: Do you first have to set the list as the point of regard to enable scrolling?
    Q: Does the size of the Text Chunk have any baring on the scrolling action?

    Great information! Will keep this in mind when I get my Classic. Thanks!
    1. If a post has helped you, show your appreciation by clicking Like at the bottom of the message box.
    2. If a post has solved your question, please click ''accept as solution'' to verify your question has been solved.

Maybe you are looking for

  • Rejeição do validador do GRC dos campos IND_PRES e IND_FINAL

    Bom dia, Estou implementando o layout 3.10 da NF-e e encontrei um problema na validação dos campos IND_PRES e IND_FINAL. O cliente possui SAP_APPL 600 SP 24. O problema é na chamada do método FILL_HEADER da BAdI CL_NFE_PRINT: antes da chamada do méto

  • BRF+ is not working for MDG-F

    Hi Experts I selected rule based workflow template for OG_0001 CR type ( Creation of GL account). It seems workflow is not triggered as there is error for one work item: Check If Single Agent-Group Processing  Error in getting proper agent group; no

  • Internal Sales Order imported with Line status "Booked".

    Hi Guys, Expecting a status of "Awaiting Shipment" in the line status but getting the status of "Booked". checked the following metalink notes but did not help Scheduling Internal Sales Orders Results in Error - One of the Group Elements or Mandatory

  • Error in ReaderExtension WatchFolder Concept

    Hi, I installed the AdobeLiveCycle ES for ReaderExtensions. I used the ReaderExtensions through watchfolder concept. But the file found in failure folder with "failure.log". So please kindly see the below error in .log file and give solution. Failure

  • Verity search results return application.cfm

    We've got a couple of sites using verity collections to search cfml, html, and some mime documents. This is generally successful. However, we do see coldfusion script-only pages returning in the search results, including application.cfm, and other cf