DISREGARD THIS QUESTION PLEASE - i was able to correct the problem (by removing the following line from the Navigator button):
@PostedCommand([OpenPage];“Page 1 V2”);
I am working on a database that begins with a “Page.” From there, buttons are used to launch Navigators. This seems to work fine.
However, when I use a button on one of the Navigators to return to the Page, the Page is opening in two windows. Here is the button code:
@Command([FileCloseWindow]);
@PostedCommand([OpenPage];“Page 1 V2”);
@PostedCommand([OpenView];“”)
When I then use one of the ‘Page’ buttons to re-launch a Navigator, only one of the Page Windows Closes. So each time I circle back to the ‘Page’ I end up with another extra ‘Page’ window.
Any thoughts on why two ‘Pages’ open instead of 1? And any help in fixing this would be greatly appreciated!