Photoshopversion for mac and windows when switching?

Hi,
I have used now the photoshop trial version for windows for windows for a while and would like to buy the full version. However I will switch to a mac in December or January and would really appreciate If I would be able to start out with photoshop already now on my windows pc so that I don't have to wait with purchasing photoshop until I have the mac.
If I buy a photoshop license, will I get a version for both platforms or how does it generally work if switching platforms? I am also using Lightroom 4 and when I bought this as box it came with both a mac and windows version but I noticed that for photoshop I have to choose in the store.
Would be nice if you could help me with this.
Thanks in advance and regards,
Tom

Lightroom is multi-platform. It is licensed for Mac and/or Windows and you can install it on both since you can activate it on up to 2 computers.
Traditionally licensed versions of Photoshop and other apps are single platform licenses: Mac only or Windows only but you also have up to 2 activations. Mac/Mac or Win/Win.
Creative Cloud versions of Adobe Suites and apps (e.g. Photoshop) are all multi-platform licenses: Mac and/or Windows - so you can activate them on Win/Win or Mac/Mac or Win/Mac. That may work best in your situation purely from a licensing perspective but you'll be locked in to a monthly fee.
You can cross-grade from Windows to Mac but that usually involves an upgrade at the same time (e.g. CS5.5 Windows to CS6 Mac). Check with Adobe Sales for further options.

