Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > comp.lang.java.gui > #3268 > unrolled thread
| Started by | "sukanya84" <sukanya84@THRWHITE.remove-dii-this> |
|---|---|
| First post | 2011-04-27 15:43 +0000 |
| Last post | 2011-04-27 15:43 +0000 |
| Articles | 2 — 2 participants |
Back to article view | Back to comp.lang.java.gui
javafx-reg popupmenus in "sukanya84" <sukanya84@THRWHITE.remove-dii-this> - 2011-04-27 15:43 +0000
Re: javafx-reg popupmenus "MatchStick" <matchstick@THRWHITE.remove-dii-this> - 2011-04-27 15:43 +0000
| From | "sukanya84" <sukanya84@THRWHITE.remove-dii-this> |
|---|---|
| Date | 2011-04-27 15:43 +0000 |
| Subject | javafx-reg popupmenus in |
| Message-ID | <dd9877aa-f067-4a71-9a7a-dc5001dc2bd1@d4g2000prg.googlegroups.com> |
To: comp.lang.java.gui can anyone tel me why popupmenus activated on a canvas mouseclick event in javafx never opens after clicking once??? where popupmenu.owner is the canvas itself. Only after refreshing the view(eclipse), it does come again.. Please help. --- * Synchronet * The Whitehouse BBS --- whitehouse.hulds.com --- check it out free usenet! --- Synchronet 3.15a-Win32 NewsLink 1.92 Time Warp of the Future BBS - telnet://time.synchro.net:24
[toc] | [next] | [standalone]
| From | "MatchStick" <matchstick@THRWHITE.remove-dii-this> |
|---|---|
| Date | 2011-04-27 15:43 +0000 |
| Subject | Re: javafx-reg popupmenus |
| Message-ID | <811a027e5d8c4@uwe> |
| In reply to | #3268 |
To: comp.lang.java.gui
Sorry for the incomplete question before!
The question is like this,
I want to incorporate popupmenus into a javafx component called Canvas.
Canvas sits on Frame.
var frame = new Frame();
var canvas = new Canvas();
var popupmenus = new PopupMenu(); //inside many menuitems are placed, say.
popupmenus.owner = canvas;
frame.content = canvas;
Now,
canvas.onMouseClicked = operation(e:MouseEvent)
{
popupmenus.visible = true; //drops down the menus
};
This is perfectly working in the Javafx editor (javafxpad.jnlp). But the same
code when run on Eclipse, misses to open the popupmenus when clicked more
than once on the canvas.
Only when the canvas is refreshed it opens. So, am able to perform only one
operation at a time.Then refresh for the second action to be performed.
Can anyone help on this? Thank you.
--
Live and Let Live
---
* Synchronet * The Whitehouse BBS --- whitehouse.hulds.com --- check it out free usenet!
--- Synchronet 3.15a-Win32 NewsLink 1.92
Time Warp of the Future BBS - telnet://time.synchro.net:24
[toc] | [prev] | [standalone]
Back to top | Article view | comp.lang.java.gui
csiph-web