I think that implementing the new ID prevents me to register my products of the old set to the top

I have put ID in place. Just yesterday.  I get the registration numbers, but told me "it's already registration" - but I bought them legally.  Photoshop and Adobe acrobat 8 Pro C4 I saw them in your old page of recording format.  I changed my name from Harald Sundt at Leo Rivers in 2011-, but this should not be a problem.  You knew my new name and email when I contacted you. I have 6 products expensive and I need to move things. My old Mac's dead and I'm again moving processor.  I'm retired now and there is no way for me to buy everything again.   Leo

This is an open forum, not Adobe support... Click below to contact Adobe staff for help

While the forums are open 24/7 you can't contact Adobe support at any time

Chat support: Mon - Fri 05:00-19:00 (US Pacific Time)<=== note="" days="" and="">

Don't forget to stay signed with your Adobe ID before accessing the link below

Creative cloud support (all creative cloud customer service problems)

http://helpx.Adobe.com/x-productkb/global/service-CCM.html

Tags: Adobe

Similar Questions

  • on Windows pc, I don't see a folder 'My Photo Stream', I think that all the photos are in the download folder, but when remove it from there, the status is not replicated in icloud. Help, please.

    on Windows pc, I don't see a folder 'My Photo Stream', I think that all the photos are in the download folder, but when remove it from there, the status is not replicated in icloud. Help, please.

    Hi vibenas,

    If you plan to use iCloud photo library with your Windows PC, article below the setting Details link and use this feature.

    Set up and use iCloud photo library on your Windows PC
    https://support.Apple.com/en-us/HT205323

    Sincerely

  • I want to install my photoshop 5.0 but limited edition pc screens, I have to check if it is a 32-bit or 64-bit application. I changed my windows XP to win7 64-bit operating system (I think that's the problem) how can I use my photoshop on this system?

    I want to install my photoshop 5.0 but limited edition pc screens, I have to check if it is a 32-bit or 64-bit application. I changed my windows XP to win7 64-bit operating system (I think that's the problem) how to install and run my photoshop 5.0 the on this system?

    It is no longer available via adobe and if buy you it to someone else, that you will probably have problems running.  I think that it is compatible with win 98 but I don't know if it's available for you using compatibility mode.

  • By matching SQL reports in a region so that all the top edges are aligned

    I have 3 parts of SQL report in column 2. I want to display so that their top edges are aligned.

    Approved 40 report conditional Tests (column 2)
    60 unlicensed tests conditional statement (column 2)
    80 approved count by Build report (column 2) conditional

    What actually happens is that the reports are all centered vertically towards the middle of the largest report (above). Here's a raw ASCII picture:

    Tests approved
    Category #.
    Area 1 100
    Area 2 100 * unapproved Tests *.
    Category in box 3 100 # * approved number of construction *.
    Area 4 100 area 1 50 11.0.1 700
    Box 5 100 area 2 50
    Field 6 100
    Area 7 100

    As the report the leftmost is the highest, two other reports eventually centered vertically in the middle of the report to the left.

    Instead, I would like that all the top edges lined up like this:

    Approved tests Trials not approved Number approved by build                           
    # Category 11.0.1 # 700
    Area 1 100 area 1 50
    Area 2 100 area 2 50
    Area 3 100
    Field 4 100
    Field 5 100
    Field 6 100
    Area 7 100

    Nothing I have tried so far has worked. Someone has an idea how to do this? Thank you...

    You could try to wrap areas in the regions of html that essentially give you the ability to specify a valign = top for parts of report.
    Thus, your zones to look like this:

    30 report start - contains source = (div) region

    Approved 40 report conditional Tests (column 2)

    Contains 45 report 2 - Start

    60 unlicensed tests conditional statement (column 2)

    Contains 65 report 3 - Start

    80 approved count by Build report (column 2) conditional

    85 end - report ".(mobster) »

    Replace the rafters of)

    There may be a more elegant solution with models or level of CSS page or something...
    But it should work.

    Published by: Bob37 on Sep 17, 2010 15:33

    Published by: Bob37 on Sep 17, 2010 15:33

  • Need help that implements the service class (JavaFX competition)

    I hope I'm not double posting, if so? My apologies...

    I create a small application in which you can run several algorithms that can be run and analyzed visually. So far, it runs great with errors now (as far as the GUI goes). When I run problems, this is after I implemented my bottom Threading code that the GUI will no longer appear. I followed the instructions until the 't' and although I have not compile errors (build Succeeded) I get without user interface.

    This is how I implemented it:

     private Service<Void> backgroundThread;
        
        private Stage stage;
        
        
        
        @Override
        public void initialize(URL url, ResourceBundle rb) {
            // TODO
        }  
    
    
        public void init(Stage stage) {
            this.stage = stage;
        }
         
       
        @FXML
        public void browseInputFile(ActionEvent event){
           FileChooser fileChooser = new FileChooser();
           fileChooser.setTitle("Open text file");
           fileChooser.setInitialDirectory(new File(System.getProperty("user.home")));
           fileChooser.getExtensionFilters().addAll(
                   new FileChooser.ExtensionFilter("Text Files", "*.txt"),
                   new FileChooser.ExtensionFilter("All Files", "*.*")
           );
           
            File file = fileChooser.showOpenDialog(stage);
            
            if(file != null){
                TInputField.setText("Choosen File: " + file); 
               // TerminalOut.setText(readFile(file));
            }
            
        }
        @FXML
        private String readFile(File file){
            StringBuilder stringBuffer = new StringBuilder();
            BufferedReader bufferedReader = null;
            
            try{
                
                bufferedReader = new BufferedReader(new FileReader(file));
                
                String text;
                while ((text = bufferedReader.readLine()) != null){
                    stringBuffer.append(text);
                }
                    
            }catch (FileNotFoundException ex) {
                   Logger.getLogger(Quick_SortFX.class.getName()).log(Level.SEVERE, null, ex);
            }catch (IOException ex) {
                   Logger.getLogger(Quick_SortFX.class.getName()).log(Level.SEVERE, null, ex);
            } finally { 
                try{
                    bufferedReader.close();
                } catch (IOException ex) {
                    Logger.getLogger(Quick_SortFX.class.getName()).log(Level.SEVERE, null, ex);
                }
            }
                return stringBuffer.toString();
        }
         
        
        @FXML
        public void runProgram(ActionEvent event){
            
           backgroundThread = new Service<Void>() {
         
            @Override
            protected Task<Void> createTask(){
                return new Task<Void>() {
                    
                    @Override
                    protected Void call() throws Exception{
                  
                    //this is where I put the algorithm code
                    for(int i = 0; i<=10000; i++){
                        updateMessage("i: " + i );
                    }
                    
                        return null;
                    }
                };
            }
        };
               
               backgroundThread.setOnSucceeded(new EventHandler<WorkerStateEvent>(){
                   
                   @Override
                   public void handle(WorkerStateEvent event){
                   System.out.println("Done! ");
                   TerminalOut.textProperty().unbind();
                   }
           });
           
           TerminalOut.textProperty().bind(backgroundThread.messageProperty());
           
           backgroundThread.restart();
      
        }
    
    
           
    

    And even if no compilation error I get nothing. Recently, I was able to look at the example for class of service on the web site of Oracle and it is very different and a bit more confusing, that I have already but I have does not work. Can someone please tell me what I'm doing wrong?

    That is the message the compiler gives me:

    Ant f/home/tacomeat/NetBeansProjects/Quick_SortFX jfxsa-run

    init:

    Delete: /home/tacomeat/NetBeansProjects/Quick_SortFX/build/built-jar.properties

    DEPS-jar:

    Update property file: /home/tacomeat/NetBeansProjects/Quick_SortFX/build/built-jar.properties

    compile:

    Detected JavaFX Ant API version 1.3

    JFX-deployment:

    jar:

    Copy of 12 files in/home/tacomeat/NetBeansProjects/Quick_SortFX/dist/run59654001

    JFX-project-run:

    /Home/tacomeat/NetBeansProjects/Quick_SortFX/dist/run59654001/Quick_SortFX.jar of execution using the/usr/lib/jvm/java-8-oracle/jre/bin/java platform

    Exception in the Application constructor

    java.lang.reflect.InvocationTargetException

    at sun.reflect.NativeMethodAccessorImpl.invoke0 (Native Method)

    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)

    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)

    at java.lang.reflect.Method.invoke(Method.java:497)

    at com.sun.javafx.application.LauncherImpl.launchApplicationWithArgs(LauncherImpl.java:389)

    at com.sun.javafx.application.LauncherImpl.launchApplication(LauncherImpl.java:328)

    at sun.reflect.NativeMethodAccessorImpl.invoke0 (Native Method)

    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)

    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)

    at java.lang.reflect.Method.invoke(Method.java:497)

    to sun.launcher.LauncherHelper$ FXHelper.main (LauncherHelper.java:767)

    Caused by: java.lang.RuntimeException: unable to build the Application instance: class quick_sortfx. Quick_SortFX

    at com.sun.javafx.application.LauncherImpl.launchApplication1(LauncherImpl.java:907)

    to com.sun.javafx.application.LauncherImpl.lambda$ launchApplication$ 156 (LauncherImpl.java:182)

    at java.lang.Thread.run(Thread.java:745)

    Caused by: java.lang.NoSuchMethodException: quick_sortfx. Quick_SortFX. ()

    at java.lang.Class.getConstructor0(Class.java:3082)

    at java.lang.Class.getConstructor(Class.java:1825)

    to com.sun.javafx.application.LauncherImpl.lambda$ launchApplication1$ 162 (LauncherImpl.java:818)

    to com.sun.javafx.application.PlatformImpl.lambda$ runAndWait$ 176 (PlatformImpl.java:326)

    to com.sun.javafx.application.PlatformImpl.lambda$ null$ 174 (PlatformImpl.java:295)

    at java.security.AccessController.doPrivileged (Native Method)

    to com.sun.javafx.application.PlatformImpl.lambda$ runLater$ 175 (PlatformImpl.java:294)

    to com.sun.glass.ui.InvokeLaterDispatcher$ Future.run (InvokeLaterDispatcher.java:95)

    at com.sun.glass.ui.gtk.GtkApplication._runLoop (Native Method)

    to com.sun.glass.ui.gtk.GtkApplication.lambda$ null$ 50 (GtkApplication.java:139)

    ... 1 more

    Exception quick_sortfx of the running application. Quick_SortFX

    Result of Java: 1

    Delete the directory/home/tacomeat/NetBeansProjects/Quick_SortFX/dist/run59654001

    jfxsa-run:

    BUILD successful (total time: 4 seconds)

  • I can't send messages, whatsapp for group discussions and I think that is the update of ios software that is not compatible with my iphone 5 s

    I can't send messages, whatsapp for group discussions and I feel really lost. my friends can't receive my message and I am only able to send individual text messages. I think that its because of the version update of ios which is not compatible with my iphone 5 s. is a solution to this problem?

    I have the same problem, started this morning.

    I'm in iOS 9.1, using the iPhone 6. Don't know what happened, but I have also opened a disturbance with Whatsapp support as well.

    A focus group work, group chat messages cannot be delivered. Individual messages are working properly. I tried to remove and reinstall the application, remove the discussion group and recreate, all has not helped.

    A lack of ideas.

  • There is a white stripe on the top of the browser window that covers the top of the screen. I do not see the menu options or navigation, how do I fix?

    There a white stripe about 3/4 inch high in the upper part of the window. I can't enter the menu bar, or see the menu or a browser window or the search bar. When I click on the white stripe, it goes through the office as there is no such thing as the top of the program.

    I've never seen this problem before.

    A screenshot can help

  • Cannot open any programs, I think that somehow the files have been changed to .lnk files

    Original title: I'm unable to open programs in my Start Menu.

    When I click on an item in the beginning, all programs selection and click it, instead of opening, I get the name of the program, for example Microsoft Works... LNK and that's all I get the program never opens.  I think somehow that the files have been changed to .lnk files but do not know how it happened

    This happened for several months and I'm sure that there is an easy solution to return to what it was but don't know what.  I tried the system restore, but that did nothing and don't know what to do next.  Any ideas?  Thank you... betseyd112

    original title:. LNK files

    Hello

    1. what operating system you are using on the computer?
    2. did you of recent changes on the computer before this problem?
    3 are you facing this problem with a particular program or all programs?
     
    See the methods and check if that helps.
    Method 1: refer to the article for help.
    When you run an .exe on a Windows XP, Windows Vista or Windows 7 computer file, the file can start another program
    http://support.Microsoft.com/kb/950505
     
    If the problem persists, create a new user account and check if that helps.
     
     
    Method 2
    Create a new user account-
    http://Windows.Microsoft.com/en-us/Windows7/create-a-user-account
    If you are not faced with the same question in a new user account, you can view the link below and use the steps provided to fix a corrupted - user profile
    http://Windows.Microsoft.com/en-us/Windows7/fix-a-corrupted-user-profile
     
    Let us know the status of the issue.
  • The GC collected by the class that implements the interface

    Hi all

    All my POJO classes implements an interface that has Variables (Static final). When I try to load in Jprobe test I found that all of these classes are not collected by the Garbage collector.
    Is - what the garbage collector accumulates classes with static fields?

    Kind regards.

    Marie-Laure wrote:
    These two classes HibernateDataObject and DataObject has some static Constannts

    Completely irrelevant. The presence of a member in a class static variable does not prevent instances of this class to be GCed.

    How to find the exact place for memory leaks?

    With the help of your Profiler, then the memory usage grows, look at what class uses the most memory. Then use the Profiler to find out what is the referencing instances of this class. As a guess, I would say you have a list or map of connected users, somewhere, and you not delete the item appropriate to this list or card at the end of a user session.

  • I received the email from microsoft, but I don't think that's the real e-mail, I've pasted below, can you please help me I have marked as spam and deleted. Thank you.

    From: * e-mail address is removed from the privacy *.
    Subject: UPDATE ACCOUNT 2012(LAST WARNING)
    Date: Tuesday, July 24, 2012 12:22:14-0400

    Welcome to Hotmail
    The effective way of the email
     

    Dear user,

    This message is to inform you that your account is not active in our database. Because of the unusual connection of unknown places of IP attempt. You are to fill out the form below, such as requested, in order to avoid your account permanently closed within 24 hours after this notice. Our goal is to provide you with the best possible service, especially when it comes to protecting your account.

    Enter the following information:

    User name:
    Password:

    Date of birth:
    Territory / country:

    NOTE: This is the last time that you will receive the notice and the windows! will not be held responsible for any damage that may result from the non update of your account. If you have updated your account, please ignore this message.

    NOTE: Click on answer before you fill out the required information
    YOUR DETAILS WILL NOT BE SHARED.
    We will continue to work on the contribution of Windows Live! the best email service autour and we appreciate your joining us for the ride.

    Sorry for the inconvenience,

    Sincerely,
    The Windows Live Hotmail Team
    • Take your emails on the road. Go mobile
    • Chat with your Messenger friends to your Inbox or to download Messenger
    Windows Live
    Microsoft respects your privacy. Read our online Privacy Statement.
    Microsoft Corporation, One Microsoft Way, Redmond, WA 98052-6399, USA © 2012 Microsoft Corporation. All rights reserved.

    TOTAL SCAM!

    Don't answer. Delete this message.

    Microsoft NEVER send unsolicited emails or phone calls to anyone.

    It's just a secular scamming thing. Don't fall for it.

  • Please help to cancel my account because I already have removed CC2014 from my PC and I think that after the trial CC2015 will install automatic for me but if I paid fees increase I'm unhappy

    A month ago I already removed CC2014 from my PC because I saw the new version of Photo shop CC2015

    I decided to remove the old version as already click to test Photo shop cc2015

    But after test Photo shop cc2015, the system informed me, if want to install paid app = 300THB per month will

    Total 600THB per month

    I have unfortunate for this package and price

    Kind regards

    AZG

    Hello

    To use the 2015 version, you won't have to pay anything more.

    If you still wish to cancel refer

    :-

    In order to cancel the order, please contact customer service

    You can check: http://helpx.adobe.com/x-productkb/global/phone-support-orders.html

    For more information on cancellation: cancel your creative cloud membership

    Please see this document for more information on how to cancel your membership creative cloud

    Hope this helps!

  • Windows thinks that my DVD drive is a floppy drive

    I've had my computer for almost 3 years now without problems and now my computer decided that my dvd drive is a floppy drive. I have no floppy drive in this computer.

    I am running windows vista ultimate, 32 bit. My dvd player is an Asus - model unknown, bought 3 years ago

    Device Manager can't find the drive, but does not have a floppy drive

    ->, I uninstalled the floppy drive he sees and has attempted to use the scan for hardware, but it cannot find the diskette again. Tried to restore the computer by using the system restore, which did not work. The player turns on and turn when I put a disc in but nothing and does not pop up in my computer (which only shows my hard drive and a non-existent floppy disk)

    After trying to use demon for a drive emulator tools so that I could actually stop using the physical disk that I don't want to wear them first noticed the problem. Daemon tools has been uninstalled from the restore points, I used so I don't think that is the question.

    Any help would be appreciated.

    Thank you

    Bob

    I did what you suggested and none of it worked. Thank you for your help and I have a solution that worked well.

    I turned off the computer, unplug the drive (power and sata of course), computer turned off, shut down, reconnected and when I restarted it again, my drive was normal.

  • How can I recover a file that displays the error message: illegal operand; Faulty operator:.

    My file was closed without problem and saved correctly. At the opening I get the message: illegal operand, operator Offending:, what can I do to fix this file? I created the file using Illustrator CC2014 with the MAPublisher plugin on an iMac, running OS x 10.10.2,"limited Yosemite. The file is a map and consists of several layers. I'm very curious to know what may have caused this problem to occur and how to get around. André.

    André,

    Thanks for sharing.

    It will be good to see if the change will make things work.

    Note that the error message does apply to the comma and no to the line, then you might think that just the comma must be changed.

    On the other hand, there are other lines with commas before and after.

    If remove the whole line fix, you can get (small) changes made to the work to make sure that everything is as you want, or make the necessary changes.

    Otherwise, you can reinsert (search for the sequence of the remaining lines around it) and try again.

  • to the top of ranking of W8 to W10

    I think that once the upgrade of w8.1 to w10 we won't reinstall the creative suite 6. But there is a post that Dreamweaver did not survive the upgrade. Other problems have been reported?

    Some people have problems, others are not

    Cloud & Win10 https://helpx.adobe.com/creative-cloud/kb/Windows_10_compatibility_FAQ.html

    -In addition, only CURRENT products will be tested and updated for compatibility with Windows 10

    - so if you have an older program, update you to Windows 10 at YOUR risk of problems

    An idea that MAY work to install or run some programs in Windows 10 old... works for some, not for others

    -http://www.tenforums.com/tutorials/15523-compatibility-mode-settings-apps-change-windows-1 0 - a.html

    - or run as Administrator http://forums.adobe.com/thread/969395 to assign permissions... said FULL yet, but sometimes it is necessary for all Adobe programs (this is same as using an administrator account)

  • The top Menu button sends strangely to a submenu

    In my construction of DVD, I have a main menu and two submenu.

    Main menu is the first piece of theatre.

    It has three video clips to choose to play

    and two submenu select.  For some reason any in any clip played the Top Menu button sends me one of the submenu.  It is not chosen as the end to a timeline action.

    I know I'm doing something wrong.  Someone told please straighten?

    I think that in the properties of the disc in the properties panel, your title button is set to the subtmenu you mentioned.

    The menu that you want to see when Top Menu touch the value this title button.

Maybe you are looking for