How do I discontinue this program

how do I discontinue this program?

I'm not sure what you want to discontinue, but if you want to stop receiving e-mail messages from these forums, see:
Stopping emails from ASC
If that's not what you're talking about, you'll need to be more specific.

Similar Messages

  • I bought Photoshop CS6 Extended(education edition) for Mac. Now ik want to install it on my (new) macbook. I have the product code and serial number. I receive an error code: may be a false copy. How can I install this program?

    In 2012, I bought Photoshop CS6 Extended (education edition) for Mac. Now I want to install it on my new Macbook. I have the correct serial number and product code, but I receive an error message: the software may be a false copy etc....What to do?

    Here is a copy of the error
    This means : Installation failed.
    Verification of the Adobe Software failed
    The product you want to install is no valid Adobe product and seems to be falsified.
    HUgo
    Op 29-aug.-2014, om 23:42 heeft Jeff A Wright <[email protected]> het volgende geschreven:
    I bought Photoshop CS6 Extended(education edition) for Mac. Now ik want to install it on my (new) macbook. I have the product code and serial number. I receive an error code: may be a false copy. How can I install this program?
    created by Jeff A Wright in Downloading, Installing, Setting Up - View the full discussion
    Hugo please turn off your e-mail signature.
    If your serial number is listed as being valid at http://www.adobe.com/ then I would recommend obtaining a fresh copy of the installation files.  You can find details on how to locate your serial number at Find your serial number quickly - http://helpx.adobe.com/x-productkb/global/find-serial-number.html.
    To download a fresh copy of the installation files please see Download CS6 products.
    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/6685617#6685617
    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 Downloading, Installing, Setting Up 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.

  • How can I get this program to work -- Adobe Send or Adobe SendNow

    How can I get this program to work?  I have used Adobe SendNow successfully for several years and am on automatic renewal and getting nothing but frustration for my money!  I have been unsuccessful at sending anything in the past several months.  Today while working on a deadline and many unsuccessful attempts to upload files, I signed up for a free trial at a competitor in order to get my files sent.  Want a refund  -- or better yet, keep my money and get it to work right again.

    You can't.
    Sounds like it he gave you a stolen iPhone or at least a worthless one.

  • How do I make this program generate a new problem once the button is hit

    Here is the code... appreciate any help given
    How do I make this program generate a new set of problem when the "NEXT" button is clicked and continue until the END button is hit
    package javaapplication3;
    import java.awt.GridLayout;
    import java.awt.Window;
    import javax.swing.*;
    import java.awt.event.*;
    * @author Sylvester Saulabiu
    class Grid extends JFrame{
        final int score = 0;
        final int total = 0;
        Grid(){
            //Set Layout of Flashcard
            setLayout(new GridLayout(4, 4, 2 , 2));
            //Create Panels
            JPanel p2 = new JPanel();
            JPanel p3 = new JPanel();
            final JPanel p1 = new JPanel();
            //Create Radio buttons & group them
            ButtonGroup group = new ButtonGroup();
            final JRadioButton ADD = new JRadioButton("Addition");
            final JRadioButton SUB = new JRadioButton("Subtraction");
            final JRadioButton MUL = new JRadioButton("Multiplication");
            final JRadioButton DIV = new JRadioButton("Division");
            p2.add(ADD);
            p2.add(SUB);
            group.add(ADD);
            group.add(SUB);
            group.add(MUL);
            group.add(DIV);
            p2.add(ADD);
            p2.add(SUB);
            p2.add(DIV);
            p2.add(MUL);
            //Create buttons
            JButton NEXT = new JButton("NEXT");
            JButton END = new JButton("End");
            //Create Labels
            JLabel l1 = new JLabel("First num");
            JLabel l2 = new JLabel("Second num");
            JLabel l3 = new JLabel("Answer:");
            JLabel l4 = new JLabel("Score:");
            final JLabel l5 = new JLabel("");
            JLabel l6 = new JLabel("/");
            final JLabel l7 = new JLabel("");
            //Create Textfields
            final JTextField number = new JTextField(Generator1());
            final JTextField number2 = new JTextField(Generator1());
            final JTextField answer = new JTextField(5);
            //Add to panels
            p1.add(l1);
            p1.add(number);
            p1.add(l2);
            p1.add(number2);
            p1.add(l3);
            p1.add(answer);
            p1.add(l4);
            p1.add(l5);
            p1.add(l6);
            p1.add(l7);
            p3.add(NEXT);
            p3.add(END);
            //Add panels
            add(p2);
            add(p1);
            add(p3);
            //Create Listners
      NEXT.addActionListener(new ActionListener() {
          public void actionPerformed(ActionEvent e) {
             int answer1 = 0;
             //Grab the numbers entered
             int numm1 = Integer.parseInt(number.getText());
             int numm2 = Integer.parseInt(number2.getText());
             int nummsanswer = Integer.parseInt(answer.getText());
             //Set the score and total into new variabls
             int nummscore = score;
             int nummtotal = total;
             //Check if the add radio button is selected if so add
             if (ADD.isSelected() == true){
                 answer1 = numm1 + numm2;
             //otherwise check if the subtract button is selected if so subtract
             else if (SUB.isSelected() == true){
                 answer1 = numm1 - numm2;
             //check if the multiplication button is selected if so multiply
             else if (MUL.isSelected() == true){
                 answer1 = numm1 * numm2;
             //check if the division button is selected if so divide
             else if (DIV.isSelected() == true){
                 answer1 = numm1 / numm2;
             //If the answer user entered is the same with th true answer
             if (nummsanswer == answer1){
                 //add to the total and score
                 nummtotal += 1;
                 nummscore += 1;
                 //Convert the input back to String
                 String newscore = String.valueOf(nummscore);
                 String newtotal = String.valueOf(nummtotal);
                 //Set the text
                 l5.setText(newscore);
                 l7.setText(newtotal);
             //Otherwise just increase the total counter
             else {
                 nummtotal += 1;
                 String newtotal = String.valueOf(nummtotal);
                 l7.setText(newtotal);
      //Create End listener
    END.addActionListener(new ActionListener() {
          public void actionPerformed(ActionEvent e) {
            // get the root window and call dispose on it
            Window win = SwingUtilities.getWindowAncestor(p1);
            win.dispose();
    String Generator1(){
         int randomnum;
         randomnum = (1 + (int)(Math.random() * 20));
         String randomnumm = String.valueOf(randomnum);
         return randomnumm;
    public class Main {
         * @param args the command line arguments
        public static void main(String[] args) {
            // TODO code application logic here
            JFrame frame = new Grid();
            frame.setTitle("Flashcard Testing");
            frame.setSize(500, 200);
            frame.setLocationRelativeTo(null);
            frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
            frame.setVisible(true);
    }Edited by: SirSaula on Dec 5, 2009 4:39 PM

    Extract code into methods, so that when an action is performed a method is called. That way you can reuse the method for purposes such as resetting textfields to their default values, scores to default values, etc.
    You can go one step further and seperate the GUI layer from the processing layer, by deriving classes that for example maintain and calculate a score.
    Mel

  • How do you execute this program on a DVD in a PowerShell statement

    How do you execute this program on a DVD in a PowerShell statement?
    E:\path /program1

    You should be able to just type the command. You may need to quote the path.
    Don't retire TechNet! -
    (Don't give up yet - 12,950+ strong and growing)

  • I have purchased indesign suite 6. how do i install this program? Please

    i have purchased indesign suite 6. how do i install this program now? Please

    InDesign is single product of Adobe's various products, not a suite. But anyway, I presume you purchased it as a download? If so, you'll have a .dmg file. This is a disk image. Double click the file and a pseudo drive will appear on the desktop. There should be an app clearly named as the installer, though it may be one folder deep.

  • I have a problem with adobe support advisor, how can i reinstall this program

    i have a problem with adobe support advisor, how can i reinstall this program

    hi wie kann ich adobe support advisor reinstalieren mac , ich bekomme fehlermeldung beim photoshop installation
    Von meinem iPhone gesendet
    Am 17.08.2014 um 07:17 schrieb Willi Adelberger <[email protected]>:
    i have a problem with adobe support advisor, how can i reinstall this program
    created by Willi Adelberger in Deutsche Foren - View the full discussion
    Kannst Du mal anfangen Deine Frage zu stellen?
    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/6647388#6647388
    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 Deutsche Foren 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.

  • Firefox 6 will not load when I click the icon. I have tried to uninstall it, both through the control panel and geong straight to help.exe. In both cases nothing happens. How do I uninstall this program?

    Firefox 6 will not load when I click the icon. I have tried to uninstall it, both through the control panel and going straight to help.exe. In both cases nothing happens. How do I uninstall this program?

    Start Firefox in [[Safe Mode]] to check if one of the add-ons is causing the problem (switch to the DEFAULT theme: Tools > Add-ons > Themes).
    * Don't make any changes on the Safe mode start window.
    See:
    * [[Troubleshooting extensions and themes]]
    * [[Troubleshooting plugins]]
    If it does work in Safe-mode then disable all extensions and then try to find which is causing it by enabling one at a time until the problem reappears.
    * Use "Disable all add-ons" on the [[Safe mode]] start window to disable all extensions.
    * Close and restart Firefox after each change via "File > Exit" (Mac: "Firefox > Quit"; Linux: "File > Quit")

  • I am trying to burn a .mov file from fcp xpress timeline to a dvd.  The popup message I receive prior to inserting the dvd is that I need 20.05 gb of space available on dvd (a 1.25 min). How can I get this program onto a dvd that shows a max of 8.5gb?.

    I am trying to burn a .mov file from fcp xpress timeline to a dvd.  The popup message I receive prior to inserting the dvd is that I need 20.05 gb of space available on dvd (a 1.25 min program). How can I get this program onto a dvd (where the max available gb's  for off the shelf dvds-r)  shows a max of 8.5gb?.  Please help.  Thank You!

    You have posted your question in the Final Cut  Pro X forum. You want to be in this forum instead; https://discussions.apple.com/community/professional_applications/final_cut_expr ess_hd
    Good luck.
    Russ

  • There a program that i have not install in my iMac is asking for update how do i find this program so i can delete

    Hi, in my IMac I, have not install a softwear call Motrorola and is asking for update, so my queestion is how do i find this program and delete and other that I have not install in my IMac. And how do I, maintenance on my computer running good and keep it free from any virus.
    Thank You.

    rkaufmann87 wrote:
    Regarding "install a softwear call Motrorola" please provide additional information such as where you got this app and why you want to install it. It sounds like it's for some type of Motorola device so please provide additional information.
    The quote was "I have not install a softwear call Motrorola" (my emphasis).
    But something with that name is asking to update.
    gabrielneron
    As Motorola's primary product line is mobile phones, could you have put some 'phone syncing software on your Mac?

  • Not sure how to go about this program....

    i have an assignment for my java class that requires me to create a program to simulate a gunfight between 3 people bob, aaron, and charlie. bob's shooting accuracy is 50% (the probablility of making a kill is 1 out of 2), aaron's accuracy is 30%, and charlie's accuracy is 90%. bob shoots first, then charlie, then aaron. the person shooting shoots at the person with the highest accuracy; so bob would shoot first at charlie, etc. they continue in this fashion until there is only one person left standing and they win that duel. there are to be 10,000 simulated duels to see who would win the most often.. im having a very hard time figuring out what to do with this program.. like how to write the code to make the program figure out who to shoot at based on accuracy. if you have any suggestions, i would greatly appreciate it!! thanks ahead of time. heres wht i have so far:
    public class Duelist
         boolean charlie;
         boolean aaron;
         boolean bob;
         double charlieAccuracy = (90/100);
         double aaronAccuracy = (33/99);
         double bobAccuracy = (50/100);
         int duelCount;
         int numKillsBob;
         int numKillsCharlie;
         int numKillsAaron;
         boolean alive;
         public void ShootAtTarget(Duelist target)
              do
              public void bobShoots()
                   int accuracy = (int)(Math.random()*100;
                   if (accuracy >= .5)
                        charlie == false;
                        numKillsBob++;
                   else
                        return;
              } //end bobShoots
              public void charlieShoots()
                   if (aaron == false)
                        return
                   else
                        int accuracy = (int)(Math.random()*100;
                        if ( (accuracy > 0) && (accuracy <= 90) )
                                  bob == false;
                                  numKillsCharlie++;
                             else
                                  return;
              } //end charlieShoots
              public void aaronShoots()
                   int accuracy = (int)(Math.random()*100;
                   if ( (accuracy > 0) && (accuracy <= 30) )
              }while (duelCount < 10000);
         } //end ShootAtTartget
              int accuracy = (int)(Math.random();

    im having a very
    hard time figuring out what to do with this program..Honestly, in that case you should talk to your teacher.
    like how to write the code to make the program figure
    out who to shoot at based on accuracy. if you have
    any suggestions, i would greatly appreciate it!!
    thanks ahead of time. heres wht i have so far:Again, you should talk to your teacher, and ask him to tell you folks about OO. Charlie et al are all shooters. So a class Shooter with name, health status and accuracy might be appropriate. Shooters shoot at possible targets.
    void shoot(List possibleTargets) {
    - determine target: is alive, has highest accuracy, not self
    - shoot, determine hit
    Store three instances (Charlie, Aaron and the other guy) in an a List, sort it by accuracy (see Comparable), and let each element shoot once, providing the list as an argument (since it's sorted by accuracy already, the check for highest accuracy would be needless), until there's only one person alive left.
    Then create a big loop to run this 10000 times.
    Alternatively to the "isAlive" state, you could simply remove the dead person from the list.

  • I lost my adobe photoshop elements version 12, how do I download this program igain?

    My Computer broke dowm. And now I cant download this program Again. Anyone knows how this cam be done?

    Download Photoshop Elements products | 12, 11, 10
    Mylenium

  • How do I load this program onto my PC?  I just bought it about 2 weeks ago.

    How can I tell if this program is loaded onto my computer?  I need to download a user manual or something so I know how to use it now that I have purchased it.

    Hi,
    Adobe Export PDF is an online service runs on browser.
    You can refer to this link to start your service: https://cloud.acrobat.com/exportpdf
    Regards,
    Florence

  • I have Acrobat Standard X on an old computer. How can I transfer this program to the new computer?

    The original program on the old computer was a download. How can I transfer this downloaded version to a new computer?

    Copy the downloaded file to the new computer and install it. You will still need the S/N to complete the process.

  • How do I save this program in an icon to desk top

    I need to create a ICON on my desk top

    "This program" being what?  On what OS?

Maybe you are looking for