How would I add a sub menu to this basic menu..??
RibbonApplicationMenuEntryPrimary gen_kml_entry = new
RibbonApplicationMenuEntryPrimary(
SvgBatikResizableIcon.getSvgIcon(getClass().getClassLoader().getResource("images/earth.svg"),
new Dimension(32, 32)),
"Generate KML Tracks",
new ActionListener()
{
@Override
public void actionPerformed (ActionEvent e)
{
SaViewer.this.kml();
}
},
CommandButtonKind.ACTION_ONLY);
gen_kml_entry.setPopupKeyTip("Click to start capturing GPS track.");
gen_kml_entry.setActionKeyTip("T");
applicationMenu.addMenuEntry(gen_kml_entry);
Thanks in Advance..!!
Brian

Not sure I understand the
Not sure I understand the question.. if you refer to Flamingo Swing components than this is not the right forum.