Hide address bar from iexplorer
hi,
I made this code:
String urlPath = "http://maps.google.com/maps?q="+wdThis.wdGetContext().currentIndirizzoModificaElement().getGeocodifica(); IWDMessageManager msgMgr = wdComponentAPI.getMessageManager(); wdComponentAPI.getComponentInfo().findInWindows("EgonAppWinMappa"); IWDWindow window = wdComponentAPI.getWindowManager().createNonModalExternalWindow(urlPath); window.show(); window.setWindowPosition(WDWindowPos.CENTER); window.setWindowSize(1000, 600); window.setTitle("Locazione Cliente"); window.removeWindowFeature(WDWindowFeature.ADDRESS_BAR); window.removeWindowFeature(WDWindowFeature.TOOL_BAR); window.removeWindowFeature(WDWindowFeature.MENU_BAR); window.removeWindowFeature(WDWindowFeature.STATUS_BAR); wdContext.currentPopupNodeElement().setViewMappa(window);
I need to hide the address bar, tool bar, menĂ¹ bar etc from iexplorer 9. I use the function removeWindowFeature but it didn't work.
Do you know a way to get what I want?
thanks to all.