On Tue, Dec 30, 2008 at 8:41 PM, simonjpalmer <[email protected]> wrote:

> I want to place a link on my app which starts a static HTML help page
> in a new broswer window and I want to control the appearance of the
> browser window that gets created.  If I were doing this in HTML I
> would use JavaScript window.open and set the config parameter, e.g.
>
> <SCRIPT LANGUAGE="javascript">
> <!--
> window.open ('titlepage.html', 'newwindow', config='height=100,
> width=400, toolbar=no, menubar=no, scrollbars=no, resizable=no,
> location=no, directories=no, status=no')
> -->
> </SCRIPT>

I would use JavaScript with navigateToURL.

  navigateToURL(new URLRequest("javascript:myWindowFunction()"));

myWindowFunction is a function on the wrapper page that opens the window.

Manish

Reply via email to