I bought the 9.99 per month subscription to LR Mobile.  There was a special running that included Photoshop with this subscription.  How do I download and register Photoshop?

I bought the 9.99 per month subscription to LR Mobile.  There was a special running that included Photoshop with this subscription.  How do I download and register Photoshop?

If you have the PS+LR bundle, then you should install the Creative Cloud app, first.   One CC is installed, it’ll show all your eligible products on its Apps list, with Install buttons next to the apps you’re licensed to use, and Trial or Try next to the apps you’re not licensed to use.
The CC app is the first thing on the Adobe Products page.  It is a desktop app, not tablet app. 
https://www.adobe.com/downloads.html

Similar Messages

  • How do I download and install photoshop if I already bought the installation disk?

    Hi, so I ordered a MacBook pro with retina display from best buy and I also bought photoshop so that I could install it to my computer but I didn't realize this MacBook doesn't have a CD drive. I don't know what to do since the photoshop installation is with a disk. Is there a way I can download and install online by using the info given to me from the disk?
    Thanks

    Downloadable installation files available:
    Suites and Programs:  CC 2014 | CC | CS6 | CS5.5 | CS5 | CS4, CS4 Web Standard | CS3
    Acrobat:  XI, X | 9,8 | 9 standard
    Premiere Elements:  13 | 12 | 11, 10 | 9, 8, 7 win | 8 mac | 7 mac
    Photoshop Elements:  13 |12 | 11, 10 | 9,8,7 win | 8 mac | 7 mac
    Lightroom:  5.7.1| 5 | 4 | 3
    Captivate:  8 | 7 | 6 | 5.5, 5
    Contribute:  CS5 | CS4, CS3
    Download and installation help for Adobe links
    Download and installation help for Prodesigntools links are listed on most linked pages.  They are critical; especially steps 1, 2 and 3.  If you click a link that does not have those steps listed, open a second window using the Lightroom 3 link to see those 'Important Instructions'.

  • I just bought the 9.99 per month plan which said it included photoshop.

    now all i can download is lightroom

    You mean the Photography plan?  If so, it contains Photoshop and Lightroom.
    What happens when you try to download Photoshop?

  • If I purchase PS for the $9.99 per month plan, will I be able to install / use on more than 1 computer?  (i.e. office and home)

    If I purchase PS for the $9.99 per month plan, will I be able to install / use on more than 1 computer?  (i.e. office and home)

    Yes, the subscription license allows for working installations on two machines.

  • How can i change my membership? I pay now 19,99€ each month, but i want to switch to the 12,29€ per month.

    Hi,
    I am a teacher and i bought the membership for 19,99€, last september. Now there is a new offer of 12,29€ per month. Can i switch and how do i do that?
    Ann

    hello Rajshree,
    i cancelled my current mebership and bought the new one at a lower cost. thx fot your support!
    regards,
    Ann
    Verzonden met Windows Mail
    Van: Rajshree
    Verzonden: donderdag 26 juni 2014 12:01
    Aan: Ann Cleuren
    how can i change my membership? I pay now 19,99€ each month, but i want to switch to the 12,29€ per month.
    created by Rajshree in Adobe Creative Cloud - View the full discussion 
    Yes, you can buy the new one now.
    Regards
    Rajshree
    Please note that the Adobe Forums do not accept email attachments. If you want to embed a screen image in your message please visit the thread in the forum to embed the image at https://forums.adobe.com/message/6498799#6498799
    Replies to this message go to everyone subscribed to this thread, not directly to the person who posted the message. To post a reply, either reply to this email or visit the message page:
    To unsubscribe from this thread, please visit the message page at . In the Actions box on the right, click the Stop Email Notifications link.
    Start a new discussion in Adobe Creative Cloud by email or at Adobe Community
    For more information about maintaining your forum email notifications please go to http://forums.adobe.com/thread/416458?tstart=0.

  • If I buy the Rs. 499 per month option, am i eligible to use the phone gap features up to 1 GB?

    If I buy the Rs. 499 per month option, am i eligible to use the phone gap features up to 1 GB?

    What are "phone gap" features?
    Cloud Plans https://creative.adobe.com/plans
    -Special Photography Plan includes Photoshop & Lightroom & Bridge & Mobile Lightroom
    -Special Photography Plan includes 2Gig of Cloud storage (not the 20Gig of the full plan)
    -http://helpx.adobe.com/creative-cloud/faq/mobileapps.html
    -http://helpx.adobe.com/photoshop/kb/differences-photoshop-creative-cloud-photography.html
    -and subscription terms http://www.adobe.com/misc/subscription_terms.html
    -what is in the entire Cloud http://www.adobe.com/creativecloud/catalog/desktop.html
    -http://www.adobe.com/products/catalog/mobile._sl_id-contentfilter_sl_catalog_sl_mobiledevi ces.html

  • How to find out the Transactions used per month & the USER who used that

    Hi,
    1)How to find out the Transactions used per month & the USER who used that?
    2)and can i get the above same for minimum 20 month?
    System : SAP- Enterprise Core Component.

    You can use my program...
    *& Report  Z_ABAP_TCODE_MONITOR
    *****&  Program Type          : Report                                 *
    *****&  Title                 : Z_ABAP_TCODE_MONITOR                   *
    *****&  Transaction code      : ZTCODE_USAGE                           *
    *****&  Developer name        : Shailendra Kolakaluri                  *
    *****&  Deveopment start date : 26 th Dec 2011                         *
    *****&  Development Package   : ZDEV                                   *
    *****&  Transport No          : DEVK906086                                       *
    *****&  Program Description   : This program is to display
    *List all tcodes executed during previous day.
    *& Show the number of users executing tcodes
    *& Modification history
    REPORT  Z_ABAP_TCODE_MONITOR.
    *& List all tcodes executed during previous day.
    *& Show the number of users executing tcodes
    TYPE-POOLS : slis.
    DATA: ind TYPE i,
          fcat TYPE slis_t_fieldcat_alv WITH HEADER LINE,
          layout TYPE slis_layout_alv,
          variant TYPE disvariant,
          events  TYPE slis_t_event WITH HEADER LINE,
          heading TYPE slis_t_listheader WITH HEADER LINE.
    *REPORT  z_report_usage.
    TYPES: BEGIN OF zusertcode,
      date   TYPE swncdatum,
      user   TYPE swncuname,
      mandt     TYPE swncmandt,
      tcode     TYPE swnctcode,
      report TYPE swncreportname,
      count     TYPE swncshcnt,
    END OF zusertcode.
    *data   : date type n.
    DATA: t_usertcode  TYPE swnc_t_aggusertcode,
          wa_usertcode TYPE swncaggusertcode,
          wa           TYPE zusertcode,
          t_ut         TYPE STANDARD TABLE OF zusertcode,
          wa_result    TYPE zusertcode,
          t_result     TYPE STANDARD TABLE OF zusertcode.
    PARAMETER: month TYPE dats DEFAULT sy-datum.
    *PARAMETER: date TYPE dats.
    *select-options : username for wa_usertcode-account.
    START-OF-SELECTION.
    PERFORM get_data.
    PERFORM get_fieldcatalog.
      PERFORM set_layout.
    PERFORM get_event.
    PERFORM get_comment.
      PERFORM display_data.
    FORM get_data .
    *date = sy-datum - 2 .
    After start-of-selection add this line (parameter Month required 01 as day).
      concatenate month+0(6) '01' into month.
      CALL FUNCTION 'SWNC_COLLECTOR_GET_AGGREGATES'
        EXPORTING
          component     = 'TOTAL'
          ASSIGNDSYS    = 'DEV'
          periodtype    = 'M'
          periodstrt    = month
        TABLES
          usertcode     = t_usertcode
        EXCEPTIONS
          no_data_found = 1
          OTHERS        = 2.
      wa-date  = month.
    *wa-date  = date.
      wa-mandt = sy-mandt.
    wa_usertcode-account = username.
      LOOP AT t_usertcode INTO wa_usertcode.
        wa-user = wa_usertcode-account.
        IF wa_usertcode-entry_id+72 = 'T'.
          wa-tcode  = wa_usertcode-entry_id.
          wa-report = space.
        ELSE.
          wa-tcode  = space.
          wa-report = wa_usertcode-entry_id.
        ENDIF.
        COLLECT wa INTO t_ut.
      ENDLOOP.
      SORT t_ut BY report ASCENDING.
      CLEAR: wa, wa_result.
    endform.
    FORM get_fieldcatalog .
    fcat-tabname     = 't_ut'.
    fcat-fieldname   = 'DATE'.
    fcat-seltext_l   = 'Date'.
    fcat-key         = 'X'.
    APPEND fcat.
      CLEAR fcat.
      fcat-tabname     = 't_ut'.
      fcat-fieldname   = 'MANDT'.
      fcat-seltext_l   = 'Client'.
      fcat-key         = 'X'.
      APPEND fcat.
      CLEAR fcat.
      fcat-tabname     = 't_ut'.
      fcat-fieldname   = 'USER'.
      fcat-seltext_l   = 'User Name'.
      fcat-key         = 'X'.
      APPEND fcat.
      CLEAR fcat.
      fcat-tabname     = 't_ut'.
      fcat-fieldname   = 'TCODE'.
      fcat-seltext_l   = 'Transaction Code'.
      fcat-key         = 'X'.
      APPEND fcat.
    ENDFORM.
    *&      Form  SET_LAYOUT
          text
    -->  p1        text
    <--  p2        text
    FORM set_layout .
      layout-colwidth_optimize = 'X'.
    ENDFORM.                    " SET_LAYOUT
    *&      Form  GET_EVENT
          text
    -->  p1        text
    <--  p2        text
    *FORM get_event .
    events-name = slis_ev_top_of_page.
    events-form = 'TOP_OF_PAGE'.
    APPEND events.
    *ENDFORM.                    " GET_EVENT
    **&      Form  GET_COMMENT
          text
    -->  p1        text
    <--  p2        text
    *FORM get_comment .
    DATA: text(30).
    text = 'Billing Report'.
    heading-typ = 'H'.
    heading-info = text.
    APPEND heading.
    *ENDFORM.                    " GET_COMMENT
    **&      Form  top_of_page
          text
    -->  p1        text
    <--  p2        text
    *FORM top_of_page .
    CALL FUNCTION 'REUSE_ALV_COMMENTARY_WRITE'
       EXPORTING
         it_list_commentary       = heading[]
      I_LOGO                   =
      I_END_OF_LIST_GRID       =
    *ENDFORM.                    " top_of_page
    *&      Form  DISPLAY_DATA
          text
    -->  p1        text
    <--  p2        text
    FORM display_data .
      sort t_ut[].
    DELETE ADJACENT DUPLICATES FROM t_ut[] COMPARING ALL FIELDS.
      CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY'
        EXPORTING
          i_callback_program = sy-cprog
          is_layout          = layout
          it_fieldcat        = fcat[]
          i_save             = 'A'
          is_variant         = variant
          it_events          = events[]
        TABLES
          t_outtab           = t_ut
        EXCEPTIONS
          program_error      = 1
          OTHERS             = 2.
      IF sy-subrc <> 0.
        MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
                WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
      ENDIF.
    ENDFORM.                    " DISPLAY_DATA

  • I had bought the iphone 5 four months ago. The problem is that it gets heated too much. I noticed it recently. What should I do? Should I take it to apple store to replace? Will they replace my iphone 5?

    I had bought the iphone 5 four months ago. The problem is that it gets heated too much. I noticed it recently. What should I do? Should I take it to apple store to replace? Will they replace my iphone 5?

    The Basic Troubleshooting Steps are:
    Restart... Reset... Restore from Backup...  Restore as New...
    Restart / Reset
    http://support.apple.com/kb/ht1430
    Backing up, Updating and Restoring
    http://support.apple.com/kb/HT1414
    If you try all these steps and you still have issues... Then a Visit to an Apple Store or AASP (Authorized Apple Service Provider) is the Next Step...
    Be sure to make an appointment first...

  • So i bought the 9.99 a month photoshop (with lightroom) and then installed CC when i went to the app tab both PS and LR said "try" instead of install is that how setup usually goes? or well it ask me later for serial numbers?

    so i bought the 9.99 a month photoshop (with lightroom) and then installed CC when i went to the app tab both PS and LR said "try" instead of install is that how setup usually goes? or well it ask me later for serial numbers?

    Oscarf16161909 for information on how to resolve the connection error preventing the active membership from authorizing please see Sign in, activation, or connection errors | CS5.5 and later.  If you have any questions regarding the steps listed in the document you are welcome to update this discussion.

  • I bought the macbook pro few months ago can i get the lion upgrade for free as a part of my software support?

    i bought the macbook pro few months ago can i get the lion upgrade for free as a part of my software support?

    They announced it; sorry, no free Lion:
    "The Mac OS X Lion Up-To-Date upgrade is available at no additional charge via the Mac App Store to all customers who purchased a qualifying new Mac system from Apple or an Apple Authorized Reseller on or after June 6, 2011. Users must request their Up-To-Date upgrade within 30 days of purchase of their Mac computer. Customers who purchase a qualifying Mac between June 6, 2011 and the date when Lion is available in the Mac App Store will have 30 days from Lion’s official release date to make a request."

  • I pay 25 euros for three moit for illustrator but I can not use it. I try to cancel my subscription, but it's impossible because it is written that I have not paid subscription! Yet adobe takes me 25 euro per month!

    I pay 25 euros for three moit for illustrator but I can not use it. I try to cancel my subscription, but it's impossible because it is written that I have not paid subscription! Yet adobe takes me 25 euro per month!

    Delphine,
    I believe this is one for a chat,
    Creative Cloud support (all Creative Cloud customer service issues, chat open between 5AM and 7PM PST/PDT on workdays)
    http://helpx.adobe.com/x-productkb/global/service-ccm.html
    or for Adobe phone Support,
    http://helpx.adobe.com/adobe-connect/adobe-connect-phone-numbers.html

  • I purchased, the 400 minute per month plan. I can'...

    I purchased, the 400 minute per month plan. I can't make a phone call, and talk for two minutes, Without running out of skype credit. There's a problem with your system. I'm not receiving the benefits of what I paid for.
    My regards,
    goodshepherd9

    I think you may need to contact customer service regarding that matter. Just open the link pasted below to see the instructions on how to get in touch with customer service -
    https://support.skype.com/en/faq/FA1170/how-can-i-contact-skype-customer-service
    IF YOU FOUND OUR POST USEFUL THEN PLEASE GIVE "KUDOS". IF IT HELPED TO FIX YOUR ISSUE PLEASE MARK IT AS A "SOLUTION" TO HELP OTHERS. THANKS!
    ALTERNATIVE SKYPE DOWNLOAD LINKS | HOW TO RECORD SKYPE VIDEO CALLS | HOW TO HANDLE SUSPICIOS CALLS AND MESSAGES

  • My 30 day Photoshop trial finished yesterday. I purchased the $9.99 per month Photoshop package and received an email saying "Thank you for your payment etc" But when I go to open PS it still says "the trial has expired.."

    My 30 day Photoshop trial finished yesterday. I purchased the $9.99 per month Photoshop package and received an email saying "Thank you for your payment etc" But when I go to open PS it still says "the trial has expired.." Is it supposed to work automatically or is there a step I'm missing?

    1. Close all the Adobe Applications. Log-out from creative.adobe.com and re-login.
    2. Once you launch the software and when you get the error saying the the trial version has expired, you will have an option saying "License this software".
    3. Select this option and enter your credentials and click next.
    Nancy O.

  • When I view my ipohotos on my macair that have been uploaded from my iphone, sometimes my compute just shuts down. It is when I have the iphoto open. I'm not sure which version this is...I bought the computer about four months ago.

    When I view my ipohotos on my mac air that have been uploaded from my iphone, sometimes my computer just shuts down. It is when I have the iphoto open. I'm not sure which version this is...I bought the computer about four months ago.

    adkennon wrote:
    And maybe you don't talk to too many people but I've been on many forums on different websites where people have had similar problems and a lot of people in the store were having battery problems where they were draining too fast. What I learned is that all the people who did not download the updates are good. There phone is working the same. The people who have, they're having battery problems
    I have downloaded every update and my battery life is better than any previous iPhone I have ever owned. I see posts from hundreds of people every day, and this is not a commonly reported problem. While there are a few random reports of battery problems, it is no more than I have seen for any other model or any other version of iOS in almost 8 years. Usually problems of rapid battery drain can be traced to bad apps (FaceBook is the worst offender) or corrupt data being synced from iCloud or other sources (gmail, Windows Live, Yahoo, etc).
    The simple test is to restore the phone as New. Do not create any email accounts. Do not install any apps. Do not enable FaceTime or iMessage. Do not enable Twitter or any other social networking app. Use it for a day and check the battery usage. You will find that it is working well.
    And also see this: http://www.overthought.org/blog/2014/the-ultimate-guide-to-solving-ios-battery-d rain. It is the best treatise I have seen on the subject of battery usage.

  • I have lightroom.  My photos are stored on an external disk drive with a backup disk.  With iCloud, will all of my photos go to the cloud?  Will I still need the external drives? Is the $9.99 per month for just one year or for always?

    I am an amateur photographer and have lightroom.  My photos are stored on an external disk drive with a backup disk.  With iCloud, will all of my photos go to the cloud?  Will I still need the external drives? Is the $9.99 per month for just one year or for always? 

    If the iTunes database files are on that drive, launch iTunes with the Shift key(Windows) or Option key(Mac OS X) held down, select Choose Library, and navigate to it. The computer may need to be authorized to play protected content, and if the library contains rented movies, those won't play.
    If not, import the content to an iTunes library.
    (100371)

