Marquee « Graphics « Java Swing Q&A





1. how set vertical marquee in java application?    stackoverflow.com

I am creating one application in java using swing.In that i have an array of String, I try to use html marquee tag to scroll all the strings one by one ...

2. Marquee effect in Java Swing    stackoverflow.com

How can I implement Marquee effect in Java Swing

3. unable to get marquee effect    stackoverflow.com

Possible Duplicate:
Marquee effect in Java Swing
I am trying to obtain marquee effect (the same we have in html). But I am unable to do ...

4. Autoscrolling for marquee selection    coderanch.com

import java.awt.*; import java.awt.event.*; import javax.swing.*; import javax.swing.event.MouseInputAdapter; public class DragAndScroll extends JPanel { Rectangle[] rects; Rectangle marquee; Dimension size = new Dimension(); final int WIDTH = 90, HEIGHT = 90, PAD = 20; protected void paintComponent(Graphics g) { super.paintComponent(g); Graphics2D g2 = (Graphics2D)g; g2.setRenderingHint(RenderingHints.KEY_ANTIALIASING, RenderingHints.VALUE_ANTIALIAS_ON); if(rects == null) initRects(); g2.setPaint(Color.red); for(int j = 0; j < rects.length; j++) g2.draw(rects[j]); g2.setPaint(Color.blue); ...

5. How to implement a Selection area / marquee?    coderanch.com

Hi Folks, Having trouble implementing something that when you click and drag on a window a dashed line will appear, allowing you to select whats within that region. A similar tool in Eclipse's visual editor palette is called a Marquee (but I gather this word can also be used for a Ticker). I've had some success drawing a rectangle to the ...