�� I have a java applet program (yanhua.java) need help!!!

�� I have a java applet program (yanhua.java) that use mouse click a area show a fireworks, the applet program that a java fan mail me. Now i find some bug in the program, can you help me? thank in advance!
The backdrop of the question: The yanhua.java applet program works well. But one day, i install j2re 1.4.1 plugin for my microsfot Internet Explorer, i run the yanhua.java applet program again, it show difficult(i move my mouse in the area, slowness), the fireworks is not fluent. Then i try my best to find the cause , i get some information, the following: yanhua.java run in j2re 1.4.1 plugin,it will deplete 100% cpu; else yanhua.java does not run in j2re 1.4.1 plugin, it will deplete 90%--95% cpu too; but my computer c3 1G cpu and 256MB memory, without running other program at that time. So i can have the assurance to say that the yanhua.java have some bug or error. can you help me to find all bug in yanhua.java? thank you very much!!!
i want to solve the question: finding all bug in yanhua.java
NOTE:
1��fireworks show specially good effect(a yanhua.java applet) you can look at:
http://www.3ren.net/down/java/yanhua.html
2��all program you can get from http://www.3ren.net/down/java/yanhua.rar
/*************************yanhua.java******************************
import java.applet.Applet;
import java.applet.AudioClip;
import java.awt.*;
import java.awt.image.MemoryImageSource;
import java.util.Random;
public class yanhua extends Applet
implements Runnable
private int m_nAppX;
private int m_nAppY;
private int m_centerX;
private int m_centerY;
private int m_mouseX;
private int m_mouseY;
private int m_sleepTime;
private boolean isError;
private boolean m_isPaintFinished;
boolean isRunning;
boolean isInitialized;
Thread runner;
int pix0[];
MemoryImageSource offImage;
Image dbImg;
int pixls;
int pixls2;
Random rand;
int bits;
double bit_px[];
double bit_py[];
double bit_vx[];
double bit_vy[];
int bit_sx[];
int bit_sy[];
int bit_l[];
int bit_f[];
int bit_p[];
int bit_c[];
int bit_max;
int bit_sound;
int ru;
int rv;
AudioClip sound1;
AudioClip sound2;
public yanhua()
m_mouseX = 0;
m_mouseY = 0;
m_sleepTime = 5;
isError = false;
isInitialized = false;
rand = new Random();
bits = 10000;
bit_px = new double[bits];
bit_py = new double[bits];
bit_vx = new double[bits];
bit_vy = new double[bits];
bit_sx = new int[bits];
bit_sy = new int[bits];
bit_l = new int[bits];
bit_f = new int[bits];
bit_p = new int[bits];
bit_c = new int[bits];
ru = 50;
rv = 50;
public void init()
String s = getParameter("para_bits");
if(s != null)
bits = Integer.parseInt(s);
s = getParameter("para_max");
if(s != null)
bit_max = Integer.parseInt(s);
s = getParameter("para_blendx");
if(s != null)
ru = Integer.parseInt(s);
s = getParameter("para_blendy");
if(s != null)
rv = Integer.parseInt(s);
s = getParameter("para_sound");
if(s != null)
bit_sound = Integer.parseInt(s);
m_nAppX = this.getSize().width;
m_nAppY = this.getSize().height;
m_centerX = m_nAppX / 2;
m_centerY = m_nAppY / 2;
m_mouseX = m_centerX;
m_mouseY = m_centerY;
resize(m_nAppX, m_nAppY);
pixls = m_nAppX * m_nAppY;
pixls2 = pixls - m_nAppX * 2;
pix0 = new int[pixls];
offImage = new MemoryImageSource(m_nAppX, m_nAppY, pix0, 0, m_nAppX);
offImage.setAnimated(true);
dbImg = createImage(offImage);
for(int i = 0; i < pixls; i++)
pix0[i] = 0xff000000;
sound1 = getAudioClip(getDocumentBase(), "firework.au");
sound2 = getAudioClip(getDocumentBase(), "syu.au");
for(int j = 0; j < bits; j++)
bit_f[j] = 0;
isInitialized = true;
start();
public void run()
while(!isInitialized)
try
Thread.sleep(200L);
catch(InterruptedException interruptedexception) { }
do
for(int j = 0; j < pixls2; j++)
int k = pix0[j];
int l = pix0[j + 1];
int i1 = pix0[j + m_nAppX];
int j1 = pix0[j + m_nAppX + 1];
int i = (k & 0xff0000) >> 16;
int k1 = ((((l & 0xff0000) >> 16) - i) * ru >> 8) + i;
i = (k & 0xff00) >> 8;
int l1 = ((((l & 0xff00) >> 8) - i) * ru >> 8) + i;
i = k & 0xff;
int i2 = (((l & 0xff) - i) * ru >> 8) + i;
i = (i1 & 0xff0000) >> 16;
int j2 = ((((j1 & 0xff0000) >> 16) - i) * ru >> 8) + i;
i = (i1 & 0xff00) >> 8;
int k2 = ((((j1 & 0xff00) >> 8) - i) * ru >> 8) + i;
i = i1 & 0xff;
int l2 = (((j1 & 0xff) - i) * ru >> 8) + i;
int i3 = ((j2 - k1) * rv >> 8) + k1;
int j3 = ((k2 - l1) * rv >> 8) + l1;
int k3 = ((l2 - i2) * rv >> 8) + i2;
pix0[j] = i3 << 16 | j3 << 8 | k3 | 0xff000000;
rend();
offImage.newPixels(0, 0, m_nAppX, m_nAppY);
try
Thread.sleep(m_sleepTime);
catch(InterruptedException interruptedexception1) { }
} while(true);
public void update(Graphics g)
paint(g);
public void paint(Graphics g)
g.drawImage(dbImg, 0, 0, this);
public void start()
if(isError)
return;
isRunning = true;
if(runner == null)
runner = new Thread(this);
runner.start();
public void stop()
if(runner != null)
runner.stop();
runner = null;
public boolean mouseMove(Event event, int i, int j)
m_mouseX = i;
m_mouseY = j;
return true;
public boolean mouseDown(Event event, int i, int j)
m_mouseX = i;
m_mouseY = j;
int k = (int)(rand.nextDouble() * 256D);
int l = (int)(rand.nextDouble() * 256D);
int i1 = (int)(rand.nextDouble() * 256D);
int j1 = k << 16 | l << 8 | i1 | 0xff000000;
int k1 = 0;
for(int l1 = 0; l1 < bits; l1++)
if(bit_f[l1] != 0)
continue;
bit_px[l1] = m_mouseX;
bit_py[l1] = m_mouseY;
double d = rand.nextDouble() * 6.2800000000000002D;
double d1 = rand.nextDouble();
bit_vx[l1] = Math.sin(d) * d1;
bit_vy[l1] = Math.cos(d) * d1;
bit_l[l1] = (int)(rand.nextDouble() * 100D) + 100;
bit_p[l1] = (int)(rand.nextDouble() * 3D);
bit_c[l1] = j1;
bit_sx[l1] = m_mouseX;
bit_sy[l1] = m_nAppY - 5;
bit_f[l1] = 2;
if(++k1 == bit_max)
break;
if(bit_sound > 1)
sound2.play();
return true;
public boolean mouseExit(Event event, int i, int j)
m_mouseX = i;
m_mouseY = j;
return true;
void rend()
boolean flag = false;
boolean flag1 = false;
boolean flag2 = false;
for(int k = 0; k < bits; k++)
switch(bit_f[k])
default:
break;
case 1: // '\001'
bit_vy[k] += rand.nextDouble() / 50D;
bit_px[k] += bit_vx[k];
bit_py[k] += bit_vy[k];
bit_l[k]--;
if(bit_l[k] == 0 || bit_px[k] < 0.0D || bit_py[k] < 0.0D || bit_px[k] > (double)m_nAppX || bit_py[k] > (double)(m_nAppY - 3))
bit_c[k] = 0xff000000;
bit_f[k] = 0;
} else
if(bit_p[k] == 0)
if((int)(rand.nextDouble() * 2D) == 0)
bit_set((int)bit_px[k], (int)bit_py[k], -1);
} else
bit_set((int)bit_px[k], (int)bit_py[k], bit_c[k]);
break;
case 2: // '\002'
bit_sy[k] -= 5;
if((double)bit_sy[k] <= bit_py[k])
bit_f[k] = 1;
flag2 = true;
if((int)(rand.nextDouble() * 20D) == 0)
int i = (int)(rand.nextDouble() * 2D);
int j = (int)(rand.nextDouble() * 5D);
bit_set(bit_sx[k] + i, bit_sy[k] + j, -1);
break;
if(flag2 && bit_sound > 0)
sound1.play();
void bit_set(int i, int j, int k)
int l = i + j * m_nAppX;
pix0[l] = k;
/*********************************end*******************************

no one help me???????????

Similar Messages

  • I have a Mac running OS X 10.6.8 and have installed all updates and disabled Java Applets.  Do I need to put virus protection on this computer and, if so, any recommendations?

    I have a Mac running OS X 10.6.8 and have installed all updates and have disabled Java Applets.  Do I need to install antivirus software and, if so, do you have a recommendation on what works best.

    Mac OS X versions 10.6.7 and later have built-in detection of known Mac malware in downloaded files. The recognition database is automatically updated once a day; however, you shouldn't rely on it, because the attackers are always at least a day ahead of the defenders. In most cases, there’s no benefit from any other automated protection against malware.
    The most effective defense against malware is your own intelligence. All known malware that affects a fully-updated installation of Mac OS X 10.6 or later takes the form of trojans, which can only work if the victim is duped into running them. If you're smarter than the malware attacker thinks you are, you won't be duped. That means, primarily, that you never install software from an untrustworthy source. How do you know a source is untrustworthy?
    Any website that prompts you to install a “codec,” “plug-in,” or “certificate” that comes from that same site, or an unknown site, merely in order to use the site, is untrustworthy.
    A web operator who tells you that you have a “virus,” or that anything else is wrong with your computer, or that you have won a prize in a contest you never entered, is trying to commit a crime with you as the victim.
    “Cracked” versions of commercial software downloaded from a bittorrent are likely to be infected.
    Software with a corporate brand, such as Adobe Flash Player, must be downloaded directly from the developer’s website. No intermediary is acceptable.
    Disable Java (not JavaScript) in your web browser(s). Few websites have Java content nowadays, so you won’t be missing much. This setting is mandatory in Mac OS X 10.5.8 or earlier, because Java in those versions has bugs that make it unsafe to use on the Internet. Those bugs will probably never be fixed, because those older operating systems are no longer being maintained by Apple. Migrate to a newer version of the Mac OS as soon as you can.
    Follow these guidelines, and you’ll be as safe from malware as you can reasonably be.
    Never install any commercial "anti-virus" products for the Mac, as they all do more harm than good. If you need to be able to detect Windows malware in your files, use ClamXav — nothing else.

  • New in Java: java applet program using multithreading

    I am trying to write a program, which should move the words "Java Platform2" from left to right every time we 'refresh'.
    Can you please advise what is wrong in the logic??
    import java.applet.*;
    import java.awt.*;
    import java.lang.*;
    public class Ch61appth extends Applet implements Runnable
    int i=30;
    int x=10;
    int y=30;
    Thread t,cur;
         public void start()
              t=new Thread(this);
              t.start();
         public void paint(Graphics g)
              g.setColor(Color.blue);
              g.drawString("Java Platform2",x+i,y);
         public void run()
                   if ((x+i)<400)
                        {     i=i+20;
                        else
                        {     i=20;
              //cur=new Thread.currentThread();
              repaint();

    thanks for reply
    i tried using for loop. Earlier also i had tried using while loop with condition t==Thread.currentThread()
    The problem i am facing is the string just does not move and even after clicking refresh, it appears at same locations.
    CAN U ADVISE>
    bye
    kumar

  • I have printers at home and work. i need help programing my macbook print utility so computer knows which printer to use depending on where i am. thanks

    i have printers at home and work. i need help programing my macbook print utility so computer knows which printer to use depending on where i am. thanks

    Look for cloud solutions such as DropBox, OneDrive, SugarSync or others. They are all cloud based services that sync documents between computers via the cloud. Of course another solution is simply a flash drive formatted in exFat so that Macs and Windows computers can read it.

  • Partial Get via   IE Browser/applet failing ... need help !?

    Partial Get via IE Browser/applet failing ... need help !?
    I recall someone saying that IE client would not receive a partial get initiated by http URL with setRequestProperty("range","bytes=2-");
    Can anyone elaborate on why the client seems to balk at the returned result and the getinputStream seems to result in a FileNotFoundException
    Do I have to use sockets ??????

    Partial Get via IE Browser/applet failing ... need help !?
    I recall someone saying that IE client would not receive a partial get initiated by http URL with setRequestProperty("range","bytes=2-");
    Can anyone elaborate on why the client seems to balk at the returned result and the getinputStream seems to result in a FileNotFoundException
    Do I have to use sockets ??????

  • Most of App free for my Mac air appear to my in topic free but i have to paid to get it i need help ?

    most of App free for my Mac air appear to my in topic free but i have to paid to get it i need help ?

    The Apple apps that appear in the Free app section are not normally free and they are free only to people who qualify. To qualify you must have bought a new Mac since 1 OCT 2013. Or you must have the older version of these apps on your Mac when you upgrade to OS X Mavericks 10.9, after which you get the Mavericks versions for free.
    If you qualify for free apps the Buy button sats free. If the Buy button has a price, you do not qualify for these apps for free.

  • I have Iconia Tab A500, running 3.0, need help updating using microsd card, got Acer update download

    I have Iconia Tab A500 running 3.0, need help updating, I downloaded all updaes list in the acer supprt, all versions, 3.0, 3.1, 3.2, and 4.something, I read on the acer support somewhere I can use a microsd card to update my device, because acer no longer provides automatically, when i try it says "poor network connection, move to anthoer location.", Do I need to update all the listed updates, or can i only update, using the 4. 0? to get the last known update. I also downloaded, "Documents, Apllications, Drivers, Patches, and O.S..... How do i intsall all these updates, I think am running the very lowest version available, Please Help me... Thank you in advance.

    the update listed on the acer website, that mentions the a500 update is 'kernal source code (for Android 4.0 Ice Cream Sandwich) it's 96.7MB's released 2012/05/08' is that the right one i need? There is also a list of 3 O.S updates, released in 2014/09/05, 391.5MB's, 394.3MB's, and 391.5MB's large, what are those updates, I clicked the model and followed the directions that the acer website asks, and i ended with a list of update released in 2014/09/05, and a Document update released in 2014/12/17, 112.7KB's large,  list of updates reased in 2014/.... and in the Android 4.0 culumn, there is an update that says O.S update released in 2014/09/05, 434.2MB's large, and a Patch Update, that was released in 2013/03/21, what are these updates? listedin the aver website... http://www.acer.ca/ac/en/CA/content/drivers 

  • Need Help w/ Java Applet Program

    Hello, first time on fourms. I've taken one year of Java(Poorly instructed) and I am currently trying to build a simple program, my brother is a really good gymnast so the object of this program is two drop down menus with selections, and based on the selections, an output. It has been a while since i've done anything, i've looked for reference at old work i've done and I just have gotten lost, I just need a few pointers. I'm also having compile problems such as, "Cannot find symbol", it is frustrating me, any help would be greatly appreciated!
    Here is what i've got so far, based on the above "requirements" can anyone help me out? PS. The odd names I gave them are based on another similar program I wrote a while back. Thanks again!
    import javax.swing.*;
    import javax.swing.border.*;
    import java.awt.*;
    import java.awt.event.*;
    import java.lang.*;
    public class gymnastics extends JFrame
    private JComboBox equationTypeComboBox;
    private JComboBox equationTypeComboBox2;
    private JTextField answerTextField;
    public gymnastics()
         setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
         setUpInfoPanel();
         setUpInfoPanel2();
         setUpEquationPanel();
    setSize(300,340);
    answerTextField.requestFocus();
    private void setUpInfoPanel()
    JPanel infoPanel = new JPanel();
    infoPanel.setLayout(new BoxLayout(infoPanel, BoxLayout.Y_AXIS));
    JPanel typePanel = new JPanel();
    typePanel.add(new JLabel("Event type: "));
    equationTypeComboBox = new JComboBox("Floor", "Pommel", "Vault", "Rings", "PBars", "High Bar");
              typePanel.add(equationTypeComboBox);
    infoPanel.add(typePanel);
    getContentPane().add(infoPanel, BorderLayout.NORTH);
         private void setUpInfoPanel2()
              JPanel infoPanel2 = new JPanel();
              infoPanel2.setLayout(new BoxLayout(infoPanel2, BoxLayout.Y_AXIS));
              JPanel typePanel = new JPanel();
              typePanel2.add(new JLabel("Group Code: "));
              equationTypeComboBox2 = new JComboBox("I","II","III","IV","V");
              typePanel.add(equationTypeComboBox2);
              infoPanel.add(typePanel);
              getContentPane().add(infoPanel2, BorderLayout.CENTER);
         public void setUpEquationPanel();
         equationPanel.add(new JLabel("Output: "));
         answerTextField = new JTextField();
         answerTextField = ("Test Output");
    equationPanel.add(answerTextField);
    getContentPane().add(equationPanel, BorderLayout.SOUTH);
              public static void main(String args[])
         new gymnastics().setVisible(true);
    }

    Sorry about the code problem and thanks for the encouragement, it is just a bit frustrating at times.
    import javax.swing.*;
    import javax.swing.border.*;
    import java.awt.*;
    import java.awt.event.*;
    import java.lang.*;
    public class gymnastics extends JFrame
    private JComboBox equationTypeComboBox;
    private JComboBox equationTypeComboBox2;
    private JTextField answerTextField;
    public gymnastics()
    setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
    setUpInfoPanel();
    setUpInfoPanel2();
    setUpEquationPanel();
    setSize(300,340);
    answerTextField.requestFocus();
    private void setUpInfoPanel()
    JPanel infoPanel = new JPanel();
    infoPanel.setLayout(new BoxLayout(infoPanel, BoxLayout.Y_AXIS));
    JPanel typePanel = new JPanel();
    typePanel.add(new JLabel("Event type: "));
    equationTypeComboBox = new JComboBox("Floor", "Pommel", "Vault", "Rings", "PBars", "High Bar");
    typePanel.add(equationTypeComboBox);
    infoPanel.add(typePanel);
    getContentPane().add(infoPanel, BorderLayout.NORTH);
    private void setUpInfoPanel2()
    JPanel infoPanel2 = new JPanel();
    infoPanel2.setLayout(new BoxLayout(infoPanel2, BoxLayout.Y_AXIS));
    JPanel typePanel = new JPanel();
    typePanel2.add(new JLabel("Group Code: "));
    equationTypeComboBox2 = new JComboBox("I","II","III","IV","V");
    typePanel.add(equationTypeComboBox2);
    infoPanel.add(typePanel);
    getContentPane().add(infoPanel2, BorderLayout.CENTER);
    public void setUpEquationPanel();
    equationPanel.add(new JLabel("Output: "));
    answerTextField = new JTextField();
    answerTextField = ("Test Output");
    equationPanel.add(answerTextField);
    getContentPane().add(equationPanel, BorderLayout.SOUTH);
    public static void main(String args[])
    new gymnastics().setVisible(true);
    }

  • Is it possible to create java standalone programs with java ME 8

    Hi,
    Comparing java ME to java SE, I have the impression that midlets are similar to applets.
    When working with java SE, I usually make standalone programs.
    Now, I wonder if it is also possible to create also standalone programs for java ME, if the classes are only  using java ME API's.
    I already noticed that netbeans does not allow to build a project that does not contain a midlet, but maybe, it is possible to create a jar file
    using the javac and jar commands. Or is there a specific reason why netbeans does not allow to build a project without midlets?
    The reason for asking is, that I often make small tools in java that ae then called from a linux script. I imagine that this might be useful on the raspberry pi as well.
    Thanks in advance
    Jef

    Hi Jef -
    Comparing java ME to java SE, I have the impression that midlets are similar to applets.
    Sort of - similar life cycle methods - so conceptually, yes.
    Now, I wonder if it is also possible to create also standalone programs for java ME, if the classes are only  using java ME API's.
    In a way, yes. If you build an project, you will notice a JAD file and JAR file in the dist directory of the project.  JAD is the descriptor for a MIDlet - in mobile devices, the JAD
    file is loaded first to determine if the MIDlet has enough privileges to load and run, before the corresponding JAR file is downloaded.
    However, the JAD file can also be included in the Manifest of the JAR and the JAR copied to the embedded device manually and run there.
    I already noticed that netbeans does not allow to build a project that does not contain a midlet, but maybe, it is possible to create a jar file
    using the javac and jar commands. Or is there a specific reason why netbeans does not allow to build a project without midlets?
    You can build JAR files and include them into Java ME Embedded projects, but just like Applets, to use the Application Management System (AMS) on the Raspberry Pi, you must have a MIDlet to run.
    Perhaps you mean that you would like to launch the AMS and load a MIDlet from the command line on the Pi?
    If so, take a look at this section of the Getting Started Guide for the Raspberry Pi.
    Tom

  • Loading Java Applet Failed... HELP ME PLEASE !

    Hello,
    Recently I can not view Java applets.
    This is what I see in the console :
    Java Plug-in 1.5.0_06
    Using JRE version 1.5.0_06 Java HotSpot(TM) Client VM
    User home directory = C:\Documents and Settings\?????
    c:   clear console window
    f:   finalize objects on finalization queue
    g:   garbage collect
    h:   display this help message
    l:   dump classloader list
    m:   print memory usage
    o:   trigger logging
    p:   reload proxy configuration
    q:   hide console
    r:   reload policy configuration
    s:   dump system and deployment properties
    t:   dump thread list
    v:   dump thread stack
    x:   clear classloader cache
    0-5: set trace level to <n>
    load: class loader.class not found.
    java.lang.ClassNotFoundException: loader.class
         at sun.applet.AppletClassLoader.findClass(Unknown Source)
         at java.lang.ClassLoader.loadClass(Unknown Source)
         at sun.applet.AppletClassLoader.loadClass(Unknown Source)
         at java.lang.ClassLoader.loadClass(Unknown Source)
         at sun.applet.AppletClassLoader.loadCode(Unknown Source)
         at sun.applet.AppletPanel.createApplet(Unknown Source)
         at sun.plugin.AppletViewer.createApplet(Unknown Source)
         at sun.applet.AppletPanel.runLoader(Unknown Source)
         at sun.applet.AppletPanel.run(Unknown Source)
         at java.lang.Thread.run(Unknown Source)
    Caused by: java.io.IOException: open HTTP connection failed.
         at sun.applet.AppletClassLoader.getBytes(Unknown Source)
         at sun.applet.AppletClassLoader.access$100(Unknown Source)
         at sun.applet.AppletClassLoader$1.run(Unknown Source)
         at java.security.AccessController.doPrivileged(Native Method)
         ... 10 morePlease, help me, I really need it.

    This line:
    User home directory = C:\Documents and Settings\?????
    is odd - what are the question marks doing there? They should be naming the user's directory. Have you used non-ASCII characters for the directory name?
    If so, you might want to try installing under a different user.

  • Java mail program in java

    Hi,
    Can anybody suggest me the java code which sends mails using java mail api?
    Thanks & Regards,
    Karimulla

    Hi
    I have worked on it,so if you need code for the application,please write mail to me on my address [email protected]
    hopes u will get gud solution.
    cheers
    Sandy

  • Kaspersky vs Java.exe detected as virus - Need help!

    Hi,
    Just installed yesterday Kaspersky Internet Security 2009 on my VISTA Ultimate 32 bits laptop. After doing a complete analysis, it reported out of a total of 3 the following threats:
    c:\windows\system32\java.exe
    c:\Program Files\Java\jre1.6.0\bin\java.exe
    What can I do with these?
    Honestly, I don't know really as I'm far from being an expert with JAVA.
    In conclusion, what do I do with these 2 files? Here is an item I could find from my VISTA "programs install/uninstall" window:
    "JAVA(TM) SE Runtime Environment 6"
    To solve my threat warnings:
    - do I need to update this to a newer version? If so how?
    - put files to quarantine as they suggest?
    - do anything else?
    Thanks in advance for help!

    Hi,
    I solved this problem by doing as following:
    - first uninstall JAVA Runtime which was already installed in VISTA
    - Next Install last runtime SE Version
    "Java SE Runtime Environment 6u7".
    - Went to http://java.sun.com/javase/downloads/index.jsp
    - Created myself a user account
    - From page, downloaded runtime "Java Runtime Environment (JRE) 6 Update 7"
    - Installed it
    - When I then checked errors from Kaspersky, no more regarding JAVA.

  • I have by mistake deleated my program creative cloud, (creative cloud is not im my computer anymore) how can I reload it and have access to photoshop CC. I need help.  Arlette

    Ihave by mistake deleated my program creative cloud the consequence is that have no more creative cloud in my  Computer . HOW CAN I RELOAD creative cloud.
    The best would be if Adobe would send me a mail to click and install it again, but I can't contact any Body.    I need help.
    Arlette

    Hi Counillon,
    Please refer to the help document below:
    Creative Cloud Help | Download, install, update, or uninstall apps
    Regards,
    Sheena

  • Graphical programs not running--need help

    Using win98 platform, textpad, and jdk1.5.0...
    DOS programs run fine, however, graphical applications do not run--it goes to the DOS window and brings up strings of stuff instead.
    When I compile, the error message that generally shows:
    Note: C:\jdk1.5.0\demo\...java uses or overrides a depreciated API
    Note: Recompile with -Xlint: depreciation for details.
    And for applets, this line also existed on a demo:
    Note: C:\jdk1.5.0\demo\applets\Animator\Animator.java uses unchecked or unsafe operations.
    Note: Recompile with -Xlint: unchecked for details.
    Anybody know what to do here? I'm just learning java from books, but I need to be able to run java applications in order to get a feel for the code. Help would be appreciated.

    If anyone deems it a necessity, here is an example of simple code that will throw this problem:
    (sorry-under win98 2nd ed.)
    import java.event.*;
    import javax.swing.*;
    class CloseableFrame extends JFrame
    {  public CloseableFrame()
    {  setTitle("Closeable Frame");
    setSize(300,200);
    addWindowListener(new WindowAdaptor()
    {  public void windowClosing(WindowEvent e)
    {  System.exit(0);
    public class CloseableTest
    {  public static void main(String[] args)
    {  JFrame frame = new CloseableFrame();
    frame.show();
    }

  • HT201401 okey so i have an iphone4 and my camera isnt working at all i tried front and back screen  still black... it only works when im at my nessages.. but my frony dont. i have tried everything... please i need help.

    okey i have tried calling apple support no one will help me i stayed on the phone waiting an HOUR!! i tried turning my phone off and restarting it.. deleting pictures!! everything!!

    Sounds like your battery is not taking a charge, I know it shows full with you plug it in.  Try plugging it into a wall socket for a few hours and see if the iPod will work on battery power. 

Maybe you are looking for

  • Account Assingnment & Free Item Checked in PO

    Hi, We have a requirement of making default value for account assignment as "Q" and Free Item check box checked always in one particulart PO Document Type. In addition we need to disable both fields. Anybody can guide me how i can achieve this either

  • HTWS1G/XAA sound stick turns sound on then off.

    My HTWS1G/XAA  sound stick that will no longer work properly. I turn the sound stick on I get a few seconds of sound then it turns itself off again. No sound. Sound stick will turn on with no sound input from TV. But as soon as I turn on sound from T

  • Newbie Automatic restore issues

    Hi: I have two issues with a program I am working on to do an automated restore, The restore takes a backup from production, and replaces the database entirely every day so we have offloaded current information: I avoid logical names because we don't

  • How to insert business content in BI7

    Hi expert:            How to insert business content in BI7?I have some example(BW3.0) to follow .  It tells me to active '0plant' in TC 'RSA5' and 'RSA6', but I cant find it. Allen

  • HCM Process and Forms Pass data's from forms to workflow

    Experts, In my HCM forms and process, I have some fields. So at runtime Approver will enter some inputs on it. Example [Dependent details - Spouse, child names]. It will stored temporary in the workflow, and finally will update in the system. Now my