Similar Messages

  • How do I convert my Windows 7 Folder to an ISO image to burn to a USB, in order to use Bootcamp Assistant to partition my MacBook Pro for Mac and Windows?

    How do I convert my Windows 7 Folder to an ISO image to burn to my  USB Flash drive (16GB)  in order to use Bootcamp Assistant to partition my MacBook Pro for Mac and Windows?

    Sorry - confusing - My question has NOT been solved yet - can anyone help?

  • I am interested in purchasing Adobe's Creative Suite 6 Master Collection for Mac and Windows (Single User Educational License) FOR STUDENTS & EDUCATORS ONLY.

         I am interested in purchasing Adobe's Creative Suite 6 Master Collection for Mac and Windows (Single User Educational License) FOR STUDENTS & EDUCATORS ONLY. I am purchasing this program for my son who attends George Washington High School: The College Academy in New York, New York. He is a sophomore and is interested in web design. I would like to know if he is eligible to use/activate the Creative Suite 6 Master Collection for Mac and Windows (Single User Educational License) FOR STUDENTS & EDUCATORS ONLY prior to my purchase.

    Peru Bob makes a good point.  I just assumed the OP understood what the System requirements | Adobe Creative Suite 6 were.
    Nancy O.

  • Need FireFox installations from version 3 till present for MAC and Windows

    Good day!
    I am working for a Software Testing Company, and I need installations for FireFox from Version 3 to present. for Mac and Windows. Is there any way I can get these installations, Cant seem to find them on website.
    It will be very much appreciated if you can help.
    Thank you
    Reinhart Buit
    [email protected]

    ftp://ftp.mozilla.org/pub/firefox/releases/

  • Adobe Lightroom 4 for Mac and Windows, can I install the same license on both systems or only 1?

    I just purchased 1 full license of Adobe Lightroom 4 and I can see there's an installer for Mac and Windows.
    does it mean I can install on both systems or my license is only valid for 1?
    Thank you
    BR,
    Lucia

    Yes, LR is cross-platform and you can install it on both systems.
    Mylenium

  • How do I extract 1 page of a pdf file? How do I send that as a original for mac and windows users?

    How do I extract 1 page of a pdf file? How do I send that as a original for mac and windows users?

    This is not really a Numbers question.  I will provide an answer but suggest you make the question relavent for the forum where you post.
    1) Open the PDF in Preview
    2) select the menu item "View > Thumbnails"
    3) select the page you wnt to share
    4) copy (by using the key combination <command> + c OR select the menu item "Edit > Copy"
    5) select the menu item "File >  New From Clipboard"
    6) save as a new name
    7) share the new file

  • Formatting for mac and windows

    Is it possible to have mi iPod formatted for both mac and windows? If so, how can I do it?
    Thanks

    Now you can be 100% sure, StarDeb!
    As another of the old windows guys, I had the same question when I made the change. Windows format works just swimmingly with Macintosh computers. Can't say the same for the other way around.
    In fact, the iPod I had at the time, a 15 GB 3G (the one with the red buttons, and still the best looking of the lot), is still formatted for windows even though I have not had a Windows computer for several years now.
    So enjoy the Powerbook (just bought a new to me G4 iBook, myself) without fear that the iPod will be a stumbling iBlock.

  • I purchased the Lightroom disc and it says it is good for Mac and Windows I can not download it on my Mac

    I have bought the Lightroom Disc it says it is good for Mac or Windows I have an iMac and it does not download WHY PLEASE HELP NO ONE SEEMS TO BE ABLE TO HELP ME I KEEP TRYING YOU PEOPLE AND NO ONE HELPS ME!!!!!!

    Lukcydo I am sorry you are facing difficulties installing Photoshop Lightroom.  Do you receive any specific error messages when you try to install?  What version of Photoshop Lightroom did you purchase?

  • How to use an external hard drive and copy files to the disk for mac and windows??

    please tell me how to copy files to external hard disk and use it for both mac and windows. there is the fat32 formatting bt i dont wanna use formatting because i already have a lot of content on the exteral hard disk. thank you.

    It is simplest to have the HDD formatted to noe common to both Mac an PC.  ExFAT is one.  But to do that will erase all data on the HDD.
    If the HDD id formatted NTFS, Mac can read but not write to it.  The solution then is to use a third party application such as Paragon or Tuxera which will overcome that obstacle.  These applications do have mixed reviews.
    Ciao.

  • Cd-rom for Mac and Windows

    Hi there,
    I want to make an hybrid cd-rom for both, Mac and Windows, and I am using the fscommand code in the first frame of my actions:
    fscommand("fullscreen","false"); // returns the player to normal menu view.
    fscommand("allowscale","false"); //sets the player so that the SWF file is always drawn at its original size and never scaled.
    I want both commands with their properties, however the displayState property is new to me. Please, Could you help me to do the same with this?.
    Of course all in AS3.
    I also have a code for a button that closes the .app of the .exe:
    function cerrar(e:MouseEvent):void {
    fscommand("quit");
    cerrar_btn.addEventListener(MouseEvent.CLICK, cerrar);
    Thanks in advance.

    The stage displayState and scale properties are like so:
    // fullscreen
    stage.displayState = StageDisplayState.FULL_SCREEN;
    // fullscreen with keyboard active
    stage.displayState = StageDisplayState.FULL_SCREEN_INTERACTIVE;
    // non-fullscreen
    stage.displayState = StageDisplayState.NORMAL;
    Note that changing the displayState is usually done after the first frame is rendered so adding in a listener for that before changing it is a good idea. The scale and align don't require this.
    e.g.
    addEventListener(Event.ENTER_FRAME, _onEF);
    function _onEF(e:Event):void
         // frame has rendered, remove listener
         removeEventListener(Event.ENTER_FRAME, _onEF);
         // change display state
         stage.displayStage = StageDisplayState.FULL_SCREEN;
    Speaking of align, if you use NO_SCALE and expect to resize, you'll probably want to anchor the resizing from the upper left, like so:
    // top left registration
    stage.align = StageAlign.TOP_LEFT;
    Otherwise upon resize the upper left pixel will actually go into negative numbers.
    Scaling is:
    // no scale
    stage.scaleMode = StageScaleMode.NO_SCALE;
    // scale to fit exactly (aspect not maintained)
    stage.scaleMode = StageScaleMode.EXACT_FIT;
    // scale but maintain aspect:
    stage.scaleMode = StageScaleMode.NO_BORDER;
    Exiting a projector, still the same..
    import flash.system.fscommand;
    cerrar_btn.addEventListener(MouseEvent.CLICK, cerrar);
    function cerrar(e:MouseEvent):void
         fscommand("quit");

  • Mini DV Video - Storage for Mac and Windows

    I have about 16 hours of miniDv video that I have imported through iMovie and is now saved on an External HD connected to my Time Capsule. I have a Windows machine wirelessly connected and I would like to be able to access these files. I do not seem to be able to open the saved files. Any thoughts on either how I could make this content readable by both Mac and Windows?

    To read it in iMovie on Mac, your drive must be formatted as Mac OS Etended (journaled).
    For Windows, you drive can be formatted FAT32 (readable and writable by Mac (but not by iMovie)) or
    you can format as NTFS, which is read only by Mac.
    Your best bet is to format a different drive as FAT32 and copy these files to it.

  • I w system from OSX 10.5.8 to at least 10.6.  Also my hard drive is partitioned for Mac and Windows (which I would like to remove).  How should I upgrade?

    I want to buy an Iphone 5 but need to upgrade my operating system from OSX 10.5.8 to at least 10.6.0.  Also my hard drive is partitioned with Mac and Windows.  How can I upgrade?

    1. Click here and buy a Mac OS X 10.6 DVD.
    2. Use the Boot Camp Assistant in the /Applications/Utilities/ folder to return the drive to a single partition setup.
    (83003)

  • Formatting external hard drive for MAC and Windows

    I have an external hard drive that I would like to make compatible with BOTH Mac and Windows. I don't want to split it but is there any way that I can make it compatible to where I can use it back and forth between both? I have classes and use Photoshop on both systems and need to be able to read and write to the hard drive from each system. Please let me know if this is possible and how? Thanks

    I have a 500GB external HDD which I had to format o Fat32 a while ago. I don't remember exactly how I did it, but I remember it was a pain in the *** and took forever (I was under Windows XP).
    So short answer to your question is yes. It is possible and as the above person said, you need to format to Fat32. Long answer is it will take some time and effort. Here are a few links to help you get started:
    http://www.ridgecrop.demon.co.uk/index.htm?fat32format.htm
    http://macosx.com/forums/mac-os-x-system-mac-software/270038-format-new-hard-dis k-into-fat32.html
    http://en.kioskea.net/faq/sujet-676-formatting-your-drive-with-fat32
    I haven't tried any of these (I believe I formatted mine downloading a third party app), but you might be lucky. Good luck.

  • Do i have to have separate membership for mac and windows

    Do I have to have a sepearte membership for creative cloud for mac and windows

    No. CC is cross-platform and you have 2 activations.
    Mylenium

  • Seamlessly switching between iTunes for Mac and Windows

    The path on a Windows machine to my iTunes is something like N:\My Music, where N is mapped as a network drive. On a Mac, that same Drive N is mapped as “fireserver” on the server machine. So on iTunes for the Mac, it would have to be //servername/fireserver/My Music or something along those lines.
    Here’s the problem. The iTunes Library.itl and iTunes Music Library.xml are the files in Windows that store the information regarding which iTunes music is there, as well as the playlists and their contents. Therefore, if I move from one machine to another, as long as each has the server’s drive mapped as N, I can copy those two files from one machine to the other and it serves two purposes. First, it is a backup of sorts of my iTunes library. Second, I don’t have to update the information on two computers but rather one, and then copy the files to have an identical library, including playlists.
    I would like to sync my iPhone and iPod(s) with my Mac, but I have a Windows machine, and need to continue to use that Windows machine to do other things with iTunes, such as port music to the backyard of my house. I don’t know how to keep the two iTunes libraries in sync since the xml and itl files refer to files and folders within N:\My Music. Even if I laboriously edited those files and did a global replace, that would be a one shot deal, and thereafter, I would have to update on the Windows side and on the Mac side.
    So here is the question. Is there a way that I can set up my Mac so that when I refer to N: it knows that I mean //servername/fireserver (I’m not sure if I have the syntax right, but I think I’m getting my point across)? In this way, the files would point to N:\whatever and the computer would know that I mean //servername/fireserver/whatever.
    This would solve a major problem for me.
    Thanks in advance!

    I have been really surprised by the lack of responses to this post. I'm thinking, this is such a typical thing that people would want to do - sharing their music with friends and family - I can't be the first to have the problem. Plus, I've always received such quick, expert advice on this forum to other questions since buying my Mac a couple of months ago.
    But now I'm wondering whether there is something else going on that precludes the resident experts from answering. Is sharing music as I've described illegal? Maybe that's why everybody's keeping quiet, i.e., if you tell me how to share my songs with a friend then you're assisting in copyright infringement.
    I didn't think it was illegal to share music with a friend in this way, as long as the songs you've downloaded from iTunes aren't shared on more than four devices or whatever. If it is illegal I'd sure like to know. That would also explain the radio silence.
    Thanks.

Maybe you are looking for

  • How do I move  Windows XP from an older Mac to a newer Mac

    I have Windows XP installed on a Bootcamp partition on an older MacBook. I just purchased a new Alum-MacBook and want to move the Windows XP I own to the new computer. How do I do this? Do you deactivate on the older computer before you install on th

  • IDOC Message type for FB01 transaction.

    Hi, I am going to get a file which I will pass through PI (XI) and bring into IDOC and post into SAP ECC 6.0. I just wanted to know which IDOC message type / basic type I should use for posting an FI document i.e. FB01 transaction. Rgds

  • IPhoto stops importing pictures

    I don't know why iPhoto always does this to me. Whenever I try to import pictures from a folder on my desktop into iPhoto, it'll show that the pictures are being imported in there. However, whenever we get down the the last three pictures, it freezes

  • Organizer crashes immediately upon launch?

    I was having this problem and decided to reinstall Adobe Photoshop 11 but the problem continues. It gives an error in "C:\Documents..\Admini..\Locals..1\Temp\b627_appcompat.txt" Kno of any solutions?

  • Call OpenOffice through OLE Automation

    Hello everybody, I am trying to open an OpenOffice Calc window (similar to Excel) from ABAP through OLE automation. My problem with this: it is necessary to call an automation method of OpenOffice that has a SAFEARRAY (OLE data type) as one of its pa