Hi,
does anyone know how to generate such a window or whether there is any library for processing, that does that?
Thanks, TimeLex
Hi,
does anyone know how to generate such a window or whether there is any library for processing, that does that?
Thanks, TimeLex
If you are able to use Swing components:
import javax.swing.*;
static void infoWnd() {
JFrame frame = new JFrame();
frame.setBounds(900, 300, 500, 40);
frame.setUndecorated(true);
JLabel label = new JLabel();
label.setHorizontalAlignment(JLabel.CENTER);
label.setText("Your text for output display.");
frame.add(label);
frame.setVisible(true);
}
public static void main(String[] args) {
infoWnd();
}
It’s not moveable on a Mac.
Thanks, not exactly what i was looking for because it is not the build in one from Windows but it is good enough for me.