Is 10.7 compatible with old photoshop

10.7 seems to have disabled my old version of photshop.  What can I do?

Only if your version of Photoshop is NOT a PPC-only version. It must be an Intel-only or Universal Binary version to work with Lion. Also, see:
The Lion Compatibility Site.

Similar Messages

  • Is mountain lion compatible with old (2004) version of microsoft office for MAc?

    I have heard that Mountain Lion is not compatible with old (2004) version of microsoft office for MAc. Is that true?

    Kurt Lang wrote:
    ... unless, like me, you open up an uber-important Excel 2004 file in Excel 2011 and get the following dialog box which leads to a trashed Chart, which I need access to EVERY WEEK:
    Can't say I've ever seen such error messages, and I've opened lots of files created back in OS 8. Also many more much older than that from Windows 95 and even MS-DOS.
    Lucky for you; unlucky for me that an important Excel 2004 Chart gets corrupted when opened in Excel 2011! 
    I suspect the problem is in the conversion routine that Microsoft added to Office 2011 to update Excel 2004 files.  How conversant are you historically with converting Excel 2004 files that contain charts to Excel 2011?  Because your experience with OS 8, Windows 95 and even MS-DOS has no relevance on this issue.
    Kurt Lang wrote:
    You will notice, Kurt, that I based my advice to the OP as "if you are unable or unwilling to upgrade to Microsoft Office 2011..."
    Yes, I saw it. But if everyone did what you would expect with your statement, no one would suggest upgrading to Office 2011. Besides, you're the one who stated "unable or unwilling", not the OP.
    Are you always this argumentative, or is this my lucky day?
    Many people suggest upgrading to Office 2011. I do it frequently in my other "workarounds" type of answers to the Rosetta in Lion/Mountain problem.  I chose not to offer that solution here, and as I expected, someone else, namely you, did!
    The problem was that you finished your suggestion with this comment: "Particularly when it isn't really necessary."  Since this statement was not true in my case (it IS necessary for me to continue to use my important Excel 2004 file as well as some other historical files I have; and conceivably could be important to the OP), I posted the correction.
    You also made the suggestion that: "...the cost of VM software isn't that much less than just upgrading to Office 2011." While certainly true in the vacuum of the OP asking specifically about Word 2004; when the OP becomes aware that his complete library of PPC applications will fail in Mountain Lion, your suggestion about the relative cost to upgrade may no longer be as relevant.
    Lastly: Yes, I commonly state to similar OP's that if they are "unable" (because, for example, they may also have conversion problems with Office 2011, Appleworks 6, Freehand or other programs) or "unwilling" (perhaps they just cannot afford to upgrade all of their PPC apps at this time), that here is an alternative that will keep the status quo available to them, and buy them some more time to consider their options while continuing to use Lion/Mountain Lion and their PowerPC apps.
    Is the relevance of my post to the OP's problem (and your reply to my solution) sufficiently clear for you now?

  • Is Mac OS X version 10.6.8 compatible with Adobe Photoshop CS 6 ?

    I'd like to know if Adobe Photoshop CS 6 is compatible with Mac version 10.6.8 (processor: 2.4 GHz Intel Core 2 duo, memory: 4GB 667MHz DDR 2 SDRAM) ?
    Hardware Overview:
      Model Name:          MacBook
      Model Identifier:          MacBook4,1
      Processor Name:          Intel Core 2 Duo
      Processor Speed:          2.4 GHz
      Number Of Processors:          1
      Total Number Of Cores:          2
      L2 Cache:          3 MB
      Memory:          4 GB
      Bus Speed:          800 MHz
      Boot ROM Version:          MB41.00C1.B00
      SMC Version (system):          1.31f1

    Please refer following link for more details.
    http://helpx.adobe.com/x-productkb/policy-pricing/system-requirements-photoshop.html#main_ Photoshop_CS6_system_requirements
    Regards,
    Ashutosh

  • Is there a version of classic environment that is compatible with adobe photoshop elements version 1.0 ?

    Is there a version of Classic environment that is compatible with my Adobe Photoshop Elements 1.0 for my macbook 10.5.8 ?

    System requirements for Photoshop Elements 1.0
    Macintosh:
    PowerPC
    OS 8.6, 9.0, 9.0.4, or 9.1
    64 MB RAM (with virtual memory on)
    150 MB hard disk space
    Color monitor with 256-color (8-bit) or greater video card
    800 x 600 or greater monitor resolution
    CD-ROM drive

  • Problem making modified WCF web service operation compatible with old client

    Hi,
    I am trying to make a modified version of a a WCF web service work with old clients. The method signature looks like:
    [OperationContract]       
    itemList GetItemList(getItemList param);
    I am adding elements to the "getItemList" class which should be optional. The class is generated from XSD schema with xsd.exe (this means we are using schema-first design). The new element is:
    <element name="itemOwner" type="string" maxOccurs="1" minOccurs="0">      </element>
    and the new generated code in the getItemList class becomes:
    private string itemOwnerField;       
    public string itemOwner
    get {return this.itemOwnerField;}
    set {this.itemOwnerField = value; }
    When I look at the new WSDL it has:
    <xs:element name="itemOwnerField" nillable="true" type="xs:string"/>
    Now I was expecting the old client to still be able to call the new client, since the new field is nillable. The client has a service reference to the old version of the web service so it uses a C# stub. When the old client tries to invoke the new service,
    I get error:
    The formatter threw an exception while trying to deserialize the message: There was an error while trying to deserialize parameter http://tempuri.org/:param. The InnerException message was 'Error in line 1 position 754. 'Element' 'itemIDField' from namespace
    'http://schemas.datacontract.org/2004/07/ServerBaseAPI' is not expected. Expecting element 'itemOwnerField'.'.  Please see InnerException for more details.
    My interpretation is that the server side of the new service cannot deserialize the incoming message since it expects it to contain itemOwnerField. Why it that, when it is nillable according to the WSDL? What can I do to solve or work around the problem?

    Hi gaor.mawell,
    The nillable attribute is a special attribute in the XML Schema instance namespace that provides an interoperable way to explicitly represent a null value. The receiving end can interpret these as
    null, zero, and null, respectively. There is no guarantee that a third-party deserializer can make the correct interpretation, which is why this pattern is not recommended. The
    DataContractSerializer class always selects the correct interpretation for missing values. So have you tried to use the DataMember's
    IsRequired property? this
    DataMember's
    IsRequired property tells the serialization engine whether the value of itemOwnerField must be presented in the underlying XML.
    For more information, please try to refer to the this artcle:
    https://msdn.microsoft.com/en-us/library/aa347792(v=vs.110).aspx .
    Best Regards,
    Amy Peng
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • Do not compatible with old verzion. OSX 5,6,7 ?

    apple as I do in the future. I have it every three years to buy all new equipment? imac iphone ipad ibook = € 5,000. just because the numbers is not backward compatible

    Numbers 3 is not compatible with OS X v10.8 or earlier. The iOS version requires iOS 7.
    IF you NEED to use Numbers 3 on both platforms, you will need to install OS X, v10.9 on the Macs and iOS v7 on the iOS devices.
    Your iBook will need to be replaced, or restricted to tasks not requiring Numbers 3, as OS X v10.8 and later requires Macs using intel processors (iBooks have Motorola/IBM G4 or G3 processors).
    If your iMac is an intel based model, there will be a cost to move from OS X v10.7 or earlier, but no cost to move from OS X v10.8 to v10.9. The computer itself will probably not require being replaced at this time. If it is a PPC/G4 or G5 model, it is in the same category as the iBook.
    iOS platform answers may be similar.
    But you may decide you do not NEED to change from Numbers 2 (Numbers '09) to Numbers 3 or from the first version of Numbers for iOS to the current version. "Just because the numbers is not backwards compatible" could be a strong factor in your decision regarding the NEED to adopt it. It could well be the strongest consideration.
    Before you make the decision, consider your needs, AND read the conversations in this and other forums, starting with these two threads:
    What has been lost in Numbers 3.0 upgrade
    What has been gained in Numbers 3.0 upgrade
    Plus these:
    Apple's current plans for reinstating Numbers features
    User workarounds for missing features
    Regards,
    Barry

  • Burning CD's compatible with old Windows 98

    I have discovered an issue when burning html files to CD. When inserted in a Windows 98 machine, the html files are readable, but formatted incorrectly. Have tried burning from both my iMac and Macbook both running 10.5.5 with same results. If the same files are attached to an email and then read on the Windows computer, the html format is correct, so it must have something to do with the CD burning process. I need the compatibility with old computers as many recipients are using old hardware. Any suggestions?

    okay, folks with the 2380s on 64-bit versions of Windows (it can hit both XP and Vista) generally get relief from the 2380s by reinstalling the 64-bit versions of the GEAR drivers that iTunes uses for importing and burning.
    here's a link through to the GEAR drivers:
    GEAR drivers
    note that there are two different versions of the 64-bit GEAR drivers. be sure to get the one that matches your hardware.

  • Is OS 10.4.7 compatible with both Photoshop 5 and 6 ?

    I simply cannot afford Photoshop 7, and as a recent defector from a PC and windows 98 need to know for sure if 6 or even 5 will be o.k.
    Primarily I need photoshop to correct converging verticals/perspective control - as it seems to be the only Mac program with this facility.

    PS 5 and 6 will only run in OS X via the Classic environment, which if you have PowerPC based Mac, you should be fine. But if you buy an Intel based Mac, you won't be able to run it as Classic does not run on Intel based Macs.
    "I simply cannot afford Photoshop 7,"
    You realize that PS 7 is about 4 years old, and version 9 is the latest available. So if you do indeed want PS 7, you could probably find it cheap.

  • New AirPort Extreme backwards compatible with old Mac?

    I have an old airport express from around 2004 and I made the mistake of upgrading directly from snow leopard to mountain lion. Subsequently I have been living with having to re enter my long WEP key every time I turn on my computer because of an incompatibility issue between the airport and my 2010 iMac. I want to get an AirPort Extreme to end this issue as well as increase the distance my computer and other wifi devices can be away from the base station.
    The problem is that my parents have what i believe to be a 2006 intel iMac. I know the utility software for a new airport won't run on their old iMac. That's fine because I can run it on mine.
    My question is, would my parent's old iMac have issues connecting to a  network running on a new AirPort Extreme?
    Thanks!

    No, there would be no issues as WiFi is a standard.

  • Is Lion compatible with Adobe Photoshop CS5?

    I am waiting to upgrade to Lion since I use Adobe Photoshop CS5 to edit my photos everyday. Has anyone upgraded and found that Photoshop CS5 has any issues with Lion?

    Hi, I've found an KB article from Adobe that lists known issues with Adobe products on Mac OS 10.7 Lion.
    http://kb2.adobe.com/cps/905/cpsid_90508.html
    I use Mac OS X 10.6.8 and Adobe CS5.
    -[myimagination]-

  • Ready to install Snow Leopard 10.6.3 version. Will it be compatible with Adobe Photoshop CS 8 version? Should I install Rosetta?

    Hello,
    I have the Snow Leopard 10.6.3 disc and want to install onto my Mac OSX Tiger. But before doing install, really would like some information as to whether I will be able to still use my older Adobe Photoshop CS on SL. I have read a few discussions here, and noticed someone suggesting to install Rosetta. Will this be necessary?
    Help appreciative.

    Well, the install or rather no install was a disaster!
    Going the Over Tiger without erase/install resulted in a nightmare scenario. When I put the Snow Leopard 10.6.3 disc in, it started and began installation up to about three minutes and than stopped... The Installer Failed. Mac OS X could not be installed on your computer... click restart to restart your computer and try installing again.
    When I clicked restart, it tried to reinstall but I wanted to just return to my tiger disc. Somehow something happened that caused the computer to suddenly just shut down and left my Snow Leopard disc in my drive. So, looking at a black screen, I attempted to restart but it kept shutting down never going beyond the white screen. Then I tried to remove the disc, but nothing happened until I figured out to hold down the eject key while pressing the power button on the back and than releasing. Anyway, the disc ejected. So than I had to reinstall my actual startup discs, do a disk utility and sure enough I had a hard drive error.
    Anyway, after two hours of reinstalling my Tiger operating system 10.4 I'm now looking at a very clean system. Now not sure what to do next regarding attempt with Snow Leopard.
    I noticed that once I did some software updates what was 232 free space is now down to 216.75 GB. Is this enough free space to install SL?
    Really feeling defeated. Scared about trying another attempt. Have my external still unplugged plus printer stuff.
    If I start again, what exactly should I do to prevent another disaster. When I install SL should I do another disk utility to check for any errors on the SL disc?

  • Is Siri in iOS 6 compatible with old BMW bluetooth?

    I just bought the iphone 5 and I have a 2003 BMW 540 with bluetooth.  It seems that when I activate Siri, using the home button on the phone, while the phone is connected to the bluetooth Siri hears me through the bluetooth mic, but Siri's answers do not come over the car speakers.  In essence, it is useless since I cannot hear the answers (the phone speaker is deactivated since it connected to the BMW bluetooth) and I do not want to take my eyes off the road to read the answers on the phone's screen.  I can only think it is a bug in iOS 6 since Siri only hears me through the bluetooth mic and not from the phone's mic.
    Thanks in avance for your help.

    gul540 wrote:
    I can only think it is a bug in iOS 6 since Siri only hears me through the bluetooth mic and not from the phone's mic.
    That's right, it's a bug.  Anytime iOS6 doesn't work the way we think it should, it's obviously a bug in iOS. 
    First off, your BMW is very old, so the Bluetooth profiles it uses might be out of date. Have you checked with your dealer for an update? 
    One thing you could try:  On my Lincoln, my iPhone 4S connects using two profiles, one for the phone, and the other for streaming music and Siri.  The Phone connects automatically, but the music stream does not.  Try changing your stereo "input source" to Bluetooth Streaming or equivalent.  When I did this with my 2012 Lincoln, all the Siri commands and responses went through the car speakers.
    See here:
    http://support.apple.com/kb/ht1664

  • Desktop 6.2.2 compatible with old Clie??

    If I install Desktop 6.2.2 over 4.0.1 will my old Clie PEG-SJ30 still sync the Calendar and Contact list to the computer?  I want to keep at least one Clie active as a seperate user from the Treo 700P i will be using.
    Post relates to: Treo 700p (Alltel)
    This question was solved.
    View Solution.

    It's not supported, unless you are using Vista there is no reason to install 6.2.2
    Post relates to: None

  • Are new MyBooks still compatible with old G5s?

    Hi,
    I've just filled up my MyBook and I want to add another one so I can continue to regualary back up my data, but I'm worried MyBooks have moved on while I'm still using my 1.8 Ghz PowerPC G5 (OS 10.5.8).
    If I buy a shiny new MyBook and daisychain (?) it to my existing MyBook, will it work?
    Sorry to be a ditz. I used to have a boyfriend who did this stuff for me. Should have listened and learned while I had the chance. My bad.

    Hello Jesus S., and a warm welcome to the forums!
    It can be hard to sometimes find where to start a New Topic, so here's the link for 10.5 installing...
    http://discussions.apple.com/post!default.jspa?forumID=1219
    The problem is, if there's Categories showing, you must drill down to a single one before you get the :Post New Topic Link"!
    Yeah, it can be confusing as to where to find the Post New Topic button on this forum.
    The reason it's hard to find that Post New Topic link, is because if there are any categories at the top, you must choose one first, like...
    http://discussions.apple.com/category.jspa?categoryID=177
    But say chose the Using Mac OS X Tiger and you get...
    http://discussions.apple.com/forum.jspa?forumID=758&start=0
    Clicking the Post New Topic link gets you here...
    http://discussions.apple.com/post!default.jspa?forumID=758
    that even holds crazy ones like iCal that have but one Category... iCal!
    http://discussions.apple.com/category.jspa?categoryID=166

  • Canon 450D CR2 Files compatible with Photoshop Elements 7?

    I have recently bought a Canon 450D camera and have noticed that the RAW CR2 images produced are not compatible with my Photoshop CS2 version. I'm not sure about upgrading to the latest version of Photoshop since I probably wouldn't use all the features but I would probably upgrade to Elements 7. Is Elements 7 completely compatible with my Canon CR2 files and has anyone else used this combination and been impressed with the results?
    Thanks.

    The 450D came out after CS2 was obsolete so you need at least CS3 to read 450D RAW files.
    Elements 7, being the current version, would support the 450D RAW files; however, I use CS4 and LR2 with my RAW files so cannot say how good PSE is or isn't.
    The other option is to convert the RAW files to DNG with the latest free DNG Converter and then use CS2 with the DNGs.
    If you have a dual or quad-core system with at least 2GB of memory, I'd suggest using Lightroom.

Maybe you are looking for

  • Fonts do not display after update

    I just updated with the most recent release of Lion and now certain fonts do not show up on web sites and in some applications, including Apple's own iCal!  Can someone help!!

  • My fonts are all over the place, how do I get them back?

    Recently some of pages I view in Firefox have the text scattered all over the place and makes them impossible to understand. How do I get them back to normal? I am using a 2 x 2.8Ghz Quad Core Intel Xeon Mac, 12GB RAM running OSX 10.9.5 and Firefox 3

  • Im stuck on iOS 7.1 Beta 2

    I'm stuck on IOS 7.1 Beta 2 I cant restore because Find my iPhone is activated on it and Apple has stopped signing IOS7.1 BETA 2 and my itouch is stuck on the activate screen. Any suggestions? Thanks itouch 5 G Ios 7.1 beta 2

  • How to unmerge iphoto libraries?

    i accidentally merged two different user's iPhoto libraries on my mac. How do i spereate them so that one users photos only stay on their iPhoto account?

  • Landscape of sap

    hi all can any one pls explain me about landscape of sap thanks in advance