Maybe you are looking for

  • Multiple monitors and/or Reference monitor in Premiere Pro

    Harm -- I've been meaning to email you to again thank you for your recent recommendation of the GTX 470 board for my Win7-CS5 editing computer. It seems to be working extremely well. But I'm now pouring through all the posts about external monitoring

  • I just updated the software on my 3GS and now, my apps just open quickly then close....what should i do?

    I just updated my software, and now my apps won't work.  They just open the close quickly....I've done a force quit, but it stills doesn't work!  What can I do?

  • XPath function failed in XSLT (OSB 10.3.1)

    Platform : OSB 10.3.1 in Windows XP Error : Test following XSLT scripts in OSB Console by getting error Error executing the XSLT transformation: java.lang.NoSuchMethodException: For extension function, could not find method weblogic.apache.xpath.axes

  • Do I need to reinstall my original iPhoto on my upgraded OS?

    Okay, part two of a previous question. I got an iPod Nano last year and had to upgrade my OS because of compatibility issues with my old iTunes, the OS, and iPod. iTunes and the iPod are working fine. There's the AntiVirus issue that is driving me cr

  • Zen V JOYSTICK PROBLEM

    Bought my teenage daughter a Zen V for Christmas 2006. Seemed like a good deal for the money?since this was her first experience with an mp3 player, but now I seriously?question if?perhaps?I should have spent a little bit more?money for a better qual