Activating and Deactivating

I had Activated my photoshop twice on other computers before and wanted it on my new computer so I uninstalled it off of one of my old computers without realising that there was a deactivate option. Now I can't install it on my new computer and I don't know how to get it back on my old computer. What can I do?

You will need to contact activation support:
http://www.adobe.com/products/activation/
Usually you can start a chat session right in that window and get it resolved right then.

Similar Messages

  • Data Slice dynamic activation and deactivation for a set of users

    Hi Experts,
                     We have requirement to manually enter the data into RTC using IP.
    There are 2 sets of users --> Power Users and Normal Users.
    We need to allow the normal users to enter the data only from 1st to 5 th working day of every  month.
    Power Users should have authorization to edit and enter the data at any time.
    Can any one suggest how to set the dataslice using code.
    Regards,
    Shashi

    Hi.
    Please note that update of RSPLS_DS table do not affects at RUNTIME.
    If you want to create dataslice that activated and deactivated within sequence run you should do the next:
    1. Create exit variable that return you all working days EXCEPT 1 to 5 of each month.
    2. Create dataslice in modeler on this characteristic with restriction by this exit variable.
    3. This dataslice should be based on ABAP class as described [here|https://www.box.net/shared/zhirrvk859].
    4. In mydataslice method enter following code (I assume you have any DSO with definition whether user is power user or not. Lets say DSO has next structure:
    USER   | Z_IS_POWER   |
    aaaa    | NO
    bbbb    | YES
    Enter the next code in mydataslice method:
    SELECT Z_IS_POWER FROM YOURDSO INTO lv_POWER WHERE USER=sy-uname.
    IF sy-subrc = 0. *This is SUPER USER. Allow locked data edition
    e_noinput = rs_c_false.
    ELSE. *This is regular user. Do not allo locked data edition
    e_noinput = rs_c_true.
    5. Create in modeler 2 planning sequences for activating and deactivation dataslice as described in document.
    6. Each time you want to do something with locked data run first sequence for deactivation of dataslice. If super user will run it so dataslice will be deactivated, but if regular user - dataslice will lock the data.
    Regards.

  • What is mass activator and deactivator?

    hi all,
    Can anyone explain me what is mass activator and deactivator in Multi provider and in infocube?
    can  anyone let me know with examples.
    regds
    haritha

    Hi,
    When you choose <b>Mass Activator</b> a list of all objects in the system appears with their status. You can select the objects to be activated from this list and then activate them at one time.
    http://help.sap.com/saphelp_nw04/helpdata/en/3b/f2a8d4fb377c47b0aa25ae9ae160d6/frameset.htm
    http://help.sap.com/saphelp_nw04/helpdata/en/3b/f2a8d4fb377c47b0aa25ae9ae160d6/frameset.htm

  • There is possible to active and deactive some buttons ?

    Hey. I have code to detect what page of my flash book is active and question now: there is possible to make 4 diferent effect for one button depend on what page is active? example:
    page 1 : button is red
    page 2 : button is blue
    page 3 :button is black
    i think this is possible but cant figure out how to make this

    if you have a simplebutton, you can change its color using its transform.colorTransform property:
    var ct:ColorTransform=yourbutton.transform.colorTransform;
    if(this.currentFrameLabel=="page 1"){
    ct.color=0xff0000;
    } else if(this.currentFrameLabel=="page 2"){
    ct.color=0x0000ff;
    } else if(this.currentFrameLabel=="page 3"){
    ct.color=0x000000;
    yourbutton.transform.colorTransform=ct;

  • Help needed in activating and deactivating a window

    In my GUI, I have created a window, that is having one textfield, one label and 2 buttons named "Enabled" & "Disabled" .
    MY requirement is: After execution of the window when I will click "Disabled" button, the window should be deactivated, even I can't type in the textfield and then clicking the " Enabled" button the window should be activated, then I can access the textfield.
    Here bellow,I have written the code for visibility of the window, but I haven't written code for the action to be performed by the 2 buttons.
    Can anyof you please write me the updated code satisfying my requirement, sothat I'll proceed further.
    Regards.
    MY CODE:
    import java.awt.*;
    import java.awt.event.*;
    import javax.swing.*;
    class Test7 extends JFrame
         public Test7()
              Container con=getContentPane();
              addWindowListener(new WindowAdapter(){
                   public void windowClosing(WindowEvent e)
                        System.exit(0);
              JPanel p1=new JPanel();
              p1.setBackground(Color.white);
              JPanel p2=new JPanel();
              JPanel p3=new JPanel();
              JTextField txt=new JTextField(10);
              JLabel l=new JLabel("hello world");;
              JButton b1=new JButton("Enable");
              b1.addFocusListener(new FocusAdapter(){
                   public void focusGained(FocusEvent evt)
              System.out.println("gained");
         // The component gained the focus
              JButton b2=new JButton("Disable");
              b2.addFocusListener(new FocusAdapter(){
                   public void focusLost(FocusEvent evt)
              System.out.println("lost");
         // The component lost the focus
              p1.add(txt);
              p2.add(l);
              p3.add(b1);
              p3.add(b2);
              con.add(p1,"North");
              con.add(p2,"Center");
              con.add(p3,"South");
              setSize(300,200);
              show();
         public static void main(String arg[])
              new Test7();

    try modifying code for the button listeners
    JButton b1=new JButton("Enable");
    b1.addActionListener(new ActionListener(){
    public void actionPerformed(ActionEvent evt)
    System.out.println("gained");
    // The component gained the focus
    txt.setEnabled(true);
    JButton b2=new JButton("Disable");
    b2.addActionListener(new ActionListener(){
    public void actionPerformed(ActionEvent evt)
    System.out.println("lost");
    txt.setEnabled(false);
    // The component lost the focus
    Hope this helps

  • User exit activation and deactivation in production server

    If I activate project of corresponding user exit and after transporting the request to Production ,
    then for deactivating the project will a request is generated or should i login to Production for deactivating the project.
    Thanks

    Hi,
    Deactivating the project would again ask for a request so we have to deactivate in development and take it via a transport to production.
    Regards,
    Himanshu

  • Activating and deactivating selection screen box.

    Hi all,
    In my program on selection screen there are two selection box.
    Each has different function .
    I want, when i use any one selection box then other one should be deactivated.
    can any one me guide me in this regard.
    Thanks
    Chetan.

    Hi,
    I hope follwing code will solve your problem.
    LOOP AT screen.
      IF first_selection_box = 'X' AND screen-name = 'second_selection_box in upper case'.
        screen-input = 0.
      ENDIF.
      IF second_selection_box = 'X' AND screen-name = 'first_selection_box in upper case'.
        screen-input = 0.
      ENDIF.
      MODIFY screen.
    ENDLOOP.
    Reward points if the answer is helpful.
    Megards,
    Mukul

  • Activating and deactivating trouble!!!

    Thers no option to deactivate my CC programs?? could this be because i still need to register? if so when i do so it keeps telling me that my address doesnt match the one  they have on record (but click to continue on with this address) but once i do it just keeps looping back to the edit info screen any help getting seriously annoyed

    You will need to contact activation support:
    http://www.adobe.com/products/activation/
    Usually you can start a chat session right in that window and get it resolved right then.

  • Activating and deactivating expose switches the window

    Hi,
    I found that expose in Lion behaves weirdly.
    The steps to repro:
    Open 2-3 windows of Safari.
    Move one window to another desktop (so there are windows of the same app on multiple desktops).
    Activate Expose (with gesture).
    Deactivate Expose (with gesture).
    What I expected to see after these steps: the same desktop, application and window as it was originally at the step 1.
    What I actually see: the screen slides to another desktop and activates the window on it. Doing it again does it again in the opposite direction.
    Nobody at the Apple store could explain why it happens or provide any logical explantion.
    So what's a deal with it?
    Cheers.

    Hi
    U need to assign an OK-CODE to print icon in the toolbar, but if it's a standard one, it means to change a standard object.
    Then u should considere after activing it u need to implement the abap code to manage it
    Max

  • Active and deactive one licence

    i have one licence of adobe acrobat Pro stanpodart and my laptop was damage the next week and the IT support intalled one new operating system and when i actived the active this licence i cannot actived becouse that is en the old laptop.
    what i should do?
    thanks for your help.

    Contact Adobe Customer Support to reset your activation count: http://helpx.adobe.com/contact.html?product=acrobat

  • Activating and deactivating icons in the Standard toolbar

    Hi expects,
    I want to activate the printing icon on my standard toolbar cause it is greyed out. How can I achieve that?

    Hi
    U need to assign an OK-CODE to print icon in the toolbar, but if it's a standard one, it means to change a standard object.
    Then u should considere after activing it u need to implement the abap code to manage it
    Max

  • Activating and Deactivating Accounts

    Hello
    Sorry If already posted, but is there anyway of hiding an account on the login page, without deleting the account itself? Rather like on Windows XP with the Guest account.
    Any answers appreciated
    Thanks
    Nat

    Hi Nat, and a warm welcome to the forums!
    Yes it is fairly easy in Terminal...
    http://www.macworld.com/article/52200/2006/08/hidelogin.html
    http://www.macosxtips.co.uk/index_files/hide-accounts-in-mac-os-x-tiger-login-wi ndow.html

  • IPhone blocked and requires activation, and not all that easy ...

    Hello everyone. At night I put the re-injected into ITunes update (4.0.2). In the morning he saw that the phone is not activated .... Although it was connected via USB ... IPhone is nowhere recognized in my computer, I tried everything that is possible, even the replacement of the cord did not help ...
    I live in a city where there is no Re: Store.
    Help please =)

    Hello,
    I had been using iPhone4s with microcell but after upgrading to iPhone5s, there wasn't any mIcrocell connectivity (tried turning off and on several times - success). Finally, When I disconnected microcell and deactivated and reactivated again through ATT website (takes 15 to 20 mins), the firmware (to support iphone5s) I believe gets updated automatically and now it has started working - my iphone5s shows the Microcell connectivity and seems to be working! worth giving a shot if you are still facing Microcell connectivity issue using iphone5s.
    Good luck!

  • Reactivation and Deactivation of User Exits

    We have an instance when enhancement COOPA_01 was inactive in both our Test box (SI4) and Production box (SP1) while it's activated in the Development box (SD2). In the past, this enhancement was activated when user exit EXIT_SAPLRKIO_001 (Include ZXAUFU01) was developed, activated and sent from SD2 to SI4 (then to SP1).
    Recently, we got an issue when an IO logic encoded in the said include was not being read upon (in SI4 and SP1). After debugging, it was found out that the reason why the processing isn't passing through the
    intended IO logic is because it was inactive in the SI4 and SP1 boxes.
    Does"Reactivating User exit" a transportable activity or is it an in-client activity?
    Thank you very much for your help.
    Regards,
    JP

    It is a transportable activity.
    Goto the relevant project for your enhancement component (or user exit) in CMOD and try deactivating and reactivating it. It will ask for request, also have a look at the request for the activation entry.

  • TS2755 My verizon I phone 5 lost activation and won't reactivate. Any ideas?

    My verizon I phone 5 lost activation and won't reactivate. Any ideas?

    Gruvedog wrote:
    Yes at first. But upgraded to last version. Phone had been working fine. Then just deactivated
    You mean you upgraded to the last beta, right?

Maybe you are looking for

  • Iphoto no imprime

    Al intentar imprimir desde iphoto aparece el siguiente mensaje: "No se ha encontrado ningún tema. Para que esta función esté disponible debe instalar al menos un tema." When trying to print from iphoto appears the following message: "Has not been any

  • Information in the notification address "Search Term 1/2".

    Hi Experts In my company we populate information in the notification address "Search Term 1/2". We can use this information to filter upon execution of reports IW28/9. However this information does not appear on any of the report output. Does anyone

  • SSO solution required for SAP,OBIEE,EBS,java,SQLserver,Apache applications

    Hi, We have applications including ERP like SAP , Oracle Applications , Oracle OBIEE and applications also using Java/Apache/SQL Server. We are looking for a SSO solution between all these applications so that user will sign in one application and wi

  • How to make address book larger and more readable?

    extra large isn't big enough. is there a way to make the address book interface larger and more readable?

  • AIR Application Sandbox Bridge Issue

    I am having an issue accessing the sandbox bridge from my application core page. The only thing I think it might be is I am using ajax for a login procedure so it might bolo it because of that. if anyone has any ideas I could use a fresh pair of eyes