Client-Side Development Section Index
What are the new features in JavaFX 2.0?
Find out what features JavaFX 2.0 added to the capabilities of version 1.x.
I want to close the child window, from parent window using java script.
I want to close the child window, from parent window using java script. I want to close the child window, from parent window using java script. How to do that? Can any one help me on this? Thank...more
Creating a javascript object with dynamic property name
You should use eval function for that.
Check out the below lines, sure it will help;
x=new Object(); propertyName="nameProperty"; propertyValue="John"; eval("x."+propertyName+"='"+propertyValue+"'...more
Open new window every time Hi, I am trying this example below
Open new window every time Hi, I am trying this example below : On click of the link it creates one window, if i click it again, i do not get a new window( another window) but rather the same wind...more
How can I be notified when a rendering error occurs?
You should register a RenderingErrorListener with your VirtualUniverse. The registration method is static. When the error occurs, you're sent a RenderingError to find out what the problem is.more
How do I know what size icon to use for an application on the system tray?
If you don't want to size the icon yourself, you can call setImageAutoSize() with a value of true for the TrayIcon. By default, the property is false. When true, the icon will be automatically res...more
How do I place a tooltip over a system tray icon?
The TrayIcon class offers a setToolTip() method to provide a string for the message.
How do I show a popup message over a system tray icon/application?
The displayMessage() method of TrayIcon allows you to show a timed message, if supported on the platform.
How do I specify an icon to include with a message over a system tray application icon?
The TrayIcon.MessageType enumeration allows you to specify an ERROR, INFO, or WARNING icon, in addition to NONE when displaying a message with displayMessage(). You cannot specify a custom icon.more
How do I specify the popup menu to show for an application on the system tray?
When you create the TrayIcon for the SystemTray, you specify the PopupMenu.
TrayIcon trayIcon = new TrayIcon(anImage, "Tooltip", aPopupMenu);
Just don't forget to fill it with MenuItem objects.
more
How do you find out if the user's platform supports adding applications to the system tray?
Ask the SystemTray class with its static isSupported() method. The javadoc for the class includes a warning when true is returned. Just because the system tray is supported, doesn't mean all funct...more
If I want to manually size my icon for the system tray, how do I find out the correct size for the platform?
The getTrayIconSize() method of SystemTray will return the appropriate Dimension for the icon. This allows you to either pick the most appropriate size from available icons or generate an icon of ...more
What are the different sound classes that come with the Java 3D API?
There are three sound-related classes: BackgroundSound for an ambient sound, PointSound for a sound whose source is located at a particular point, and ConeSound for a PointSound aimed in a particu...more
What is JOAL?
JOAL is the Java API wrapper for OpenAL, the open audio library, a cross-platform library for 3D or 2D sound. For more information, visit https://joal.dev.java.net/.more
What is JOGL?
JOGL is the Java Binding for the OpenGL API, formed from JSR-231 (http://jcp.org/en/jsr/detail?id=231). The project homepage is https://jogl.dev.java.net/.more