Swing/AnimatedCursor のバックアップ(No.11)
- バックアップ一覧
- 差分 を表示
- 現在との差分 を表示
- 現在との差分 - Visual を表示
- ソース を表示
- Swing/AnimatedCursor へ行く。
- 1 (2006-05-01 (月) 12:35:56)
- 2 (2006-05-01 (月) 17:13:32)
- 3 (2006-07-11 (火) 12:40:23)
- 4 (2006-07-25 (火) 16:53:29)
- 5 (2007-05-08 (火) 14:25:37)
- 6 (2007-06-27 (水) 12:36:59)
- 7 (2008-05-07 (水) 19:38:00)
- 8 (2008-07-28 (月) 16:23:03)
- 9 (2008-09-01 (月) 23:18:57)
- 10 (2010-01-19 (火) 17:03:17)
- 11 (2010-12-12 (日) 23:18:01)
- 12 (2011-04-27 (水) 19:23:24)
- 13 (2013-03-07 (木) 15:48:20)
- 14 (2013-09-05 (木) 18:29:27)
- 15 (2014-01-30 (木) 17:38:24)
- 16 (2014-06-06 (金) 17:06:20)
- 17 (2014-10-30 (木) 00:10:53)
- 18 (2014-11-01 (土) 00:46:09)
- 19 (2014-12-04 (木) 02:31:19)
- 20 (2016-03-09 (水) 21:13:44)
- 21 (2017-03-30 (木) 13:59:47)
- 22 (2017-08-24 (木) 17:42:54)
- 23 (2017-11-02 (木) 15:34:40)
- 24 (2017-12-26 (火) 17:06:55)
- 25 (2019-05-17 (金) 18:19:21)
- 26 (2020-04-08 (水) 16:05:34)
- 27 (2021-10-14 (木) 14:05:17)
- 28 (2022-08-20 (土) 22:15:25)
TITLE:Cursorのアニメーション
Posted by terai at 2006-05-01
Cursorのアニメーション
マウスカーソルをアニメーションさせます。
- &jnlp;
- &jar;
- &zip;
#screenshot
サンプルコード
list[0] = tk.createCustomCursor(tk.createImage(url00), p, "00");
list[1] = tk.createCustomCursor(tk.createImage(url01), p, "01");
list[2] = tk.createCustomCursor(tk.createImage(url02), p, "02");
setCursor(list[0]);
animator = new javax.swing.Timer(100, new ActionListener() {
private int count = 0;
public void actionPerformed(ActionEvent e) {
setCursor(list[count]);
count = (count<list.length-1)?count+1:0;
}
});
JButton button = new JButton(new AbstractAction("スタート") {
public void actionPerformed(ActionEvent e) {
JButton button = (JButton)e.getSource();
if(animator.isRunning()) {
button.setText("スタート");
animator.stop();
}else{
button.setText("ストップ");
animator.start();
}
}
});
解説
上記のサンプルでは、ボタンをクリックすると、パネル上にあるカーソルがアニメーションするようになっています。3枚の透過pngファイルをコマにして、Timerで順番にこれを切り替えています。
各コマは、ぶーん(通常の選択.ani、VIPポインター)から、ANIめーかーを使って生成しています。
参考リンク
- VIPポインター@Wiki - トップページ
- ANIめーかー(Windows95/98/Me/アミューズメント)
- Cursorオブジェクトの生成
- oreilly.co.jp -- Online Catalog: Java Swing Hacks
コメント
- Cursorに用いるpngファイルは、フルカラー(24ビット)ではなく256色にしておかないと、うまく透過できないようです。もしかしたら自分のPCの画面の色が16ビットになっているせいかもしれません。 -- terai
- 32ビットにしてもだめみたいです。 -- terai
- 追記: JDK 6 なら、フルカラーでも問題なく透過できるようです。Bug ID: 6388546 PNG with transparent background doesn't render correctly -- terai
- Windows XP で、カーソルをAnimated GIF ファイルから生成(Toolkit.getDefaultToolkit().createCustomCursor)しようとすると、
落ちる? Ubuntuだと、アニメーションはしないけど、ちゃんと画像がカーソルになる。 -- terai- デッドロック? -- terai
- メモ: Bug ID: 4343270 Toolkit.createCustomCursor() hangs the VM under Win NT、Bug ID: 4939855 Please allow Toolkit.createCustomCursor() to accept multi-frame images -- terai
- よくみたら、java.awt.Point, java.lang.String) Toolkit#createCustomCursorに、「マルチフレームイメージは無効で、このメソッドがハングすることがあります。」と注意書きがあった*1。 -- terai