How to open new window 640x520

When a user clicks on a button I want a 640 x 520 new window
to open, preferably without the browser address bar. You can see
the problem I'm having using target "blank" if you go to
http://movingcircles.com/ and
click on the first button (for Grand Entrance.) BTW if you go
there, please let me know how the flash file is playing for you.
Thanks.

Hi David --
I've used a DW extension called "Popup Link" with great
success. You can
specify not only the size of the pop-up, but you can also
position it on the
screen as well as determine which window attributes (address
toolbar, status
bar, etc.) are displayed.
You can find it here:
http://www.flevooware.nl/dreamweaver/extdetails.asp?extID=8
HTH
John
"David Mainstreet" <[email protected]> wrote
in message
news:fca10s$399$[email protected]..
> When a user clicks on a button I want a 640 x 520 new
window to open,
> preferably without the browser address bar. You can see
the problem I'm
> having
> using target "blank" if you go to
http://movingcircles.com/ and
click on
> the
> first button (for Grand Entrance.) BTW if you go there,
please let me
> know how
> the flash file is playing for you. Thanks.
>

Similar Messages

  • How to open new window and generate oracle report from apex

    Hi,
    I had created an application that generates PDF files using Oracle Reports, following this Guide.
    http://www.oracle.com/technology/products/database/application_express/howtos/howto_integrate_oracle_reports.html
    And I followed 'Advanced Technique', so that users can't generate PDF file by changing URL and parameters. This is done for security reasons.
    But in this tutorial, when 'Go' button is pressed, the PDF file is displayed on the same window of apex application. If so, user might close the window by mistake. In order to avoid this, another window have to be opened.
    So, I put this code in the BRANCH - URL Target. (Note that this is not in Optional URL Redirect in the button property, but the branch which is called by the button.)
    javascript:popupURL('&REPORTS_URL.quotation&P2100_REP_JOB_ID.')
    But if the button is pressed, I get this error.
    ERR-1777: Page 2100 provided no page to branch to. Please report this error to your application administrator.
    Restart Application
    If I put the code 'javascritpt ....' in the Optional URL Redirect, another window opens successfully, but the Process to generate report job is not executed.
    Does anyone know how to open new window from the Branch in this case?

    G'day Shohei,
    Try putting your javascript into your plsql process using the htp.p(); procedure.
    For example, something along these lines should do it:
    BEGIN
    -- Your other process code goes here...
    htp.p('<script type="javascript/text">');
    htp.p('popupURL("&REPORTS_URL.quotation&P2100_REP_JOB_ID.")');
    htp.p('</script>');
    END;
    What happens is the javascript is browser based whereas your plsql process is server based and so if you put the javascript into your button item Optional URL Redirect it is executed prior to getting to the page plsql process and therefore it will never execute the process. When you have it in your branch which normally follows the processes, control has been handed to the server and the javascript cannot be executed and so your page throws the error "Page 2100 provided no page to branch to"... By "seeding" the plsql process with the embedded javascript in the htp.p() procedure you can achieve the desired result. You could also have it as a separate process also as long as it is sequenced correctly to follow your other process.
    HTH
    Cheers,
    Mike

  • How to open new window with required size when clicking on image in a table

    Hi,
    There is an image column in advanced table. i want to open new window with required parameters(size, toolbar, status bar,etc..) and with that transaction context.
    can any one help plzzzzzzzz?
    Thanks
    Raju

    You can also use OAF js function to open modal pop up:
    openWindow(self, '<url>','longTipWin', {width:900, height:400}, true); return false;
    --Mukul                                                                                                                                                                                                                                                                                                                                   

  • How to open new window when i press submit button/submit button.

    Hi,
    When i press a button, I need to capture an item value in current from and I need to pass that value to another form. The child form should open in the new form.
    For that Iam using the java script, But when i use the java script my page is not able to re-size, scroll bars address bar and menu bars are missing. if any one did this kind of requirment please share with me how to solve this issue.
    Thanks

    Re: How to show Popup window in OAF on click of a button
    Thanks
    --Anil
    http://oracleanil.blogspot.com/

  • How to open new window in UIX page

    I'm using UIX for view layer. I have text input in the UIX form. When I click on a button, I want to open a new window with the URL built using the value from the input. I want to do it using javascript. Is it possible with UIX?

    Hi Krishnamoorthy,
    Look out the LovXXXX components demo in uix.
    See <script> demo of component guide. This should help you clearly understand the functionalities.
    See documentation of above UIX components
    Like providing handlers to HTML elements, you can attach event handlers to UIX components too. You can attach event handlers on onClick, onMouseOver,... on UIX components just as you would do in HTML.
    http://www.oracle.com/technology/sample_code/products/jdev/index.html
    This link could be of some help to you.
    Thanks,
    Vijay Venkataraman

  • How to open new window without loosing pageFlow context?

    I am using 8.1 SP 3.
    Here is what I need to do. I have a an anchor link in a jsp that needs to open a new window after executing an action in a page flow. That action forwards to a jsp that needs to be able to access pageFlow variables.
    So, I have the following:
    <netui:anchor target="_blank" action="timesheetSubmitView">
    Everything works fine, that is it opens a new window and keeps the pageFlow content, BUT the new window contains all of the portlets that were on the original page. What I need is a new window that just contains the jsp that my action forwards to.
    I looked through the various topics on this forum, but the recomended approach posted by someone to enable redirect does not work because weblogic is loosing the pageFlow context, so jsp errors out due to the fact that variable on a pageFlow is null.

    I had the same issue. A couple different things to try -
    1. There is a property called redirect in the action. Set it to true.
    That did not work for me, so I just used pageFlow variables and put things into the session. Bad way of doing it, but works :)
    In the action that loads the first JSP, put things into the session. Then in the timesheetSubmitView action get the stuff from the session.
    Write an onDestroy method that deletes the session stuff, when u are done with it.

  • How to open new window

    I have developed a JTable. What I need to do next is to have listeners for each of the cells in the table such that when the cell is double clicked, a new window should pop up.
    What listener needs to be implemented for this? Will the TableModelListener work?
    Any sample code, anyone?

    Add a MouseListener to the JTable. Look through some of the methods in the JTable class to see how you can find which cell was clicked.
    http://java.sun.com/j2se/1.5.0/docs/api/javax/swing/JTable.html

  • How to open new window in web dynpro

    I want to open a new window with specific URL in web dynpro on a button's click event. waiting for your suggestions to do this.
    thank you,

    Create an action and put following lines in it and bind it to button's onAction event.
    IWDWindow window = wdComponentAPI.getWindowManager().createNonModalExternalWindow( "http://www.jawed.info", "My Personal Website");
    window.show();

  • How to open new window webi report using open doc?

    Hi All,
    i have created URL using open doc in Bi 4.0 .please find the below my code.
    http://fcvws975/BOE/OpenDocument/opendoc/openDocument.jsp?iDocID=AeX5DoctKBhGv1AiV2oibxU&sIDType=CUID&sType=BI
    workspace&sRefresh=Y" title="" target="_blank" nav="doc"></a>
    When i click on this hyper link it is opening in the same page not in new window but i want to see report in new separate window.
    Can any one please help .
    Thank you,
    Regards,
    Venkat

    Hi,
    In BI4.1 SP03, there are couple openDocument fixes related to workspace.
    ADAPT01700442
    Description:
    When using an Opendocument URL to open a BI workspace, a timeout error occurs resulting in an HTTP 500 error
    message that reads: "Your session has expired".
    New Behavior:
    This problem is resolved.
    ADAPT01711393
    Description:
    In Internet Explorer 8, if you attempt to view an Analysis workspace embedded in the SAP NetWeaver Portal using
    OpenDocument, the workspace will fail to load.
    New Behavior:
    This problem is resolved.
    What version of BI4.0 do you have?
    If the fixes above are related to your openDocument workspace issue, I'd suggest you to test it on a BI4.1 SP03 sandbox.
    Hope this helps,
    Jin-Chong

  • Runtime.exec() - how to open new window for new program?

    Hi,
    I have searched through the forums but haven't found an answer to this one yet. I am using runtime.exec() to start up a new java program. At first I thought it wasn't running properly but, after checking task manager, I have discovered that the new program I open runs, it is just completely invisible to me. I am wondering how I can get the new program to run in a command window or something where I can monitor it.
    Thank you for your help,
    Drew

    Thank you all. After trying to figure out why the start command wouldn't work in the runtime.exec() call(not an executable - I am a dolt), I tried putting it in a batch file and it worked perfectly. Thanks for your help,
    Drew

  • How stop FF31 from opening new window? I want to open all links in new tab at top of page.

    I think the following, quote below, from the help page is my problem.
    I have this one website I use that when I click on a link within the website it is opening a new window with the tab at the bottom. Also, when this happens, I am losing the orange FireFox rectangle, bookmarks and navigation options. How can I set FF31 so that the link opens in a new tab and I keep all my options? I am using Classic Theme Restorer 1.2.3. I also notice that in the new window I lose the ability to use some of the addons.
    I have two laptops and both are running FF31 and W7. One of them is working perfectly and the other is having this problem. As far as I can tell they are both set up the same. The only difference is that when I upgraded to FF31 they both had difference older versions of FireFox. I also read in the help forum that maybe I need to go back to FireFox 28 to accomplish what I am trying to accomplish.
    I noticed that when I go under about:config that the version of FF that is not working has fewer available options versus the version that is working. An example would be that the working version has "browser.tabs.onTop" where on the other laptop this is missing.
    >>>Open new windows in a new tab instead: This option controls whether links from other applications or from web pages which request to open them in new windows are opened in a new window or a new tab in the most recent window.
    Note: If you have chosen to open pages in new tabs, Firefox will ignore this option and will open a new window from a link if the page author specified that the new window should have a specific size, because some pages can only be displayed correctly at a specific size.<<<
    Thank you in advance for any help,
    yeto

    You can override how links are opened via the browser.link.open_newwindow.override pref.
    *http://kb.mozillazine.org/browser.link.open_newwindow
    *1: current tab; 2:new window; 3:new tab;
    Use this for links opened via JavaScript.
    *http://kb.mozillazine.org/browser.link.open_newwindow.restriction
    See also:
    *http://kb.mozillazine.org/Prevent_websites_from_disabling_new_window_features

  • Just downloaded Firefox 6.0 and have restarted 4 plus times, but it continues to hang while launching. I cannot open new windows, change any settings, or do anything but Force Quit. I'm on Mac OSX 10.5.8. How do I get past this hang?

    Just downloaded Firefox 6.0 and have restarted 4 plus times, but it continues to hang while launching. I cannot open new windows, change any settings, or do anything but Force Quit. I'm on Mac OSX 10.5.8. How do I get past this hang?

    Long story short: Simply get CC for teams. At 500 bucks a year it's a steal and those 5 licenses in the base package (or was it 10 even?) cover all your computers, at least the 3 ones you mentioned. For system requirements refer to the individual product pages.
    Mylenium

  • How do I forces FF 23 to open maximized, not full screen, but maximized, both on start up and when opening new windows?

    Firefox 23 does not open maximized nor does it open new windows maximized. As such I have to manually maximize each window.
    Run is set to maximized in the shortcut properties, yet it still opens in a normal or less than normal size window.
    Older versions open maximized with no problem. I have Profile manager configured so that I can run multiple versions at the same time and everything opens maximized except FF 23.
    is there some setting in the about:config interface or is this a genuine BUG in the latest version? Any help would be appreciated greatly.
    Also can you tell me how to modify the title bar text/icon/etc as well as where to find the icon or portable network graphic (png) file for the main-window.ico or direct me to appropriate knowledge base articles for modifying both.

    My localstore.rdf file was fine. The problem was caused by two plug-ins that Mozilla shows as being compatible with Firefox 23, when in fact they both cause undesired side effects.
    Maybe the employees of Mozilla should actually test plug-ins before they allow them to be available for download or worse yet, recommend them.
    And if any of the in-house developers had a clue they would stop removing old lines of code from Mozilla products so that new versions of Firefox would still be compatible with older plug-ins and extensions people would still like to use.
    I had to remove recommended extensions and copy code from older versions of FF and NS and modify settings in about:config to allow older extensions to work to correct the problems and get Firefox to work the way I need it to. All in all I have over forty hours invested in modding FF at this point just to have it function the way it used to.
    Unfortunately, since I still can't get buttons designed to open .URL links from the toolbar to work as they did in the past I have a feeling I'll be returning to older code sources to find more answers.
    Lucky for me that I have every browser going back to NCSA Mosaic available to me, so every bit of code from the present till back before Mozilla existed is include in my knowledge base. It's a shame Mozilla doesn't keep such a reference available for it's users or apparently it's in house developers and staff.
    Maybe I'll even re-enable the splash screen for Firefox since the only available plug-in for that doesn't appear to work with Version 23 either, even though once again the compatibility adviser says it does
    It's truly sad that the result of Marc Andreessen's and James Clark's work and Netscape in general became the spawning Mozilla. What used to be a great browser and an acceptable replacement for Netscape, has become a joke. So much for all the hard work and effort made by Dave Hyatt and Blake Ross as well.
    I guess that's what one should expect from the developers that are a part of generations X, Y, and Me. The attitudes associated with those generations show in the lack of thought, consideration, and ingenuity that have been a part the last several versions of FF, not to mention, the copying of features from Chrome.
    When the only original idea to come out of Mozilla of late is to remove or disable features people have used and counted on for decades, the I don't care, I don't know, and me, me, me attitudes of so many from the aforementioned generations is truly evident in the last twenty incarnations of Firefox. Not to mention the attitudes and unhelpful nature of the responses users encounter when asking for help.

  • How do I change the default settings for opening new window?

    Everytime I click on a link, new window would only open in new tab not new window. How would I change this default to open new windows instead of new tab?
    Thanks.

    HI,
    From the Safari Menu Bar click Safari/Preferences (or Command + comma on your keyboard).
    Click Tabs. You can set your preferences there.
    Carolyn
    Message was edited by: Carolyn Samit

  • How do I set Firefox to open new windows in my second monitor?

    When opening a new window (by right clicking a link and selecting Open in New Window), I would like the window to be opened in my second monitor. Firefox used to do this, but randomly stopped. Now when I open a new window it is opened in my primary monitor. It does not open maximized (just short of being completely maximized). I have tried the fix I used before- moving the un-maximized browser to the second window, closing and re-opening the window. I have also tried moving the un-maximized browser, maximizing, closing and re-opening. Does anyone know how I can restore Firefox to open my new window in the second monitor?
    == This happened ==
    Every time Firefox opened
    == Randomly

    Click the orange Firefox button, and click "Options". This will bring up a new window with a "Tabs" tab at the top. Click that. There will be several checked boxes, including one called "Open new windows in a new tab instead" up at the top of the list. Uncheck that box and you should be good to go.
    ETA: This should also work if you click "Tools" and "Options" within your version.

Maybe you are looking for

  • Automatically change energy saver

    Is there anyway that I can have energy saver automatically change the setting to "Highest" when I start up Halo? I noticed a huge performance leap when I changed to highest in the middle of playing halo and was wondering if there were an easier way t

  • Interactive Report collapses to Top right

    When no data is returned from an IR, the region collapses to the top right corner. How do I make the IR collapse to the top left corner. Using APEX 4.2.

  • NullPointerException on object methods

    Hello everybody! I just started learning Java yesterday, and am looking forward to contributing to the forum! Here is a code I was working on today- it's the start of a simple game of blackjack. import java.util.Scanner; class BlackJack {      public

  • How much is the iPhone 4 at the discounted price?

    Apple's website says FREE. Verizon's site says $99. Which one is right???

  • Default system font

    Hello, I have a question about Windows-Default font. I Like to set the font size for Objects with the UI-Manager, but i don't know the windows system font. regards marco