install4J - customize messages on standard screens - install4j

I'm using install4j 7.0.1 - and I have used 'Installation components' screen.
This screen has title: 'Select Component' and subtitle: 'Which component should be installed?'. Is there any way how to cutomize these texts?
Thanks

On the General Settings->Languages step, set up a custom localization file, then open the built-in editor and click on the "Override messages" tool bar button. Search for the message you want to change and click on OK. Then you can change the text in the editor.

Related

How to change Title/Subtitle in install4j?

I am trying to change the title/subtitle of default "Installation location" screen as provided by install4j. But i cannot find the section in title/subtitle configuration part. The title/subtitle part is available for other screens and can be changed there.
Is there any other way or API using which i can change the Title/Subtite?
Titles and subtitles of standard screens are not directly configurable, but you can override the messages.
On the General Settings->Languages step, set up a custom localization file, then open the built-in editor and click on the "Override messages" tool bar button. Search for the message you want to change and click on OK. Then you can change the text in the editor.

Eclipse IDE - What are breadcrumbs, and how do I disable them? [duplicate]

How can I disable the Java editor breadcrumb in Eclipse?
If you are referring to the breadcrumbs in the help file of a RCP application, there is only a manual way to do it.
Since Ganymede 3.4M5:
Michael Borgwardt mentions the toolbar icon
Slava Semushin provides a native shortcut based on Ctrl+3+bread, which points directly to the Toggle Java Editor Breadcrumb option.
Shachi reminds us below that you can right-click on any icon on the breadcrumb, and select the entry named "Hide Breadcrumb".
Original answer (manual way, through key mapping)
Find the file org.eclipse.help.webapp\advanced\breadcrumbs.css and replace its contents with.
.help_breadcrumbs {
display: none;
}
For the Java Editor breadcrumb, you need to assign a shortcut to the "Toggle Java Editor Breadcrumb" command (I have tested Alt+B, for instance)
That shortcut will make the breadcrumb bar appear/disappear at will.
With the editor window focussed, look for this icon in your toolbar:
And click on it. That's all. The icon is present by default, but can be deactivated, in which case you have to activated as in MvanGeest's answer.
Another way which works for me at Eclipse Indigo (3.7): press Ctrl+3 and type bread, after that click on item Toggle Java Editor Breadcrumb.
RightClick on any icon on breadcrumb.
There is an option named HIDE BREADCRUMB.
Click it and you are done. :D
Look for this icon in the toolbar:
This button toggles the Breadcrumb view on/off.
(I'm using Eclipse 3.7, and it's there by default)
Here it is :
In the toolbar, toggle bread crumb option.
Something like http://loadcontext.blogspot.com/2008/08/eclipse-34-breadcrumbs-hide-and-show.html?
Customize Perspective, choose the
Commands tab. In the Available command
group, choose Java Editor
Presentation. The Toolbar details
shows the button for Toggle
Breadcrumbs, which looks like a folder
with a C in a circle with a black
triangle on top of it.
Despite my absolute lack of experience with Eclipse, I suppose this setting must appear in other Presentation items too. After the button's enabled, all you have to do is click it. Or not?
Change property breadcrumb.org.eclipse.jdt.ui.JavaPerspective from true to false
in your org.eclipse.jdt.ui.prefs file.
In Juno: type 'Bread' and select 'Toggle Java Editor Breadcrumb'
It very simple just right click in your class editor then select bread crumb or directly right click in top of your class in tool bar then select hide breadcrumb then its done.
When you see the BreadCrumb toolbar, right-click on the green class icon and then from the menu options click on Hide Breadcrumb.

overriding install4j finish screen text

I'm trying to get rid of the default text that appears on the install4j finish screen. I've edited the finish components and added a multi line label to display the text I want however it just displays that below the default text. Is there a way to get rid of the default text completely?
There are two options:
1) Delete the "Finish" screen, add a "Configurable banner form" screen instead and select its "Quit after screen" property.
or
2) On the General Settings->Languages step, set up a custom localization file, then open the built-in editor and click on the "Override messages" tool bar button. Search for the message you want to change and click on OK. Then you can change the text in the editor. In this case the keys that you need to override are "FinishedLabel" and "FinishedLabelUnix".

How to use Custom Images in Install4J

I am currently evaluating Install4J. I have a requirement to use custom images for the installer screens and icons etc.
Where should I place them?
How to refer them from Install4J IDE?
First, go to the "Installer->Screens & actions" section in the install4j IDE.
Select the installer, and edit the "Custom image for title bar" property to configure the header image for all screens.
For each screen that has an image on the left side, select that screen and edit the "Image for banner" property.

Eclipse RCP - remove command from the popup

I am working on a tool (which is built over Eclipse). In that there is a popup menu called "Edit Properties" if a object is right clicked. I need to hide this menu command. Provided that it should not be gets hided from the standard menu, should only be hide from the popup.
How to do this? Can anyone suggest me?