Avatar

Level 1

I have a button in LiveCycle Designer that when pressed launches a URL (php program) in a new window. In other cases I want that the new window opens in the DocReady event after the document opens. I need that the new window does not have scroll bars or toolbar as I do when opening a new window in javascript html. I have Internet explorer 8 browser.

Code in javascript html:

window.open ('http://server/myprogram.php', 'MyWindow', 'scrollbars = YES, resizable = no, menubar = no, toolbar = no, status = no, directories = no, left = 450, top = 25, width = 750, height = 520 ');

Code onclick event in the adobe livecycle javascript button:

app.launchURL("http://a97100aph/ci/php/myprogramm.php?id_colectivo=xxx.pdf",true);

Thanks in advance