Results 1 to 5 of 5
Thread: To make image move
- 05-03-2010, 12:51 PM #1
Member
- Join Date
- Apr 2010
- Posts
- 57
- Rep Power
- 0
- 05-03-2010, 01:27 PM #2
Crosspost! New To Java - To make image move
Math problems? Call 1-800-[(10x)(13i)^2]-[sin(xy)/2.362x]
The Ubiquitous Newbie Tips
- 05-07-2010, 11:36 PM #3
Member
- Join Date
- Apr 2010
- Posts
- 57
- Rep Power
- 0
This code is all I have written:
I hope you can help :oJava Code:import java.applet.Applet; import java.awt.*; import java.net.*; public class zadatak extends Applet { int width; int height; Image rabbit; URL base; MediaTracker mt; public void init() { width = getSize().width; height = getSize().height; setBackground(new Color(60,179,113 )); mt = new MediaTracker (this); try { base = getDocumentBase(); } catch (Exception e) {} rabbit = getImage(base, "White_Rabbit1.gif"); mt.addImage(rabbit,1); try { mt.waitForAll(); } catch (InterruptedException e) {} Button button = new Button("Start"); add(button); Button button1 = new Button("Stop"); add(button1); } public void paint(Graphics g) { g.setColor(new Color(105,105,105)); g.fillArc(100, 100, 550, 450, 0, 360); g.setColor(new Color(60,179,113 )); g.fillArc(150, 150, 450, 350, 0, 360); g.drawImage(rabbit, 100, 325, this); g.setColor(new Color(0,100,0)); } }
Greetings!
-
too many cross-posts....
- 05-08-2010, 08:23 PM #5
Member
- Join Date
- Apr 2010
- Posts
- 57
- Rep Power
- 0
Similar Threads
-
Help with Move Shape
By romina in forum AWT / SwingReplies: 2Last Post: 12-09-2010, 03:25 AM -
Some question to make Image Viewer
By BluXit in forum New To JavaReplies: 5Last Post: 04-14-2010, 04:29 AM -
n00b : Ghost image while using mouseDragged event to move a filled jPanel
By ankitmcgill in forum New To JavaReplies: 5Last Post: 11-02-2008, 06:41 AM -
want to make a menu bar for image processing
By vidhi in forum Java 2DReplies: 1Last Post: 01-15-2008, 07:12 PM -
How do I make My ball to move randomly?
By whdbstjr90 in forum New To JavaReplies: 4Last Post: 12-31-2007, 05:32 PM


LinkBack URL
About LinkBacks
Reply With Quote
Bookmarks