Hi Burr, the dialog mechanism in MoI isn't really expecting to have links that will navigate the dialog page. Currently when a link is clicked it will try to call ShellExecute on it to have it open in a web browser.
Probably it would be better to launch the page in the system web browser, it should handle the links ok there.
So you can do that by calling this instead of creating a dialog:
moi.filesystem.shellExecute( moi.filesystem.getUIDir() + 'moi_ref\\index.htm' );
When that is triggered, the system web browser should open that page.
- Michael
|