I am sure this is basic, but I have not seen anything in FAQs etc. I have some excel created tables that I just want to show in popup pages. How do I do this from the menu?
Thank you anyone for your help
Calling a popup page from the menu
Hi Julia,
For a simple popup, use the target property in the menu item definition. Like so:
target=_new should also work. If you want more control of the appearance of the popup window, you should consider using a javascript function to open the new window (using the window.open() method).
Hope that helps,
Kevin
For a simple popup, use the target property in the menu item definition. Like so:
Code: Select all
aI("text=Item Text;url=whatever.htm;target=_blank;");
Hope that helps,
Kevin