Window title

When launching a system in a window, the window title is made up of the FactoryPMI window name, followed by a string defined in the project’s properties. Is it possible to hide the window name and display only the predefined string? Some of my window names can be rather cryptic!

No that is not currently possible. For what its worth they are reversed in the next version - it goes “Project Name - Window Name”

Expert tip:
You can use scripting to get the containing JFrame and set its title, but you’d have to do this frequently because every time you open/focus a window it would clobber your title.

Something like this should work, but not in Applet mode.

from javax.swing import SwingUtilities from javax.swing import JFrame parentFrame = SwingUtilities.getAncestorOfClass(JFrame, event.source) parentFrame.setTitle("My new title")