animation in applet

animation in applet

Hello sir,
your code is ok
but what happend to this code can you modify this an tell me problem please
code:


import java.applet.*;
import java.awt.*;
import java.net.*;
/*<applet code="Moveplane.class" height=600 width=800>
</applet>
*/
public class Moveplane extends Applet
{
public void paint(Graphics g)
{
Font f=new Font("Arial",Font.BOLD,30);
g.setFont(f);
g.setColor(Color.green);
g.drawString("Telangana AirLines",300,35);

try
{
Image i1=getImage(getDocumentBase(),"a1.gif");
g.drawImage(i1,50,50,null);

Thread.sleep(100);
}
catch(Exception e){}
for(int s1=7,s2=70; s1<6100||s2<3000;)
{

if(s1<610)
s1=s1+9;
if(s2<300)
s2=s1+20;
try
{
Thread.sleep(100);
}
catch(Exception e){}

}
}
}
View Answers









Related Tutorials/Questions & Answers:
animation in applet - Applet
animation in applet  Hello sir, your code is ok but what happend to this code can you modify this an tell me problem please code: import... Moveplane extends Applet { public void paint(Graphics g) { Font f=new Font("Arial
Animation in Applets - Applet
Animation in Applets  Hello sir, I have a code for you .this code is for moving a plane in an applet,but unfortunatly this code is not working .can... extends Applet { public void paint(Graphics g) { Font f=new Font("Arial
Advertisements
Animation in Java Applet
Applet is a java class that runs inside the internet browser. It uses Thread along with its methods for animation. Applet class implements the Runnable interface for animation program. Example of Animation in Java program
Animation
Animation  Hi experts, I work on an applet that should have a button and an animated object. when I click the button the object should move from the left page to the far right. Now, how can I connect the action of the button
Applet
Applet  Write an applet to display a string in an applet. String should be passed as a parameter to an applet
applet
applet  What is the immediate superclass of the Applet class
Applet
Applet  how to run an applet on a web browser
applet
applet  Explain different stages in the lifecycle of an applet with figure.   Stages of Applet: Life cycle of an Applet: init(): This method is called to initialized an applet start(): This method is called after
Applet
Applet  Give the class hierarchy of an Applet class
Applet
Applet  Write a ava applet that sets blue color foreground and yellow color background at the start of an applet
Applet
Applet  Explain the start() and stop() methods of applet life cycle.   Start and Start method of Applet Life Cycle Start () method: The start method of an applet is called after the initialization method init
Applet
Applet  Write a short note on applet life cycle
Applet
Applet  I have a java applet that has a button. On clicking the button it should disappear and another applet should appear. How to write this code???? Also in login applet after successful login it should display admin applet
Applet
Applet  Draw the class hierarchy of an Applet class. Also explain how to set background and forground colors in java
applet
applet  what is applet in java   An applet is a small program that can be sent along with a Web page to a user. Java applets can perform... the following link: Applet Tutorials
Applet
Applet  Write a Java applet that drwas a line between 2 points. The co-ordinates of 2 points should be passed as parametrs from html file. The color of the line should be red
applet
applet  applet to open new tab not working.here's my code import java.applet.*; import java.awt.*; import java.net.*; import java.awt.event.*; public class NewURL extends Applet implements ActionListener{ public void init
animation
applet - Applet
.  Hi Friend, Try the following code: 1)Create an applet... extends Applet{ public void paint(Graphics g){ g.drawString("Welcome in Java Applet.",40,20); } } 2) Call this applet with html code
Applet - Applet
Applet  what is the concept of applet? what is different between the applet concept and HTML? what is mean by swing?  Hi friend, Applet Applet is java program that can be embedded into HTML pages. Java applets
ModuleNotFoundError: No module named 'animation'
ModuleNotFoundError: No module named 'animation'  Hi, My Python... 'animation' How to remove the ModuleNotFoundError: No module named 'animation' error? Thanks   Hi, In your python environment you
ModuleNotFoundError: No module named 'animation'
ModuleNotFoundError: No module named 'animation'  Hi, My Python... 'animation' How to remove the ModuleNotFoundError: No module named 'animation' error? Thanks   Hi, In your python environment you
ModuleNotFoundError: No module named 'animation'
ModuleNotFoundError: No module named 'animation'  Hi, My Python... 'animation' How to remove the ModuleNotFoundError: No module named 'animation' error? Thanks   Hi, In your python environment you
applet - Applet
*; import java.awt.*; public class CreateTextBox extends Applet implements.../applet/ Thanks
Version of jgoodies>animation dependency
List of Version of jgoodies>animation dependency
Version of com.jgoodies>animation dependency
List of Version of com.jgoodies>animation dependency
Applet - Applet
Applet   Namaste, I want to create a Menu, the menu name is "Display... java.awt.event.*; public class menu2frame extends Applet implements WindowListener...------------------------"); g.drawString("Demo of Java Applet Window Event Program"); g.drawString("Java
How to make an animation in the text, make an animation in the text, an animation in the text
How to make an animation in the text       This is about an animation example, in this example we are going to make animation in the text that is so easy
Bindows animation library
Bindows animation library       Bindows animation library enables adding animations to Bindows components - thus creating visual effects like pulsating buttons, fade-ins, fade-outs
applet problem - Applet
applet problem  How can I create a file in client side by a java applet . Surely it will need a signed applet .But how can a signed applet create a file in the client side
ModuleNotFoundError: No module named 'mpl_animation'
ModuleNotFoundError: No module named 'mpl_animation'  Hi, My... 'mpl_animation' How to remove the ModuleNotFoundError: No module named 'mpl_animation' error? Thanks   Hi, In your python
Applet codebase
Applet codebase  What is codebase in applet
embedding class in an applet - Applet
embedding class in an applet  I have an applet that has a set... java.awt.event.*; public class tesURL extends Applet implements ActionListener... a remote controller). I have the applet code for the remote controller
Servlet and Applet - Applet
Invoke and run an Applet from Servlet  How can i invoke and run an applet from servlet. Can anyone provide me the sample code
java - Applet
java  what is applet
creating hyperlinks in applet - Applet
creating hyperlinks in applet  Dear sir, how can i move from one applet to another applet and how can i use previous applet input data in anotherapplet(just like session tracking) thanks
applet program code - Applet
applet program code  hello sir, i did't get the code for below problem... please help me... 1.An applet program to draw a line graph for y=2x+5.[for suitable values of x & y
Applet JSP communication - Applet
Applet JSP communication  Hi.. I've an application where i need to get the data from the applet to JSP... How can i do this..?? can anyone explain with a sample code
Example code of jQuery animation
Example code of jQuery animation       Example code of jQuery animation The jQuery is very powerful framework. It provides a many animation effects that can
applet running but no display - Applet
applet running but no display  Hai, Thanks for the post. I have... from a client, the page appears with a blank applet part (just whitescreen..., it is showing that the "Applet as1 started". Please help me to solve this issue
applet Question
applet Question  Write a java applet to display a circle in a rectangle
applet question
applet question  Write a java applet to display a rectangle inside a circle
applet question
applet question  Write a java applet to display atriangle inside a circle
What is Applet? - Applet
What is Applet?  What is Applet?  Hi,Here is a little information about Applet.An applet is a little application. Prior to the World Wide... programming language, an applet is a small program that can be sent along with a Web
loading Java Applet - Applet
loading Java Applet  Hi, I use the archive tag to download my applet into the Browser It takes too long to load. Can I do it in several steps... control the loading within the applet? thanks
java applet - Applet
java applet  wants to creat address bar on my java applet.  Hi Applet don't provide a facility to create a address bar directly. You just create a text box. In this text box if you enter any http address
Applet query - Applet
Applet query  i want to knw d complete detail of why does applet... calls the applet methods at different points depending on the stage it reached... link: http://www.roseindia.net/java/example/java/applet/ Thanks
Applet database access - Applet
Applet database access  HI... I'm having an applet where we should display the database values in the applet... It works fine in the local system... but when its in the server, we r getting null values in the local system.. I
How to make a fade text animation, make a fade text animation, fade text animation
How to make a fade text animation       This is a fade text animation example, it will surely increase..._TO_REPLACE_3 ADS_TO_REPLACE_4 Animation: Click on the bottom of the tool bar
Maven Dependency animation >> 1.4.1
You should include the dependency code given in this page to add Maven Dependency of com.jgoodies >> animation version1.4.1 in your project

Ads