Unable to open up another web browser when using a button among item

I am trying to call another web page(pop up window) with button displayed among items, the problem is there is not place to put a URL redirect. I could only do it with a button not displayed among items by putting in URL javascript: openPopUp(); which is calling a function which is in the HTML Header of my page.
function openPopUp()
window.open('f?p=&APP_ID.:14:&SESSION.::NO.:::','Popup','width=800,height=500,scrollbars=1,resizable=1');
Doews anyone have an idea. I was unable tofind an in this forum that would work for me.
Thanks
Aron

Aron,
Did you try to add the link in the button Attibutes property ?
Button>> edit >> attribute : onClick="javascript:window.open('f?p=&APP_ID.:14:&SESSION.::NO.:::','Popup','width=800,height=500,scrollbars=1,resizable=1');"
This should work,
Thanks
Sam
Please reward good answers by marking them corrent or helpful!

Similar Messages

  • My course designed in Captivate 5 will not open in the web browser when published or in preview mode

    Does anyone know why my course will not open in a web browser. It's a pretty standards course. It's 800 X 600 with 73 slides that are all about 10 seconds long. It does have a few videos incorporated, but I removed them and published and I still got nothing in a web browser. Any ideas?

    I'm afraid you haven't given us enough information to know how to help you.
    More details please. 
    Screenshots of what you see perhaps?
    Do you have the same issue with a new blank project uploaded to the same publish folder with the same browser?

  • Unable to open reports in web browser through 9ias

    Hi ...
    I got the following error when i am clling from web.
    I saved my reports into database from .rdf format.
    Error: The requested URL was not found, or cannot be served at
    this time.
    Oracle Reports Server CGI - Report Job has terminated with error.
    Reports Server Replies:
    REP-0110: Unable to open file 'STATION'.
    REP-1070: Error while opening or saving a document.
    REP-0110: Unable to open file 'STATION'.
    I wouid appreciate any help
    Regards
    Gopi

    Hi,
    Just check I think users are executing reports first time, Go to Start Menu of Windows -> All Programs -> Business Explorer -> Analyser.
    Then a pop windows will come which will ask for enabling Macros in Excel.
    Check the Authorization Role for User in TCode PFCG, Check the Sub option for S_RS_COMP & S_RS_COMP1.
    Regards,
    Rajdeep.

  • Unable to open PDF in Web Browser and delay for printing

    In my LAN, on several PCs running with Windows 7 (32 and 64 bits), I observe two problems with "Acrobat Reader XI":
    - Delays / unable to open pdf files in the web browser (Internet Explorer).
    - Delays in printing: for example it takes over 8 minutes to print a pdf file: 400kB for two pages (on different printers / models).
    Here's the list of actions that I've allready tried to issue those problems:
    For the Web Browser problem :
    - Repair the "Acrobat Reader XI" installation.
    - Uninstalling and Installing Acrobat Reader.
    - In the web browser, disabling and activating the add-on (Adobe PDF Reader).
    - Uninstall "Acrobat Reader XI" and install "Acrobat Reader X"
    Temporary issue: downgrade to "Acrobat Reader 9", which solves the problem with the web browser.
    For the printing delay:
    - Repair the "Acrobat Reader XI" installation
    - Change the printers drivers (install Universal Drivers PCL)
    - Check the box: "Print As Image" before printing
    Any Idea ?

    You can get that error if there is still an old Adobe Reader plugin in the plugins folder in the Firefox program folder.
    C:\Program Files\Mozilla Firefox\plugins\nppdf32.dll
    See also http://kb.mozillazine.org/Adobe_Reader

  • XML - WML; Unable to open in WAP/WEB browser

    I am trying to convert an XML document into a WML document. I have the following code:
    private void generateWML() {
         wmlPath = root+System.getProperty("file.separator")+"results.wml";
         File results = new File(wmlPath);
         try {
              //instantiate a TransformerFactory
              TransformerFactory tFactory = TransformerFactory.newInstance();
              //Generate TRansformer object using stylesheet Source
              Source stylesheet = new StreamSource(stylePath);
              Transformer transformer = tFactory.newTransformer(stylesheet);
              transformer.setOutputProperty(OutputKeys.INDENT, "yes");
              transformer.setOutputProperty(OutputKeys.MEDIA_TYPE, "text/vnd.wap.wml");
              //Use transformer to transform XML source and send the output to SourceResult object
              StreamSource xmlIn = new StreamSource(xmlPath);
              StreamResult wmlOut = new StreamResult(results);
              transformer.transform(xmlIn, wmlOut);
         catch (TransformerConfigurationException tce) {
              out.println(tce.getMessage()+"<br />");
         catch (TransformerException te) {
              out.println(te.getMessage()+"<br />");
    }I can open the resultant wml file in my text editor, but am unable to load the file both in IE and in my WAP phone simulator.
    I get an alert box saying Access to the specified device, path, or file is denied when I try to open the file in IE, and I get a No response, Try again alert when I try to load the file in my Nokia Mobile Internet Toolkit.
    Does anyone know how to solve this problem?
    Thanking in advanced.
    gerbera

    Hi ,
    I've a problem in browsing in WAP phone simulator. I use xml --> xsl --> wml.
    But, in wap phone, i can see only "url not found" error. How can i solve it?
    Plz help me if possible.
    Here's my code.....
    ----------------------------- address-wml.xsl ------------------------------------------------------------
    <?xml version="1.0"?>
    <xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
    <xsl:template
    match="contact">
    <xsl:processing-instruction name="cocoon-format">
    type="text/wml"
    </xsl:processing-instruction>
    <wml>
    <card id="index" title="Your Contacts">
    <p align="center">
    Phone Book
    </p>
    </card>
    <card id="contact" title="Phone Book">
    <p>
    <b><xsl:value-of select="name/first-name"/>
    <xsl:text>
    </xsl:text>
    <xsl:value-of select="name/last-name"/></b>
    <xsl:value-of select="phone"/>
    <do type="accept" label="More">
    <go href="#Address"/>
    </do>
    </p>
    </card>
    <card
    id="Address" title="address">
    <p>
    <b>
    <xsl:value-of
    select="name/first-name"/>
    <xsl:text> </xsl:text>
    <xsl:value-of
    select="name/last-name"/>
    </b>
    <xsl:value-of select="address/street"/>
    <xsl:value-of select="address/city"/>
    <xsl:value-of
    select="address/state"/>
    <xsl:value-of select="address/country"/>
    Main
    <do type="prev">
    <prev/>
    </do>
    </p>
    </card>
    </wml>
    </xsl:template>
    </xsl:stylesheet>
    ---------------------------------------------- homer.xml ------------------------------------------------------------
    <?xml-stylesheet href="address-wml.xsl? type="text/xsl? media="wap"?>
    ---------------------------------------------- sitemap.xmap --------------------------------------------------------
    <?xml version="1.0"?>
    <!-- CVS $Id: sitemap.xmap,v 1.13 2003/11/18 07:12:10 tony Exp $ -->
    <map:sitemap xmlns:map="http://apache.org/cocoon/sitemap/1.0">
    <!-- =========================== Views =================================== -->
    <map:views>
    <map:view name="content" from-label="content">
    <map:serialize type="xml"/>
    </map:view>
    <map:view from-label="content" name="pretty-content">
    <map:transform src="context://stylesheets/system/xml2html.xslt"/>
    <map:serialize type="html"/>
    </map:view>
    <map:view name="links" from-position="last">
    <map:serialize type="links"/>
    </map:view>
    </map:views>
    <!-- =========================== Pipelines ================================= -->
    <map:serializers>
    <!--<map:serializer logger="sitemap.serializer.wml" mime-type="text/vnd.wap.wml" name="wml" src="org.apache.cocoon.serialization.XMLSerializer">
    <doctype-public>-//WAPFORUM//DTD WML 1.1//EN</doctype-public>
    <doctype-system>http://www.wapforum.org/DTD/wml_1.1.xml</doctype-system>
    <encoding>ASCII</encoding>
    <omit-xml-declaration>yes</omit-xml-declaration>
    </map:serializer>
    </map:serializers>
    <map:pipelines>
    <map:pipeline>
    <map:match pattern="homer.wml">
    <map:generate src="homer.xml"/>
    <map:transform src="address-wml.xsl"/>
    <map:serialize type="wml"/>
    </map:match>
    </map:pipeline>
    </map:pipelines>
    </map:sitemap>

  • Unable to open links in new window when using servicedesk app. it was ok in ver 3.6

    there was no issue until firefox was upgraded to 6.02

    After clicking the preference on, off, then on again, the tabs feature has returned to normal upon a restart.

  • Open URL in Web Browser from a Java Application

    Hi,
    I have an HTML document that I want to load in a browser window by clicking on a button in my java GUI application.
    Any suggestions?
    Thanks.

    You can use the Process class to start the web browser with the proper command line arguments (depends on the web browser though). Or on windows, you can have your program create a batch file with the code start url (where [url] is your url), and this will open the default web browser when run (again you must run it with a Process).

  • Openning a native web browser on Air desktop app

    I have developed an desktop air app with aptana studio.
    i want to attach a google adsense banner into my air app.
    but i got a problem that air app doesn't open a native webrowser.
    How can app open a native web browser when click in iframe?

    The iframe seems to load code from a remote location, and thus this code will be in a remote sandbox, not in the application sandbox, for obvious security reasons. This means that the code inside the iframe will net be able to use the air APIs.
    If you can control the content from the remote location, you can use the parent sandbox bridge (http://help.adobe.com/en_US/AIR/1.5/devappshtml/WS5b3ccc516d4fbf351e63e3d118666ade46-7f08. html#WS5b3ccc516d4fbf351e63e3d118666ade46-7edd) to make a call from inside the iframe to the main application to open the browser window.
    Otherwise, I don't think there's a way for content loaded from a remote location to open native browser windows (this would be a security issue).

  • Pictures previously included as part of an email are no longer there. If I forward the email to another web browser the picture is there. This just started happening after my last upade and I do not know why.

    For some reason pictures that have been included in emails as part of the email are no longer there. This seems to have happened after my last update of firefox. If I forward the email to another web browser on my computer the picture is then visible as part of the email. The pictures I am talking about are not ones attached for me to open but ones that are included as part of the email.

    See:
    * http://kb.mozillazine.org/Images_or_animations_do_not_load
    * You can see the permissions for the domain in the current tab in Tools > Page Info > Permissions
    * You can check the exceptions in Tools > Options > Content: Load Images > Exceptions
    * You can check the Tools > Page Info > Media tab for blocked images (scroll through all the images)
    There are also extensions (Tools > Add-ons > Extensions) that can block images.

  • Opening PDF in Web Browser(IE)

    Hi,
    I have written a program to download PDF file. When user will click on "Download" link, PDF file should open in web browser IE itself. Currently file is opening in separate window. I am creating this PDF file run time and it is not stored in harddisk. In Acrobar Reader, I have checked the check box "Display PDF in browser". Despite this it is opening in separate window.
    I have written following code:
    byte abyte0[] = pdfGenerator.generatePDF(getXslFile(instancedata), new String(instancedata.requestResult.message, "UTF-8"));
    httpservletresponse.setHeader("Cache-Control", "no-cache");
    httpservletresponse.setHeader("Cache-Control", "max-age=0");
    httpservletresponse.setHeader("Content-Disposition", "inline; filename=" + instancedata.userId + "_" + System.currentTimeMillis() + ".pdf");
    httpservletresponse.setContentType("application/pdf");
    String s = new String(abyte0, "UTF-8");
    servletoutputstream = httpservletresponse.getOutputStream();
    servletoutputstream.write(abyte0, 0, abyte0.length);
    servletoutputstream.flush();
    Kindly suggest what is required to open PDF in Web browser (IE).
    Regards,
    Dev

    I don't see anything wrong here offhand.
    In your download link, you aren't using target="new" or anything, are you?

  • One or more PDF documents are open inside a web browser - message

    Hi,
    I have a new L series notebook and its great. The only foible I can think of is a message I keep getting when I try to shutdown. There is a message box that says "One or more PDF documents are open inside a web browser. If you exit adobe reader now, those documents will be closed. Are you sure you want to exit?".
    The thing is I do not have any PDF's or web browsers open at the time! Can you help me please?
    Thanks, Mark.

    Hi Mark
    Believe me its nothing serious the same happens on my notebook from time to time
    Usually the PDF files can be read with the Adobe Acrobat reader. This application service runs in the OS background and this message can appears if the Adobe Acrobat reader cannot close the background process automatically
    I have solved this tiny problem by removing the acrobat reader from the system. After new reboot I have reinstalled it again
    Now the message does not appear and all runs like a dream ;)

  • "Unable to open document in this browser"

    I get this notification when I try to open this documents. "Unable to open document in this browser".

    In firefox go to Tools>Options>Applications. Find Portable document format (PDF), click the drop-down next to it and choose "Use Adobe Reader.

  • "This form cannot be opened in a web browser. to open this form use microsoft infopath" while adding a new Approval - Sharepoint 2010 and Publishing Approval workflow.

    I am trying to add a new workflow to a document library with the below mentioned settings and getting error saying "This form cannot be opened in a web browser. to open this form use microsoft infopath" while adding a new Approval - Sharepoint
    2010 and  Publishing Approval workflow" . For your information the I have checked the server default option to open in browser.
    Versioning Settings.
    Error
    This is quiet urgent issue . Any help would be really helpful.. Thanks.. 

    Hi Marlene,
    Thank you very much for your suggestions.
    But I am not creating a custom workflow in designer as Laura has mentioned. I am instead trying to create a new Out of the box Approval Workflow and I get the error mentioned above.
    As it works in other environment, I tried figuring out the possible differences which can lead to this error.
    Today I found one difference which is there are no form Templates within Infopath Configurations in Central Admin. Now I am trying to figure out what makes this form templates to be added to the template gallery.
    Regards,
    Vineeth

  • Open PDF in same browser when the preference is set to open in new window.

    The corporate policy for all applications is to open the PDF document in new browser/reader but our application needs the reader to open in the same browser even the preference "Display PDF in Browser" is unchecked.... The setPreference from javascript (html) doesn't seemed to work... How do i make this work?
    Also, I need the links the browser to open in new browser once the PDF is loaded... do I need to reset the preference once it is loaded for the links to open in new browser?
    thanks,
    - Ray

    There is no way to override that from your application.   And if the Links in the PDF have an explicit "open in new window" setting, that is respected over the preference.
    From: Adobe Forums <[email protected]<mailto:[email protected]>>
    Reply-To: "[email protected]<mailto:[email protected]>" <[email protected]<mailto:[email protected]>>
    Date: Wed, 19 Oct 2011 22:02:53 -0700
    To: Leonard Rosenthol <[email protected]<mailto:[email protected]>>
    Subject: Open PDF in same browser when the preference is set to open in new window.
    Open PDF in same browser when the preference is set to open in new window.
    created by h_ray<http://forums.adobe.com/people/h_ray> in Acrobat SDK - View the full discussion<http://forums.adobe.com/message/3981167#3981167

  • Flex 2 SWF not loading on the web browser when Flash Player 8 is running

    I got a Flex 2 application that is not loading on the web
    browser when the users workstations got Macromedia Flash Player 8
    installed. Please advice on what could be the issue, i got security
    calls included i.e. securty.allowInsucureDomain, crossdomain.xml,
    etc.
    The application shows no issues on web browsers with Flash
    Player 9 installed.

    if you have read developersGuide it says that there somewhere
    http://livedocs.adobe.com/flex/201/html/wwhelp/wwhimpl/js/html/wwhelp.htm?href=Part2_DevAp ps_048_1.html
    here is workaround
    http://kb.adobe.com/selfservice/viewContent.do?externalId=749eaa47&sliceId=1
    flex 9 is complete rewrite (almost) and its lot mor fast and
    effecient) you should't want to use flash 8 if you can anyways, but
    somethimes I guess there is not other way out..

Maybe you are looking for