Lightroom Desktop, Mobil and Web plus Photoshop CC $9.99 Subscription

- After subscribing, Photoshop opens just fine. Lightroom is asking for a serial number. How do I rectify this?

You can install on two computers at any one time. They may both be Mac or both Windows, or one of each

Similar Messages

  • Windows systems equipped with AMD Radeon(TM) HD 6770M discrete desktop/mobile and APU graphics.

    Hi,
    First of all::
    The product Name of my computer is: HP Pavilion dv6-6093ex Entertainment Notebook PC support
    The number of my computer is : LM610EA#A2N.
    I have AMD Radeon HD 6770M (1 GB DDR5).
    For Switchable graphics modes, this package includes drivers for both graphics processing units(GPUs). (Integarted GPU is (Mobile Intel Graphics) and (Discrete GPU is (AMD Radeon Graphics).
    Switchable graphics enable users to switch between a power_saving graphics mode(normally used under battery power) and a high-perfomance graphics mode.
    I always find the same version in my home page which is 2011-11-18 , Version8.882.2.3000, 338.98M which I have it installed
    1- AMD High-Definition Graphics Driver
    2011-11-18 , Version8.882.2.3000, 338.98M
    Released:
    2011-11-18
    File name:
    sp55092.exe [1/1, 338.98M]
    Version
    8.882.2.3000
    Catalyst Control Center Version: 2011 
    However, I found at
    http://support.amd.com/en-us/download
    There is a new versioin of AMD Radeon(TM) HD 6770M discrete desktop/mobile and APU graphics for
    Windows operating systems equipped with AMD Radeon(TM) HD 6770M discrete desktop/mobile and APU graphics.
    Thus, as long as I don't know if this can be compatible with my AMD Radeon or not, I am wondering if I can proceed with downloading it or not.
    This is AMD Catalyst: 2014
    This is  AMD Chipset Drivers from
    AMD Chipset Drivers:
    Revision Number: 14.4 , Revision Number: 4/25/2014
    http://support.amd.com/en-us/download/chipset?os=Windows%208%20-%2032

    Could anyone reply to me?

  • Shared codebase for both mobile and web applications?

    I've been developing a mobile application for a while now. It runs on iOS and Android as well as on the desktop as an AIR app. This is great and I'm very excited about it. However, last week I was asked why I couldn't export a version of the app that ran within a web browser. I said that I assumed I could and that I would look into it.
    But why would you want to run mobile code on the desktop?
    A couple of reasons:
    Greater re-use of code. This doesn't make sense in all cases but it does in many cases. (I won't elaborate because I think this is self-evident. If you disagree I'd be happy to talk about it but I'd rather not clog this description with it.)
    Quicker/easier client demos. Rather than having to install an apk or an ipa on a mobile device, I can just send a URL.
    So what have I found? Well, from what I've tried so far.. it.. doesn't work. Or rather I haven't been able to make it work.
    I started by creating a Flex Library project for all shared code. Then I created 2 application projects that reference it- one for mobile and one for web. The mobile project works fine but the web project does not. Here's what I've tried so far to make it work:
    I tried adding the mobilecomponents.swc and the mobile.swc theme to my web project so that Flash Builder knows about MobileSkin (and other mobile-only classes). This enables my app to compile but when I launch it immediately throws a runtime error inside of UIComponent: VerifyError: Error #1014: Class flash.text::StageText could not be found. I've found very little about this error, and the one tip I did find (adding the --swf-version=13 compiler option) does not work.
    I tried using conditional compilation to control which class my skin components inherited from: MobileSkin or SparkSkin. This was just a quick experiment to see if it worked. I know it's disgusting and not a production solution. My thinking though was that if MobileSkin was really just an optimized version of SparkSkin, my skins should be okay inheriting from either. This didn't work right away- app wouldn't compile b'c certain methods were missing (ex. layoutContents) and so I bailed on it because it felt dirty to begin with.
    I tried replacing MobileSkin with UIComponent as the super class for all of my skins thinking that MobileSkin was probably just a lightweight subclass of UIComponent anyway. This approach resulted in some compiler errors at first (ex. no layoutContents method, no measuredDefaultWidth/measuredDefaultHeight properties, addChild vs addElement, etc.). Once those issues were resolved the app compiled but crashed with runtime errors inside of UIComponent's "getState" method. (Looks like MobileSkin overrides this method to prevent UIComponent's default behavior.)
    So none of those approaches have worked for me so far... but what about you guys? I have no hopes of Adobe reading this thread or responding to it in any way, but I would love to hear from other people in the community. Have you encountered this issue yet? Were you able to make it work or can you spot any obvious oversights I've made in the methods I mentioned trying above? Thanks in advance if you can.

    Update: I've been able to make progress with the first route mentioned above: adding the mobilecomponents.swc and the mobile.swc theme to my web project
    Turns out that Flash Builder had led me wrong in this regard. Adding the mobile SWCs to your Library project with the "merged into code" setting results in the compiler warning:
    The swc '/Applications/Adobe Flash Builder 4.6/sdks/4.6.0/frameworks/themes/Mobile/mobile.swc' has style defaults and is in the library-path, which means dependencies will be linked in without the styles.  This can cause applications, which use the output swc, to have missing skins.  The swc should be put in the external-library-path.
    Seeing this the first time, I changed my linkage type to "External" and the warning went away. Then in my web project, I also added the mobile SWCs and set the linkage type to "merged into code" there. Flash Builder seemed happy with that approach, but upon running my application I got bizarre runtime errors (as mentioned above).
    Turns out that my first attempt was the correct way. Set the linkage type on the library project to "merged into code" and then don't re-link from your web project. Flash Builder will warn you about it but ignore the warning. Things seem to work pretty well for the most part now! I have an issue or two to look into (ex. List component doens't scroll) but things look pretty promising overall!

  • How do I configure my application to provide access for mobile and web brow

    Hi everyone.
    I have one application and I need to provide access for mobiles and desktop browsers, and I don't know how do I configure my application to do this.
    Let me explain:
    In my jDeveloper I have One application and 3 projects:
    -Mobile (here is my mobile application)
    -Model (here is my model)
    -ViewController (here is my Web Browser application)
    In Mobile I have
    JavaEE Web Application name: mobile-Mobile-webapp
    JavaEE Web Context Root: mobile
    ViewController I have
    JavaEE Web Application name: mobile-ViewController-webapp
    JavaEE Web Context Root: myapplication
    When I run some page of ViewController I have this URL "http://localhost:7101/myapplication/index.jspx".
    When I run some page of ViewController I have this URL "http://localhost:7101/mobile/index.jspx".
    My problem is that, I want to have Just one landing URL like that "http://localhost:7101/myapplication/index.jspx" and when I get this URL by Desktop Browser my ViewController is showed, and when i get by Mobile the Mobile project is showed.
    Someone knows how do it?
    Thanks....

    Yes, I can, thanks for response.
    But, don't have some configuration in Oracle for this? I've been thinking do this with java or JavaScript, but I was looking something more beautiful for this.
    Java or JavaScript is the only way?

  • Lightroom 5 History and Interface with Photoshop CC

    I have two questions;:
    I understand Lightroom 5 does not change the original image; instead it maintains a delta-like file within its catalog.  When, in Lightroom 5, I select 'edit in Photoshop CC' and make changes then return to Lightroom 5 does Lightroom 5 delta those changes in its catalog or is the original image replaced?.
    Also, in Lightroom 5, when I go back using 'History' and find a version I like; how do I lock that in.  That is how do I ignore/delete the most recent changes I no longer want?
    Any help is appreciated.

    Chas Clark wrote:
    Also, in Lightroom 5, when I go back using 'History' and find a version I like; how do I lock that in.  That is how do I ignore/delete the most recent changes I no longer want?
    You can go to the history step you want and make a small change like +1 clarity and then -1 clarity and it will get rid if the history steps above these steps.
    Another way is to use ROB COLE's "Clear Top" Preset.
    Create an empty preset called "Clear Top" by going into develop and hitting the + button in presets and when the dialog opens clear ALL the checkboxes, name it Clear Top, and then hit Create.   Find the" Clear Top.lrtemplate" file and open it in a text editor and change it to look as follows.
    s = {
              id = "1111111111111",
              internalName = "Clear Top",
              title = "Clear Top",
              type = "Develop",
              value = {
                        settings = {
                                  NoEdit = true,
                        uuid = "1111111111",
              version = 0,
    The id and uuid will be different so leave them alone.   I you created a truly EMPTY preset, the only thing you will have to add is the
    NoEdit = true          line.
    save the edits to the same file name and reload lightroom.   Make sure ONLY the above code is in the listing although with different id and uuid numbers so you won't be applying other settings.
    From now on, you can just hit the "Clear Top" preset and it will clear all history steps above the one you have chosen.  This is my most used preset!!!!    Thanks to ROB COLE for this idea.    

  • One Folio for mobile and web

    A client wants to use one publication (a magazine) for mobile devices (iOS, Android, Windows Store) and the web. The latter should also be usable on non-touch devices. The current solution for viewing the publication in the browser (desktop) is based on a pdf and flash.
    Is using Adobe DPS/Folio a viable solution to this problem? What is your experience with embedding Adobe Folio publications within websites? Is this possible with the Professional Edition? As the magazine is free: Do the downloads/views deduct from my 5,000 included downloads?

    You can enable social sharing to display content in the "web viewer" so that it can be viewed on non-touch computers.
    http://helpx.adobe.com/digital-publishing-suite/help/using-social-sharing.html
    You can embed this web viewer content within your website by specifying a Hosting URL. It's possible with a Professional or Enterprise DPS subscription.
    Whether this is a viable solution depends on your content and your needs. Look at different web viewer examples or build a test app if you already have a Pro account.
    Yes, the downloads/views of web viewer content counts against your fulfillment download bundles.

  • Color Space....of Lightroom...and Web Creation Page

    Lightroom 2 on XP
    Is there a place to set the working color space of lightroom?
    I usually use sRGB because I produce for the web...but recently got images created in the Adobe RGB Color Space.
    When I create Thumbnails and Enlarged Images in the HTML web gallery...are the images in the sRGB color Space by default possibly...Is there a way to manage this some way?
    Thanks.
    Suzzie

    Forgot about this question:
    >but recently got images created in the Adobe RGB Color Space.
    Lightroom correctly understands attached profiles. Just take it in and export to sRGB jpegs, or use the web tool, which brings me to:
    >When I create Thumbnails and Enlarged Images in the HTML web gallery...are the images in the sRGB color Space by default possibly...Is there a way to manage this some way?
    Lightroom does the right thing and always uses sRGB in the web galleries.

  • Connection between mobile and web site

    Hallo
    I m not sure if it is the right place to ask.
    How can i send data from mobile device to be displayed on web site and stored in DB.
    null

    Download and install Nokia's "PC SUIte" software from here: http://europe.nokia.com/pcsuite
    Then follow on-screen instructions for what they call "One Touch Access". It's fairly straightforward.
    Was this post helpful? If so, please click on the white "Kudos!" star below. Thank you!

  • T-Mobile and Web N Walk. Non starter.

    First off hello, i'm new to the forum as i bought my MBP yesterday.
    I've had a good search around and there are a few related topics to my query but nothing as specific as what i need.
    My problem is this.
    I have:
    MacBook Pro running OS X 10.6.2
    and want to use:
    T-Mobile dongle E160 (looks exactly like the e110 on the t-mobile website) using the Web N Walk operating program.
    When i insert the dongle, web n walk appears top right as usual. When i double click to start, it says something along the lines of ''T-Mobile Web n Walk manager quit unexpectedly''
    An option is given to re-open the program but it doesn't work.
    So i'm stuck. I had this dongle for my previous windows vista laptop and, as normal, it worked fine. I was told by many a people that it would work fine on the mac too.
    Does anyone know what I need to do/download/smash with a hammer?
    Many thanks for your help.
    Priest

    Hi, I dont know if you still need help, but i have a working Web 'n' walk manager on leopard 10.6 i played with it a little. it works to sent the texts, connect and all.
    Send me a pm with your e mail and i will e mail it to you...

  • Integrate SAP Mobile and Web Dynpro

    Hi,
    I would like to know if there is some problem to access Web Dynpro of MI Client.
    We have a process on our application that ask high performance and we are thinking to do this process with Web Dynpro.
    The application is used on Windows Mobile 5.0.
    Thanks and Regards,
    Bruno

    Hi Bruno,
                  Go through the link attached, It will help you with prequistes for renderdering Webdynpro Pages on PDA and other Mobile devices.
            http://help.sap.com/saphelp_nw04/helpdata/en/7d/28fa3e7cb1d861e10000000a114084/content.htm
    Cheers,
    Mohan.

  • Streaming video on mobile and web

    I want to develop a web site with jsp and ? want to make video streamin please could u help me how will ? do what must ? do

    If you have done a forum search you would have seen that this issue has been discussed at length. Apple devices were chosen to be FIRST because they have the largest market share. Android is on its way, and will appear and be available when it's ready. Yes, everybody at Adobe is aware that android users are waiting breathlessly for this new technology. No, they won't give any estimated date as to when it will be available. They don't do that.

  • Is Lightroom CC for Creative Cloud Suscribers (Photoshop+ Lightroom) already available?

    Hello everybody
    Is Lightroom CC for Creative Cloud Susbcribers (Photoshop+ Lightroom) already available?
    If so, where can I find it?
    The automatic updater does not show anything.
    Thanks for your help.

    Hello Paul,
    please have a look at Creative Cloud pricing and membership plans | Adobe Creative Cloud >>> Photography >>>
    Latest version of Photoshop
    Latest version of Lightroom desktop, mobile, and web
    ... as you can see they are included.
    Hans-Günter

  • Simultaneous development for desktop and web

    What I'm looking for is simultaneous development of a desktop client and a web client (as an applet). Basically, the desktop client and the web client should provide the same functionality. What I'd like to do is develop these two concurrently; with the same tool, using the same codebase with build-specific changes being kept to the absolute minimum. To estimate the size and difficulty of the project.. JDBC, sockets, graphics.
    From what I read, Java Studio Enterprise would be OK for working on both aspects. Functionality would be provided by a set of special Beans I'd write. What I'm wondering about is that how well could this succeed. Question time!
    * I'd like to have the desktop client use SWT and the web client Swing. It should be possible to wrap these to provide a common API for myself, but how much work am I looking at?
    * Regarding the question above - if I use a visual RAD tool like Sun Java Studio Enterprise, how easy/much work would it be replace the widget library with their "cross-platform" widget library equivalents (so that in the code, it'd reference my own versions and all)? This is about reducing the build-specific changes again - when I drag and drop a button to a form, I'd want it to be one of my own magical SWT/Swing buttons.
    * I'd imagine the application would get fairly large - how much unavoidable change should I expect between the desktop client and web client? Are there any serious pitfalls/caveats?
    * Would it be feasible to realize the desktop "client" through Web Start - just make the applet and have it launched through that?
    I'm evaluating different views and ideas for a possible project and would like to know how Java would fare in something like this. Let me know what you think. Thanks for your input!

    Maybe something like OpenID Connect built on top of oAuth 2.0 would be applicable?
    Users can manage their identities with an Identity Provider. Your Web and Desktop applications become Relying Parties and they will be given an ID Token and possibly an Access Token when the user is authenticated with the Identity Provider.
    The Identity Provider could be extended to federate onto other Identity Providers such as ADFS, Google, Facebook...

  • 701 Mail, Calendar, Social network and Web bug.

    Hello
    im pretty satisfied with my 701 but just right now i started to experience bugs. let me explain
    Calendar- sometime (always when i go through widget) when i open a calendar, it opens a speciffic day (the one that is actual), and im unable to select month or any other view point, and i cannot see any of my notes in the calendar until i restart my phone.
    Mail- widget sometimes doesnt refresh inbox even though i have it set on 15 mins. (happend last time for a week. thought i had no mail, instead i found 10 new messages.) also sometimes my mailbox wont open using widget, only with a normal Email icon.
    Social network just doesnt want to open at all. says (in translation something like "Unable to launch the client"
    Web- even though i have 3g network signal and mobile data are turned ON, opera mobile, and Web client (the nokia one) both cannot connect to the internet for some time.
    i tried backing up my phone data (not applications only galery, phonebook, music, ebooks etc and videos) and erasing (reseting) my settings. when i turned my phone on again, it asked me to enter time, date, my nokia account etc. as if i just bought the phone. then i loaded my backup files. email looks like its working again, calendar got stuck just today again... social network still doesnt work, web still cannot connect to 3g network sometimes.. 
    dunno what else to try, starting to be little angry, since calendar and web are the things i use more often then sms and calls. 
    is this common? will there be an update to fix this? or is there a simple solution to my prob?
    i would add an attachment supplying info about my phone but i have no idea where to get such file.
    thanks for help.
    Solved!
    Go to Solution.

    No problems here!  
    Any way the Feature Pack 1 will solve those problems ...  

  • Dsktop and web intelligence

    hi
    if i build universe based on cubes.
    all the functions available in desktop intelligence and web intelligence are same? any deffirences?

    Hi Amr,
    please look at the top of page 6 in the following document:
    [http://help.sap.com/businessobject/product_guides/boexir31/en/xi3-1_sap_olap_universes_en.pdf]
    Regards,
    Stratos

Maybe you are looking for