Problems changing the Open with... setting

Hi,
Having recived my new MacBook Pro with the trial version of Office 2004 I removed this using the remove utility as I have the full version of Office X.
However, I get the error code -10660 when I try and open documents. I have tracked this down to the fact that the default Open with... setting is Word 2004 etc.
I can manually select the correct program to open these files with, but when I set it so that all files with .doc open with this older version of Word it defaults back to the new version. (I am using the Change All... option under the Get Info option).
If I manually do this using Open with.. for each file it works, but this is both time consuming and silly.
iMac G5, MacBook Pro   Mac OS X (10.4.5)  

Missed the post above. Running this at the terminal did fix the problem:
/System/Library/Frameworks/ApplicationServices.framework/\
Frameworks/LaunchServices.framework/Support/lsregister \
-kill -r -domain local -domain system -domain user
The question was, why should I have had to have done this!!

Similar Messages

  • Temporarily changing the "open with" app for a batch of files

    I've written a number of scripts which have been saved as application bundles. One of the resource folders (named "Image Files") contains all the image files used in the script -- but the image files may have a variety of default applications for opening.
    I'm working on a separate script to facilitate editing the application bundles if and as necessary, and editing the image files is part of that. I need the option of opening the image files with an application other than the file's default application -- for example, I might want to open the image files with Photoshop.
    In my editing script I can easily enough get a list of the image files. But to open them with, say, Photoshop, I find that I have to use a Photoshop tell block and the full path to each file as it is called (otherwise it opens with its default application). If there are hundreds of image files, that's a lot of work!
    I'm seeking a "global" command that will tell all files in folder "Image Files" to open with app "Photoshop" (just in this script, as I don't want to change the defaults).
    Possible?

    I probably didn't explain my requirements thoroughly
    Your suggestion:
    "You mean like:
    tell application "Finder"
    open every file of folder "Macintosh HD:path:to:Image Files" using "Macintosh HD:Applications:PhotoShop.app"
    end tell"
    isn't quite it.
    (For one thing, that has the somewhat alarming result of opening all the image files in the folder simultaneously, and there may be hundreds.)
    In plain English, what I had in mind was more like:
    "Set the 'open with' application of every file in folder 'Macintosh HD:path:to:Image Files' to Adobe Photoshop.app"
    such that, if I were to have those files in a list, and were to open them one at a time, they'd open with Photoshop without further instruction -- this without affecting the default applications (or 'open with' applications) of the files from which those files were duplicated (assuming that there are such 'original' files).
    Since this still may be unclear, here's another explanation:
    • Say I have ten .jpg files on the desktop, all set to 'open with' Preview.
    • I duplicate those ten files to the Image Files folder of the application bundle.
    • If I open any one of those files at the desktop, I want it to open in Preview.
    • But if I open any one of those files in the Image Files folder, I want it to open in Photoshop. (The
    files in the Image Files folder could each have its 'open with' application reset manually, but
    with hundreds of files I'd much prefer AS to do that. As far as I can tell, doing that -- manually
    or with AS -- would result in different 'open with' settings for a file on the desktop and the
    corresponding file in the Image Files folder, which is basically what I'm after.
    Can I get AS to do this?

  • When I try to open a bookmark I get a box that says "what should firefox do with this file?" When I try to change the "open with Internet Explorer" I can't find firefox ? Last week this bookmark worked fine.

    When I open a bookmark a box pops up that says "What should firefox do with this file? "open with Internet Explorer? When I browse I can't find firefox to change to. Last week this book mark worked perfectly.

    Start Firefox in [[Safe Mode]] to check if one of your add-ons is causing your problem (switch to the DEFAULT theme: Tools > Add-ons > Themes).
    See [[Troubleshooting extensions and themes]] and [[Troubleshooting plugins]]
    If it does work in Safe-mode then disable all your extensions and then try to find which is causing it by enabling one at a time until the problem reappears.
    You can use "Disable all add-ons" on the ''Safe mode'' start window.
    You have to close and restart Firefox after each change via "File > Exit" (on Mac: "Firefox > Quit")

  • Problem, change the language with dynamic text

    I am looking for a way to change simply the language of my flash animation
    I work with flash cs4
    of course I got Mylocale.as:
    import mx.lang.Locale;
    class MyLocale extends mx.lang.Locale {
    static function start():Void {  
    var langCode:String = xmlLang;
    currentXMLMapIndex = 0;
    xmlDoc.load(xmlMap[langCode][0]);
    static function setXMLLang(langCode:String):Void {
    xmlLang = langCode;
    and different xml files in the same folder than my swf file
    in string , I ticked : "replace  strings automatically during the execution"
      with a default language (I am wondering if the problem is not from there)
      if I tick: "replace strings manually using the scene language " or "replace strings via actionscript"
    my code does not work.
      then I kept: "replace strings automatically during the execution"
    in my flash animation I have several scenes (pages)
    p1, p2, p3, p4
    in p1
    I created a language bar
    then 2 layers inside
    Layer--action:
    langListener = new Object();
    langListener.change = function(eventObj) {
    var target = eventObj.target;
    var newLang = target.selectedItem.data;
    MyLocale.setXMLLang(newLang);
    MyLocale.start();
    lang_cb.addEventListener("change", langListener);
    // Force Japanese
    lang_cb.selectedIndex = 1;
    lang_cb.dispatchEvent({type:"change"});
    Layer--language ex Fr:
    // Forces combobox to have the correct value
    on (release) {
    var component = _parent.lang_cb;
    for (var i=0; i< component.length; i++) {
    var item = component.getItemAt(i);
    if (item.data == "fr") {
    component.setSelectedIndex(i);
    component.dispatchEvent({type:"change"});
    break;
    ex Ja :
    // Forces combobox to have the correct value
    on (release) {
    var component = _parent.lang_cb;
    for (var i=0; i< component.length; i++) {
    var item = component.getItemAt(i);
    if (item.data == "ja") {
    component.setSelectedIndex(i);
    component.dispatchEvent({type:"change"});
    break;
    When I change the language in p1 , the language is also modified in p2, p3 and p4
    however , after a navigation in p2, p3 and p4 , once I come back in p1 , the default language is back automatically although I did not touch the language bar!!
    I don't know how to solve the problem
    to my mind , the script reset itself each time I come back on p1
    is there a way to keep the saved settings even when I am back on p1 until I modify manually again the language bar
    thanks a lot

    I am looking for a way to change simply the language of my flash animation
    I work with flash cs4
    of course I got Mylocale.as:
    import mx.lang.Locale;
    class MyLocale extends mx.lang.Locale {
    static function start():Void {  
    var langCode:String = xmlLang;
    currentXMLMapIndex = 0;
    xmlDoc.load(xmlMap[langCode][0]);
    static function setXMLLang(langCode:String):Void {
    xmlLang = langCode;
    and different xml files in the same folder than my swf file
    in string , I ticked : "replace  strings automatically during the execution"
      with a default language (I am wondering if the problem is not from there)
      if I tick: "replace strings manually using the scene language " or "replace strings via actionscript"
    my code does not work.
      then I kept: "replace strings automatically during the execution"
    in my flash animation I have several scenes (pages)
    p1, p2, p3, p4
    in p1
    I created a language bar
    then 2 layers inside
    Layer--action:
    langListener = new Object();
    langListener.change = function(eventObj) {
    var target = eventObj.target;
    var newLang = target.selectedItem.data;
    MyLocale.setXMLLang(newLang);
    MyLocale.start();
    lang_cb.addEventListener("change", langListener);
    // Force Japanese
    lang_cb.selectedIndex = 1;
    lang_cb.dispatchEvent({type:"change"});
    Layer--language ex Fr:
    // Forces combobox to have the correct value
    on (release) {
    var component = _parent.lang_cb;
    for (var i=0; i< component.length; i++) {
    var item = component.getItemAt(i);
    if (item.data == "fr") {
    component.setSelectedIndex(i);
    component.dispatchEvent({type:"change"});
    break;
    ex Ja :
    // Forces combobox to have the correct value
    on (release) {
    var component = _parent.lang_cb;
    for (var i=0; i< component.length; i++) {
    var item = component.getItemAt(i);
    if (item.data == "ja") {
    component.setSelectedIndex(i);
    component.dispatchEvent({type:"change"});
    break;
    When I change the language in p1 , the language is also modified in p2, p3 and p4
    however , after a navigation in p2, p3 and p4 , once I come back in p1 , the default language is back automatically although I did not touch the language bar!!
    I don't know how to solve the problem
    to my mind , the script reset itself each time I come back on p1
    is there a way to keep the saved settings even when I am back on p1 until I modify manually again the language bar
    thanks a lot

  • How do I change the "Open with" on iPad

    When I try to download some videos, a dialog pops up and gives me an application to select (usually iZip or DropBox), to open the file.
    Obviously neither app will open the video. How do I control which app to use to open files ?

    There was one reply that helped me change my Apple ID on my IPad but it wasn't very clear, so basically, go to 'settings' on the IPad; select 'store' on the left hand panel; sign out; select "use existing id" and put in the new 'Apple ID".  I think the problem I had was that by mentioning the Apps Store, I was trying to change the ID from the Apps Store, but I must admit, navigating and a combination of instructions helped a great deal, so thank you.

  • How do I change the "Open with Windows Wordpad Application (default)" for a DOCX file to I guess, Microsoft Word?

    I think the "Wordpad Application (default) got entered some time ago while trying to open a DOCX file. I now have a compatibility pack downloaded for Word, Excel, and PowerPoint Formats for my Office 2003 and I think I could open a DOCX file now but can't get this Wordpad application removed and changed to another application to open it, which I think would probably be Word or if someone has another suggestion.

    I can't get "Use Microsoft Word (default)" to appear as an Action option. Only Windows WordPad application, Media Center, Internet Explorer, iTunes, Media Player Classic, Nero, Windows Photo, Picasa, Windows Calendar and wWindow Media Player appear as choices. I don't know how to add Microsoft Word as a choice. Maybe the second part of the instructions in your reply "Adding download actions" would solve this but I don't understand the instruction starting with #1. I don't know how to go about doing what it says to do.
    I don't think it makes any difference, but I do have Office XP instead of 03 as I stated in my first question.

  • Change Default 'Open With'

    Folks,
    I changed something, but don't know what. I want ACR to open for RAW or JPEGs. I believe my prefs are set correctly in both ACR and Bridge. DblClk in Bridge should open ACR; it opens photoshop.  I've gone to Finder and a file Get Info > Open all files with Adobe Bridge. This isn't working. How can I change the Right Clik >Photoshop CS4 (Default) to either ACR or Bridge?
    Frustrated,
    Regards to all,
    Charles

    How do you use JPEGs? Seems to me the easiest way to make minor JPEG
    adjustmentisACR! Dclk > Adjust >Done.
    I don't make adjustments to jpegs
    Only work in Raw and save as PSD files. Those files can be resized and saved
    as jpeg to customers needs. Once you have saved a jpeg you should not make
    changes to them because that will cause loss of quality, you don't have that
    whit PSD or Tiff files.
    When you have good reasons to shoot in jpeg you should do so but the changes
    that you can make with them in ACR are very limited compared to use of Raw
    files.
    My importing from camera  continues to be a mixed bag. I shoot raw 90% and
    make JPGs via ACR (after importing) as I need them. It''s the copying to
    folder, subfolder, other drive, convert to DNG, Add meta data, Keyword...ALL
    on Import seems overwhelming; and it is. I just import to a folder and decide
    then, almost one by one.
    I use Adobe Photodownloader for that, in Bridge choose Get files from camera
    and explore the advanced setting, you can do a lot in one click.
    Thanks for the input on 'Open With'. I've been having some problems with
    Expression Media 2 and I've been trying different methods to get that right.
    One of the things I tried was to Repair Permissions in Disk Utility. I think,
    but I'm not certain, that that may have corrected the Open With situation.
    It is always good to use system maintenance every now and then
    Here's a question about Replying to this forum. How do you include the partial
    reply? Do you 'Copy & Paste' a selected text? For example, How did you add
    "Still can not change the 'Open With' etc., etc." comment in your reply?
    On the forum site you can do so when you use the reply button and then use
    the tool bar above to quote.  But I use my email application (Office for Mac
    2008) and simply select the text I want to quote and then choose reply.

  • Unwanted Firefox entry in the Open With Windows Explorer menu

    Open Windows Explorer and right-click various file types. You'll see there's a submenu called "Open with" that allows you to choose a particular application. Firefox is listed for numerous file types it can't actually handle, like RAR and MKV.
    Does anyone know why? I've never attempted to open those file types with Firefox, though I did download such files with Firefox. I can't find any bug reports about this, and the above seems like too little information to file a report.
    I'm not the only one with this issue:
    * http://forums.mozillazine.org/viewtopic.php?f=38&t=2870531

    After cleaning the registry manually, I haven't been able to trigger this.
    * I now have RAR under Options → Applications again after downloading a file of that type. The respective file type doesn't have Firefox under the "Open with" menu in Windows Explorer.
    * I set Firefox as the default browser when installing. Then I set Internet Explorer as the default using the Control Panel, then Firefox again when prompted at startup. Since it's one of the few times Firefox interacts with the registry, I thought it might trigger the issue — it didn't.
    Since I can't recreate this, I think we can consider it a rare occurrence and forget about it. Thank you all for replying.
    ''the-edmeister wrote:''
    There's something screwed up in Firefox 31 and 32 with regards to Firefox messing with Windows OS File Associations […]
    Being Sunday, I'm too lazy to search for the relevant Bug report.
    * [https://bugzilla.mozilla.org/show_bug.cgi?id=1049521 Bug 1049521] - Be less aggressive about non-primary file type associations in Firefox on Windows
    That's the bug report about Firefox inadvertently stealing the file association for PDFs. That didn't happen on my system. I also don't see how this could be related. The PDF association is set on install, and reinstalling Firefox didn't change the "Open with" list for the previously affected file types.
    Then again, the patch on bug 1049521 touches the ''OpenWithList'' registry keys, which is what I manually cleaned up. It also handles more than PDFs: I spotted media file types like OG? and WEBM, but not MKV or any of the previously affected file types on my system.
    ''FredMcD wrote:''
    Me thinks me smells a virus at work.
    The system is clean.

  • Need to reset the Open With application for finder folders

    So while making an Aperture Vault the app crashed and I got a corrupted vault on my drive which I could not delete. I was able to Get Info>Show Package Contents and delete some of the contents to make it take up less HD space. In the process of doing that to the vault, I accidentally changed the Open With option to Finder, and somehow the Change All button got clicked. So now ALL of my Aperture Vaults open with the Finder by default and appear as folders on my desktop. Folders do not have the "Open With" option, so now I can't change it back so that the Finder views the vaults as Aperture files, and not Finder folders.
    Anyone know how I can reset my "Open With" preferences?

    Can you right-click to "Get Info" on any file?
    The info window will allow you to change the "Open with" and "change all".
    I don't know the effect on File Vault on the option but if you can, try it.
    Deleting contents of an app bundle can create problems, unless you know exactly what you're deleting.
    -mj

  • Need to find a scripts for changing default "Open with" iTunes app to Quick

    Hello all...
    I'm new to scripting but need a script really quickly...
    I was wondering if anyone knew where I could find a script that will change the default "Open with" of audio files placed within a certain folder on my desktop...
    I'm making sound clips with WireTap and dumping them in a folder called WireTapExports as .mp3. I then need to play them without using iTunes (and importing them by default) but going into the "Get Info" and manualy changing the "Open With" settings for each file is taking ages...and it's very irratating...
    Is there a way I can make all audio file put in that folder automaticaly open with Quicktime instead.
    I know this is quite easy to most but I've only just started looking at Applescript (i.e. a few days ago) and but I need this to work now...
    Many thanks in advance...
    PigeonCake...

    Not what you want, but if you hold the control key while getting info it changes to summary info which then lets you change the preferred application on a batch of files in one go.

  • Safari was very slow in opening up Google sites.  I found a discussion thread that suggested changing the "Configure IPv6" setting to "Off" in the System Preferences, Network, Advanced, TCP/IP section.  That seems to work well.  Are there any risks?

    Safari was very slow in opening up Google sites.  I found a discussion thread that suggested changing the "Configure IPv6" setting to "Off" in the System Preferences, Network, Advanced, TCP/IP section.  That seems to work well.  Are there any risks to leaving the Configure IPv6 setting to Off?

    Nope. You can always reverse that if you choose.

  • I have set up my work Exchange email/calendar. After setting up I am getting passcode expired message and asking for changing the passcode with a 16   digit and 4 special characters. No combination of numberic, alphanumeric, special characters works. Help

    I have set up my work Exchange email/calendar. After setting up I am getting passcode expired message and asking for changing the passcode with a 16 +  digit and 4 special characters. No combination of numberic, alphanumeric, special characters is working. Help!!

    I have set up my work Exchange email/calendar. After setting up I am getting passcode expired message and asking for changing the passcode with a 16 +  digit and 4 special characters. No combination of numberic, alphanumeric, special characters is working. Help!!

  • In iTunes I'm having problems changing the "Media Kind" with a number of playlists in the OPTIONS menu from "music" to "audiobook". After going through the steps, the next time I check the items have reverted back to "music". What step am I missing?

    In iTunes I'm having problems changing the "Media Kind" in the OPTIONS menu from "Music" to "Audiobook". After going through the steps, the next time I check, the items have reverted back to "Music". What must I do to save it as an "Audiobook"?

    After more digging in the Support section here and some Google work, I turned off iTunes Match and lo and behold!  I can change the media kind to Audiobook!  So, it looks like iTunes Match locked the files up somehow and for some reason.
    I went into iTunes Store > iTunes Match > "No, Thanks" to disable it on the local PC.

  • When I load certain websites the the writing is all squashed up. I correct this by changing the character encoding setting. I am using the latest Apple Mac machine. Thanks in advance

    When I load certain websites the the writing is all squashed up. I correct this by changing the character encoding setting. I am using the latest Apple Mac machine. Thanks in advance

    Thanks for that information!
    I'm sure I will be calling AppleCare, but the problem is, they charge for the phone calls don't they? Because I don't have money to be spending to be on the phone with a support service.
    In other things, it seemed like the only time my MacBook was working was when I had Snow Leopard without the 10.6.8 update download that was supposed to be done to prepare for OS X Lion.
    When I look at the information of my HD it says that I have 10.6.8 but that was the install that it claimed to have failed and caused me to restart resulting in all of the repeated problems.
    Also, because my computer is currently down, and I've lost all files how would that effect the use of my iPhone? Because if it doesn't get fixed by the time OS 5 is released, how would I be able to upgrade?!

  • Another user has changed the row with primary key -Table changed externally

    Hello,
    I am facing the error: "Another user has changed the row with primary key oracle.jbo.Key[94 ]." during the delete operation.
    User case scenario:
    1. Added new row in the table.
    2. Once new row is added to the the table, another application will update few columns in the newly added row based on some logic.
    3. On the same session I am trying to delete the newly added row and getting above mentioned error.
    I have added a "Button" in the table to partialRefresh the table to check the new values of the changed columns.
    I have checked the forum and found many similar errors and tried the following but nothing helped.
    1. By setting "Auto Refresh = True" for the view object.
    Issue faced-> It worked fine but after few add and remove my db is getting to inconsistent state after which, I am not able to do any add/delete from my page.
    Error: "Too many objects match the primary key oracle.jbo.Key". I have checked this and I am not getting this error when "Auto Refresh = False" even after multiple add and remove actions.
    2. By Setting "Auto Refresh" the iterator associated with the page.
    Issue -> Did not work at all.
    Looking forward inputs from gurus.
    Thanks
    Abhijeet

    Finally I found one solution to this problem at: [ http://www.avromroyfaderman.com/2008/05/bring-back-the-hobgoblin-dealing-with-rowinconsistentexception/|http://www.avromroyfaderman.com/2008/05/bring-back-the-hobgoblin-dealing-with-rowinconsistentexception/]
    Simply overriding the lock() method in the entity object resolved issue. Kudos to the author.
    Code:
    public void lock() {
    try {
    super.lock();
    } catch (RowInconsistentException e) {
    refresh(REFRESH_WITH_DB_ONLY_IF_UNCHANGED | REFRESH_CONTAINEES);
    super.lock();
    But, Now my refresh button is not working as depend on the "Auto Refresh = True" to update the table.
    Can anyone tell me how can I refresh the VO of my table from the button.
    Thanks
    Abhijeet.
    P.S: I have already added the partial trigger but it is work not working as the data is cached in the VO. Removing the Cached property for the VO is creating other problems.

Maybe you are looking for