Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > comp.lang.java.gui > #3269
| From | "MatchStick" <matchstick@THRWHITE.remove-dii-this> |
|---|---|
| Subject | Re: javafx-reg popupmenus |
| Message-ID | <811a027e5d8c4@uwe> (permalink) |
| Newsgroups | comp.lang.java.gui |
| References | <dd9877aa-f067-4a71-9a7a-dc5001dc2bd1@d4g2000prg.googlegroups.com> |
| Date | 2011-04-27 15:43 +0000 |
| Organization | TDS.net |
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
Back to comp.lang.java.gui | Previous | Next — Previous in thread | Find similar | Unroll thread
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
csiph-web