Pop-up Window Location

I want my pop-up window to appear near the control that summons it.  I've read about this on other threads, but my implementation does not work--the pop-up always appears in the same place, and its location has nothing to do with the location of the control that summons it.
I've attached images showing the VI and its pop-up sub VI.
The VI:
The pop-up:
(Edited for bad HTML.)
Message Edited by DJDDA on 12-19-2008 01:05 PM
Solved!
Go to Solution.
Attachments:
loadlocamp.gif ‏5 KB
loadlocwin.gif ‏4 KB

There is a 'Panel to Global Coordinates' method.
Here is an (untested) piece of code that should work:
Ton
Message Edited by TonP on 12-19-2008 10:21 PM
Free Code Capture Tool! Version 2.1.3 with comments, web-upload, back-save and snippets!
Nederlandse LabVIEW user groep www.lvug.nl
My LabVIEW Ideas
LabVIEW, programming like it should be!
Attachments:
Example_VI_BD.png ‏3 KB

Similar Messages

  • Just recently I am getting the following error message when trying to access web sites. I get a pop up window stating "Exc in ev handl: TypeError: c.location is null" then I have to click ok. It is an issue with some plug-in?

    Just recently I am getting the following error message when trying to access web sites. I am using Firefox browser version 10.0.2. I get a pop up window stating "Exc in ev handl: TypeError: c.location is null" as the web site page is being displayed in browser winder. Then I have to click ok. It doesn't matter what web link/site I go to it happens. It is an issue with some plug-in?

    I have advised McAfee's product team of the problem and this thread, and they're looking into it now.

  • When I try to type in pop-up window while using webbased templates, the cursor moves to the location/address bar

    I use web-based templates for formulating replies to email queries of customers. When I click on a template, pop-up windows open for entering all non-general/specific details in the template. With the installation of the new version of Firefox, what happens is that when I try to type in the pop-up window, the cursor automatically moves to the address/location bar ! This was not the case with the old firefox. How do I prevent my cursor to move automatically to the address bar ?

    Hi jaideepdesai,
    Do you have the accessibility type in page option turned on?
    I think it is [http://kb.mozillazine.org/Inline_autocomplete]
    I it is definitely one of these: browser. urlbar.
    See [http://kb.mozillazine.org/Firefox_:_FAQs_:_About:config_Entries About:config entries]
    By default a new window should open the cursor in the search field on the page. Resetting Firefox will get you back to the default on about:support page.

  • How can I create a text pop up window in my Pages document? I want text to pop up when the reader hovers his/her cursor over a certain word.

    How can I create a text pop up window in my Pages document? I want text to pop up when the reader hovers his/her cursor over a certain word in the document. I am teacher. So for example when a student came to word he/she did not know, if he/she hovered the cursor over the word, a defintion or other information would appear.  You can do this in Word using bookmarks/hyperlinks but I can't figure this out in Pages. I can link it to another point in my Pages document but I just need the text to pop up - not take the reader to another location.  THANK YOU!!!!!!

    Have you tried Word for Mac?
    You will need to test if links survive export or printing to .pdf
    Peter

  • Passing values from javascript in pop up window to parent jsp

    Hi
    I am trying to pass values from a pop up window to the main window that popped this child window , with the idea to have the parent window refresh itself with value from pop up window.But the values are not going through.I do a request on the hidden variable but when the parent
    jsp refreshes , the variable is still null...
    The following is the code i have .
    Parent jsp:a.jsp
    <form name='summary'>
    <input type=hidden name=customerid value="">
    <input type="button" class="textButton" name="action" value="customerlist" onClick="javascript:openWin('b.jsp','800','350')">
    <script>
    function openWin(loc, w, h) {
    var newWin = window.openloc,"HTML",'dependent=1,toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=1,resizable=1,width=' + w + ',height=' + h);
    newWin.window.focus();
    </SCRIPT>
    <%
    String optionVal = request.getParameter("customerid");%>
    var user = "<%= optionVal%>";
    </form>
    child jsp- b.jsp (pop up window)
    <script>
    function closer(){
    var val = document.formname.id.selected.value;
    window.opener.document.summary.customerid.value = val;
    window.opener.location.reload();
    </script>
    <form name = formname>
    <input type="text" name="id" value = ''>
    <input type="button" class="textButton" value="select"
    onClick="closer();window.close();">
    </form>
    Any ideas on what i am missing
    Thanks
    Arn

    use window.opener.document.forms[0].filedname.value = 'value u need to set'

  • Delete the entry from dropdown list in the pop up window in ALV report

    Hi All,
    I have a requirement in the ALV interactive report ZMM_IMPL .If we enter selection screen parameters its displaying the first screen.If we click on 'Goods Issue' tab ,it display the pop up window for Requirement Pick list with Batch number ,Storage location and Quantity.Here we have F4 option for batch number(MCH1-CHARG) and we could see all batches (with stock and without stock) in the drop down.
    Now my requirement is i would need to delete the non stock batches from drop down values.
    Ex:we clich F4 in batch number field(CHARG) ,could see 4 batches Test1 ,Test2 ,Test3 and Test4 .Here Test1 ,Test2 are Batch stock and other two are Non stock batches. We could see all these batches (with and without stock) in MCHB table.Now i would need to delete non stock batches(Batch with zero qty (MCHB-CLABS = 0) from drop down.
    Any idea on this.
    Regards,
    Rpn

    Hi,
    User wants to appear only batches with stock value in the drop down .Here Batches test1, test2 , test3 have stock but  test4  has no stock value. Now the requirement is  if stock does not exist in any of those batches it should not appear in the drop down and propose batches based on quantity.
    Batch stock value can be seen through transaction MB52  and could see only Test1.Test2 and Test3.
    They have arleady code in the program for F4 help to Batch number as following,
      CLEAR: lips.
      REFRESH: gt_lips.
      lips-vbeln = f_vbeln.
      lips-posnr = f_posnr.
      lips-matnr = f_matnr.
      lips-werks = f_werks.
      lips-lfimg = f_bdmng.  "store the requirement quantity for display
      lips-pstyv = f_res_del.  "use to store RES or DEL      "DV1K919143
      CALL SCREEN '0100' STARTING AT 10 2.
    for the ok code to be BT_SAVE all the validation are complete
      IF g_ok_code NE 'BT_SAVE'.
        f_answer = 'A'.
      ENDIF.
    The logic for screen '0100' as follows
    PROCESS BEFORE OUTPUT.
    *&spwizard: pbo flow logic for tablecontrol 'TC_LIPS'
      module TC_LIPS_change_tc_attr.
    *&spwizard: module TC_LIPS_change_col_attr.
      loop at   GT_LIPS
           into GS_LIPS
           with control TC_LIPS
           cursor TC_LIPS-current_line.
        module TC_LIPS_get_lines.
    *&spwizard:   module TC_LIPS_change_field_attr
      endloop.
      MODULE STATUS_0100.
    PROCESS AFTER INPUT.
    *&spwizard: pai flow logic for tablecontrol 'TC_LIPS'
      loop at GT_LIPS.
        chain.
          field GS_LIPS-CHARG.
          field GS_LIPS-LGORT.
          field GS_LIPS-LFIMG.
          module TC_LIPS_modify on chain-request.
        endchain.
        field GS_LIPS-SELKZ
          module TC_LIPS_mark on request.
      endloop.
      module TC_LIPS_user_command.
    *&spwizard: module TC_LIPS_change_tc_attr.
    *&spwizard: module TC_LIPS_change_col_attr.
    MODULE USER_COMMAND_0100.
    MODULE USER_COMMAND_EXIT_0100 AT EXIT-COMMAND.
    process on value-request.
      field gs_lips-charg module lips-charg_values.
    Logic for F4 help as following
    DATA: mc_object LIKE dd23l-mconame,
             help_lips LIKE lips.
       DATA: dseltab LIKE dselc OCCURS 10 WITH HEADER LINE.
       DATA: lf_shlpname LIKE dd30v-shlpname,
             lx_shlp TYPE shlp_descr_t,
             ls_interface LIKE ddshiface,
             lf_rc LIKE sy-subrc,
             lt_retvalues LIKE ddshretval OCCURS 0,
             ls_retvalue LIKE ddshretval.
       help_lips = lips.
       IF NOT help_lips-matnr IS INITIAL.
         CALL FUNCTION 'CONVERSION_EXIT_MATN1_INPUT'
           EXPORTING
             input        = help_lips-matnr
           IMPORTING
             output       = help_lips-matnr
           EXCEPTIONS
             length_error = 1
             OTHERS       = 2.
         IF sy-subrc <> 0.
        exit.                        "Ignore conversion errors "50A
         ENDIF.
       ELSE.
         EXIT.
       ENDIF.
       SET PARAMETER ID 'MAT' FIELD help_lips-matnr.
       SET PARAMETER ID 'WRK' FIELD help_lips-werks.
      Export parameters to memory to enable search help via classes
       CLEAR dseltab.
       REFRESH dseltab.
       dseltab-fldname = 'MANDT'.
       MOVE sy-mandt TO dseltab-fldinh.
       APPEND dseltab.
       dseltab-fldname = 'MATNR'.
       MOVE help_lips-matnr TO dseltab-fldinh.
       APPEND dseltab.
       dseltab-fldname = 'WERKS'.
       MOVE help_lips-werks TO dseltab-fldinh.
       APPEND dseltab.
       dseltab-fldname = 'CHARG'.
       MOVE help_lips-charg TO dseltab-fldinh.
       APPEND dseltab.
       EXPORT dseltab TO MEMORY ID 'DSELTAB'.
      Get description for search help
       mc_object = 'MCH1'.
       lf_shlpname = mc_object.
       CALL FUNCTION 'F4IF_GET_SHLP_DESCR'
         EXPORTING
           shlpname = lf_shlpname
           shlptype = 'SH'
         IMPORTING
           shlp     = lx_shlp
         EXCEPTIONS
           OTHERS   = 1.
      Enable value copy from search help to dynpro field
       READ TABLE lx_shlp-interface INTO ls_interface
                                    WITH KEY shlpfield = 'CHARG'.
       ls_interface-valfield = 'X'.
       MODIFY lx_shlp-interface FROM ls_interface INDEX sy-tabix.
      Start search help dialog
       CALL FUNCTION 'F4IF_START_VALUE_REQUEST'
         EXPORTING
           shlp          = lx_shlp
         TABLES
           return_values = lt_retvalues
         EXCEPTIONS
           OTHERS        = 1.
       IF sy-subrc EQ 0.
         READ TABLE lt_retvalues INTO ls_retvalue
                                 WITH KEY fieldname = 'CHARG'.
         IF sy-subrc EQ 0.
           lips-charg = ls_retvalue-fieldval.
           gs_lips-charg = ls_retvalue-fieldval.
         ENDIF.
       ENDIF.
    How to delete entry from F4 help.Any idea?
    Regards,
    Reddy

  • Pop up window on Logon Screen

    Hi All,
    I would like to create a pop up window on Logon Screen. But my page is not found. Am I missing something?
    [A class="link_sub_menu" href="#" onClick="javascript:window.open(<b>'forgotmypassword.jsp,</b> '_blank', 'width=350,height=200,location=no,resizable=no');"]Forgot my password
    [/A]
    Tks,
    Alcides Flach
    Message was edited by:
            Alcides Flach

    hi,
    try this.
    data : WF_RES type c.
    CALL FUNCTION 'POPUP_TO_CONFIRM_STEP'
                EXPORTING
                 DEFAULTOPTION        = 'N'
              TEXTLINE1            = 'Do you want to delete the record?'
    *           TEXTLINE2            = ' '
                  TITEL                = 'Delete Zone'
    *           START_COLUMN         = 25
    *           START_ROW            = 6
    *           CANCEL_DISPLAY       = 'X'
               IMPORTING
                 ANSWER               = WF_RES.
    if wf_res = 'J'.
    user selected 'YES'.
    else.
    user selected 'NO'.
    endif.
    Rgds
    anver

  • Refining JS script to control a pop up window

    After much frustration... I have a working popup window to display small images. The script thanks to WEB DESIGN GARAGE by Marc Campbell is simple enough, he has me paste this in the body:
    <script language="JavaScript">   function doPopup(popupPath) {     window.open(popupPath,'name',       'width=400,height=200,scrollbars=YES');   } </script>
    And I call the popup window with:
    <a href="javascript:doPopup('..//obituary1');">Obituary1</a>
    that I insert in my text at the appropriate place. Adding more (renaming my file and text) as I need them.
    But.. one of the issues evidently with popup windows is that they sink. Clicking on a second one puts them all behind the main window.. So.. Marc includes some code to prevent this. and he writes
    To do this, add the onLoad event to the body tag of the popup  window's HTML file:
    <body onLoad="window.focus();">
        Now where and how do I place this, in my head section... the body section... before or after my popup script... or append it to the link part... Everyplace I place it I get... a yellow highlight in DW implying this will not work.. (it doesn't) or if I stick it where I do not get a yellow alert it does not work either.. and has broken my popup script.
    My testing site.. http://www.test.lsvs.ca/obituaries2.php
    Thanks for any insight / help
    Ralph

    Your pop-up windows look fine to me, but the onLoad code goes in your body tag:
    <script type="text/javascript" src="http://127.0.0.1:37935/xpopup.js"></script></head>
    <body onLoad="window.focus();">
    <p>
    <script language="JavaScript">
      function doPopup(popupPath) {
        window.open(popupPath,'name',
          'width=960,height=625,scrollbars=no,location=no,status=no');
    </script>

  • AirPort recognized but no pop-up window for remote speakers in iTunes

    I have connected an Airport Express to an existing wireless network of multiple windows (2000 and XP) computers via a Linksys router. The base station is properly recognized (solid green LED, unit correctly identified in admin utility, and I was able to update the firmware to v.6.3 wirelessly) and I have it configured as a wireless client. I want to use it solely to stream music from iTunes to a remote stereo. When I open iTunes, there is no pop-up window offering an option to enable remote speakers. When I installed the airport software, it tried to install iTunes, but the installation aborted because I have a more current version. Is there some software on the disk that needs to be added to iTunes? What is AirTunes? Is this actual software that needs to be installed to stream iTunes to a remote location? Does it refer to the airport firmware? Is it just a "cute" name for the airport hardware (Apple marketing hype)? Thanks for any help.

    Rj in WI is correct. I just started using iTunes about a month ago after my wife got an IPod. It took me about an hour of frustration and reading the instruction before I saw in the bottom right of the window "my computer". You click on that and then you can change it to the Airport network. Unfortunately It appears you can only send to only one place. I have two Aiport Expresses and I can only send it to one of the Express devices, or the computer, but not to two or all three places at one time.

  • Kill Finder pop-up window for LiveUpdate "ALERT: Please contact the Service Desk at (212) 522-7777."?

    Hello! I bought a second-hand 2008 Intel iMac last May from Ebay, which I was told was wiped but was/is not entirely. First off I will say I'm not a programmer; secondly I will say I first had Snow Leopard on this system and have recently upgraded to Mavericks, and the problem remains.
    I started receiving the occassional popup window on my desktop: "ALERT: Please contact the Service Desk at (212) 522-7777. Your AntiVirus software needs repair. LiveUpdate could not be found in the expected location." Typically appears after every time I restart my computer. I don't have LiveUpdate installed, so I did some Web searching and found that Symantec installs can sometimes leave crumbs around your computer, so I did some Terminal window stuff to try to clean this up (can't remember exactly what I did, but it was instructions from the Symantec website for uninstalling LiveUpdate). Didn't stop the the windows from popping up. I left it for a while, then was aggravated again when I found some parental settings in iTunes set by what seemed like a ghost administrator that was not there -- searched on that, and resolved the parental settings issue by clearing all relevant settings and fields under System Preferences > Network > Advanced, through which the computer was once remotely administered by TimeInc.
    I thought that would also take care of the popups as well but it didn't. I did the Symantec uninstall (that I mentioned above) again, no luck. I had been trying to search the Web for the entire popup message text to no avail, but then I tried just searching for the first sentence, and I found a website where someone had written code that looks to be for sysadmins to make these messages appear on computers they administer. I am almost positive my computer is not being remotely administered, but I assume I need to do something in my Terminal window to make this message stop appearing. Here's the code I found on the Web:
    if [ -f "/Applications/Symantec Solutions/LiveUpdate.app/Contents/MacOS/Liveupdate" ]
    then
    $logger "LiveUpdating Silently"
    "/Applications/Symantec Solutions/LiveUpdate.app/Contents/MacOS/LiveUpdate" -liveupdateautoquit YES -update LUal -liveupdatequiet YES
    $logger "LiveUpdating Completed"
    else
    $logger "LiveUpdate is missing!"
    osascript -e 'tell app "Finder" to activate' -e 'tell app "Finder" to display dialog "ALERT: Please contact the Service Desk at (212) 522-7777. Your AntiVirus software needs repair. LiveUpdate could not be found in the expected location."'
    fi
    $logger "Terminating Normally"
    exit 0
    Any advice on how to kill this Finder pop-up window will have my eternal gratefulness. Thanks!
    - Justin

    My preference is to not reinstall from scratch.
    Well, I can't in good conscience help with that. Essentially, what you're asking is the same as a guy telling his doctor, "Sorry, doc, I'm going to keep right on eating a dozen doughnuts a day, I just want you to give me a pill I can take to keep my arteries clear."
    Not only might there be malware on the machine, either accidentally (no, Symantec products won't do a decent job of protecting against that) or purposefully installed by the seller, but the machine obviously contains all manner of software that you do not have a license for. That software should not have been left on the machine, and it is not legal for you to be using it.
    Save yourself a lot of trouble and just wipe it clean. You'll get a fresh system, with no residual issues and no legal problems to deal with.

  • How can I open the EP login page in the same pop-up window?

    is it possible for me to using / only one window(Browser) pop-up to EP Page(Login or iView...).
    In the firs general html page I create a EP login page link action[eg. "window.open('url', 'target_name')"],
    but always launching new pop-up window(Browser).
    How can I open the EP login page in the only one window(pop-up)?
    Could anybody help me by giving suggestion and codding?
    Thanks,
    jin.

    Hi,
    if you want to redirect the root of portal system (http://portal/) to the login page, edit the
    file and change the body tag as follow:
    \usr\sap\J2E\JC00\j2ee\cluster\server0\apps\sap.com\com.sap.engine.docs.examples\servlet_jsp\_default\root\index.html
    <body onload="location.replace('irj/portal' + document.location.search)"></body>

  • TS3230 i get a pop-up window saying the current version of Safari does not support the community toolbar.  How do I get rid of this?

    i get a pop-up window saying the current version of Safari does not support the community toolbar.  How do I get rid of this?

    You need to uninstall the Community / Conduit toolbar add-on.
    Locate the files in bold print and move them to the Trash. The first five are in your root   /Library
    /Library/Application Support/Conduit
    /Library/InputManagers/CTLoader
    /Library/ScriptingAddtions (anything CTLoader realted)
    /Library/Receipts/<Toolbar name>.pkg
    /Library/Application Support/SIMBL/Plugins/CT2285220.bundle
    The next one is in your Home folder.
    ~/Library/Application Support/Conduit
    When you're done, try Safari.

  • Pop up Windows that display outside the field of view.

    I frequently connect multiple monitors to my laptop and it seems that some software "remembers" the location where it last displayed a pop up window. For example: The first time I access a function that displays a pop up window it will display
    on my main display which I then drag to one of the additional displays I have connected. The next time I access that function it will automatically appear on the additional display that I last dragged it to. The problem is that if I access that function
    when I don't have an additional display connected the pop up still behaves as though I do. I'm unable to see or access the pop up which is particularly problematic if the pop up is displaying a question that I must answer to continue. How do I correct this
    issue? Are there any hotkeys to remedy this?

    Connecting and disconnecting displays while the laptop is on can cause these issues. For best practice, have the laptop powered off when connected to the monitor and then power it up. To disconnect the monitor, power down the machine and disconnect.
    Don't forget to mark the post that solved your issue as &quot;Answered.&quot; By marking the Answer you are enabling users with similar issues to find what helped you. Lewis Renwick - IT Professional

  • How to show details from web part as pop up window

    Hello
    I designed few web pages in SharePoint Designer 2010 and trying to customize it. I have a XSLTListView web part that is displaying filtered data from the external SQL database. When user choses the item from this list, I need it to show in the new pop
    up window. I can't seem to find the way to do it. Saw multiple references to use SP.UI.ModalDialog.ShowPopupDialog(url), but I don't know how and where to incorporate it, since there is no place in the page where it actually specifies that url
    of the page that I need to show as pop up.
    Below there is a code for the XsltListWebPart, where I'm hoping I could make changes to make it pop up (it seems that this is the part that is calling the display details form). The form that I'd like to pop up is DispForm.aspx
    <script>
    function showpreview<xsl:value-of select="$ViewCounter" />(o) {
    count = 1;
    for(i = 0; i &lt; o.childNodes.length; i++)
    var child = o.childNodes[i];
    if (child.style.display == &quot;none&quot; &amp;&amp; child.tagName == &quot;DIV&quot;)
    f = document.getElementById(&quot;n&quot; + count + &quot;<xsl:value-of select="$WPQ" />&quot;);
    f.innerHTML = unescape(child.innerHTML) + &apos;&#160;&apos;;
    count ++;
    </script>
    <div id="previewpaneerror{$ViewCounter}" style="width: 801px"></div>
    <table cellspacing="0" cellpadding="0" border="0" id="previewpanetable{$ViewCounter}" dir="{List/@Direction}">
    <xsl:choose>
    <xsl:when test="not($dvt_RowCount=0)">
    <tr>
    <td valign="top" style="width: 186px">
    <div class="ms-ppleft" style="width: 100px">
    <table cellspacing="0" cellpadding="0" border="0" style="width: 122%">
    <xsl:apply-templates select="." mode="RenderView"/>
    </table>
    </div>
    </td>
    <td valign="top">
    <div id="preview1{generate-id()}" class="style2" style="width: 690px; margin-left: 30px;">
    <table border="0" cellpadding="0" cellspacing="0">
    <xsl:for-each select="ViewFields/FieldRef[not(@Explicit='TRUE')]">
    <tr>
    <td nowrap="nowrap" valign="top" class="ms-formlabel" style="width: 143px">
    <nobr>
    <xsl:value-of select="@DisplayName"/>
    </nobr>
    </td>
    <td valign="top" class="ms-formbody" id="n{position()}{$WPQ}" style="width: 370px">
    </td>
    </tr>
    </xsl:for-each>
    </table>
    </div>
    </td>
    </tr>
    </xsl:when>
    <xsl:otherwise>
    <tr>
    <td class="ms-vb">
    <table class="ms-summarycustombody" cellpadding="0" cellspacing="0" border="0">
    <xsl:call-template name="EmptyTemplate" />
    </table>
    </td>
    </tr>
    <tr>
    <td height="5">
    <img src="/_layouts/images/blank.gif" width="1" height="5" alt="" />
    </td>
    </tr>
    </xsl:otherwise>
    </xsl:choose>
    </table>
    </xsl:template>
    Alla Sanders

    Hi Alla,
    You can show details from web part as pop up window using JavaScript with SP.UI.ModalDialog.ShowPopupDialog(url). Here is a demo you can refer to:
    <script src="http://code.jquery.com/jquery-1.10.2.min.js" type="text/javascript"></script>
    <script type="text/javascript">
    $(function(){
    var obj1=$("a[id='forum0-NewPostLink']");
    url="http://sp13"+obj1.attr("href");
    //alert(url);
    obj1.removeAttr("href");
    obj1.click(function(){
    openDialogBox(url);
    function openDialogBox(url) {
    var pageUrl=url;
    var title="New Discussion";
    SP.UI.ModalDialog.showModalDialog(
    url: pageUrl,
    autoSize: true,
    title: title,
    dialogReturnValueCallback: function (result){
    if(result== SP.UI.DialogResult.OK){
    //refresh parent window
    window.location.href=window.location.href;
    </script>
    Reference:
    https://social.technet.microsoft.com/Forums/en-US/f18062ed-2e17-440e-8e00-2904f5316802/discussion-board-forum-opens-in-other-page?forum=sharepointdevel
    Best Regards,
    Eric
    Eric Tao
    TechNet Community Support

  • WEB.Show_Document(POP Up Window In 11g forms)

    Is it possible to open a Http inside the POP Up Window In 11g forms.
    This is what i tried to use:
    Created a Dummy Window,dummy Canvas and by clicking the push button i gave this message:
    web.show_document('http://www.google.com','Html_Window');
    WEB.Show_Document will open only in seperated window but i need to open in the Pop Window is it possible please help on this.

    As Denis mentioned, you cannot show html content natively in a form. You would need a bean to do that. However, if you are just trying to create something that looks like a standard browser pop-up window, there are several ways to do it. Be aware however, that in some cases, the following example will not work if you are using an older JRE. The latest JRE is 1.6.0_29 and runs the following code correctly assume the browser is not set to block pop-ups.
    EXAMPLE 1:
    web.show_document('javascript:window.open ("http://www.oracle.com","myPop","location=no,toolbar=no,menubar=no,status=no,resizable=yes,height=600,width=600");self.close();');
    EXAMPLE 2:
    Declare
         inJS      varchar2(32767);
    Begin
         -- More info about window.open here:
         -- http://www.w3schools.com/jsref/met_win_open.asp
         inJS := 'new_win=window.open("http://www.oracle.com","new_win1","menubar=0,location=0,toolbar=0,status=0,scrollbars=1,resizable=1,width=500,height=600");';
         web.javascript_eval_expr (inJS);
    End;

Maybe you are looking for

  • My iPhone 4s on the latest update freezes even after a full restore..  is it gone?

         At first, my iPhone 4s completely froze and I was unable to turn it on (even after holding power/home button--the apple logo would come on and then it would just turn off).  I wasn't able to get it into restore or DFU mode.  After some troublesh

  • Muse pages are not loading completely in browser. Forced to reload page to load.

    I have a several websites that I am working on that when I publish to a production server, the HTML is not completely rendering in the browser. After reloading all the elements display correctly. Any suggestions??

  • Placed Excel file - why are the dates wrong?

    I have just relinked a number of Excel spreadsheets in a Mac InDesignCC document and all the dates are now 4 years and a day later than they should be. I've searched the forums and it appears that this is related to the Excel 1900/1904 date system bu

  • Changing the Resident Management Point on SCCM

    Hello All, All my clients have stopped downloading software packages even though they recieve the advertisements. Everything else works in SCCM but that one critical part. It was all working fine before. After snooping around I find that clients have

  • RF Scanner / Implementation

    Hi Please explain the procedure invloved in a RF scanner implementation in a Warehouse. I assume the areas involved are. 1) IMG Mobile config 2) SAP Console setting 3) RF Device to SAP Console communication. Plse give as much information as possible.