How to move text in java

preview_player
Показать описание
This is a simple program written in java. It moves text on the screen horizontally. This and some other videos like this are created for the purpose of preparing ourselves for the future because soon we are going to start a series of different computer languages video tutorials for you all who wants to learn languages the easy way......
Рекомендации по теме
Комментарии
Автор

CODE:
public class East extends JPanel {
int x = 0, y = 100;

public void paint(Graphics g) {
super.paint(g);
Graphics2D g2 = (Graphics2D) g;
Font font = new Font("Times New Roman", Font.BOLD+Font.PLAIN, 100);
g2.setFont(font);
g2.setColor(Color.yellow);
g2.drawString("EAST", x, y);

try {
Thread.sleep(100);
} catch(Exception ex) {
}
x+=10;
if(x>this.getWidth()) {
x=0;
}
repaint();
}
public static void main(String[] args) {
JFrame jf = new JFrame("EAST");

jf.setSize(700, 200);
jf.add(new East());
jf.setVisible(true);
}
}

syedammar
Автор

import java.awt.color;
import java.awt.font;
import java.awt.graphics;
import java.awt.graphics2D;
import javax.swing.JPanel;
//yamil

public class EAST extends JPanel{
    int x = 0, y = 100;

    public void paint(Graphic g)
    {
        super.paint(g);
        Graphics2D g2 = (Graphics2D)g;
        Font font = new Font("Tahoma", Font.BOLD+Font.PLAIN, 100);
        g2.setFont(font);
        g2.setColor(Color.red);
        g2.drawString("EAST", x, y);
        
        try{
    }   
}

yamilfn
Автор

can u tell me using this in gui and can move left and right?

ryankurniawan
Автор

hola y si a eso le quiero agregar un color al panel y ademas otro objeto pero mas abajo?? esque estoy haciendo un trabajo de la U y lo estoy trabajando con imagenes no con texto, gracias a tu video ya tengo un buen avance pero me faltan esas dos cosas

veronicabarrientos
Автор

how can I take input to remove the text during the text is moving in the screen?

mariamhossainlofan
Автор

por que esto?
JFrame jf = new JFrame("EASt");


que significa??

veronicabarrientos
join shbcf.ru