Url won't open in new page.

I have a multiple action click box that is suppose to open a Url and make some text appear. The problem is it won't let me
select "New" from the drop-down menu to open the link in a new page. Every time I do it reverts back to Current. It will also let me select Parent or Top, but not New.
What am I missing?
Thank you.

Found the problem. Seems to be a bug. The drop-box won't change but if you set it to "New" and then publish, it works. The box will still say "Current", but it will open a new window.

Similar Messages

  • Link to url, "_self" is opening a new page...

    I am trying to get my button to navigate to _self and the link is opening a new page. Is there something wrong in my code?
    my_btn.addEventListener(MouseEvent.MOUSE_DOWN, mouseDownHandler);
    function mouseDownHandler(event:MouseEvent):void {
        navigateToURL(new URLRequest("myurl"), "_self");
    Thank you in advance for any help!

    both parameters are strings or string variables.  you're using a variable (which shouldn't be in quotes).
    here's a sample:  http://www.kglad.com/Files/forums/Untitled-2.html
    and, assuming that works for you:  http://www.kglad.com/Files/forums/Untitled-2.fla

  • Safari won't open a new page

    When I open Safari on my macbook, all it does is open the window and show me a non-blinking cursor in the address bar. I can't type anything in, and nothing happens.
    I'm running with all the latest updates installed, and confirmed that through the update checker. No other programs seem to be affected, and I can run other internet applications fine.
    Thanks!

    Welcome to Apple Discussions
    Three suggestions:
    "Repair permissions" via Disk Utility in your Utilities folder. Apple's guidance may be found here. Try Safari, if no change go to the next suggestion.
    Within Safari in your regular User Account:
    Drag to the trash the com.apple.safari.plist folder found in your User Account>Library>Preferences folder.
    Restart Safari. If this works, you'll need to reset your custom preferences, plus any custom settings in the Edit (spelling) or View (status bar, bookmarks bar, custom icons etc.) menus.
    Otherwise, move the file back to its original location.
    Last suggestion: Try Safari from another user account. Here is guidance from Apple on how to set up the account. You can ignore step 7 in the article.
    Also, on the system preference>Accounts panel, click on "log-in" options. There, select "fast user switching". This allows you to go back and forth between user accounts via an icon in your Menu Bar at the top of the computer screen.
    Log-on to the new account and start Safari. If the Safari works in the new account, then your problem is specific to your regular user account. Otherwise, similar response means a system-wide problem.
    Post back with results for further direction.
    iMac G5 Rev C 20" 2.5gb RAM 250 gb HD/iBook G4 1.33 ghz 1.5gb RAM 40 gb HD   Mac OS X (10.4.8)   LaCie 160gb d2 HD Canon i960 printer

  • When i open a new tab, rather than the curser flashing in the url space it opens a new search page. how do i get the new tab to open at the url?

    when i open a new tab, rather than the curser flashing in the url window it opens a new search page. a new tab used to open at the url - how do i get it to do so again?

    A new tab opens by default as a blank tab (about:blank).
    If that isn't the case then an extension has changed that behavior.
    * https://support.mozilla.com/kb/Troubleshooting+extensions+and+themes
    Start Firefox in <u>[[Safe Mode]]</u> to check if one of the extensions is causing the problem (switch to the DEFAULT theme: Firefox (Tools) > Add-ons > Appearance/Themes).
    *Don't make any changes on the Safe mode start window.
    *https://support.mozilla.com/kb/Safe+Mode

  • How can I open a new page (using "Pages") when I already have another page open?  It just keeps reverting to the page I have opened already and won't let me open another one?

    How can I open a new page (using "Pages") when I already have another page open?  It just keeps reverting to the page I have opened already and won't let me open another one?

    To make a new document, go to File > New From Template chooser and choose the type of document you wish to create.
    To add a new page to an existing document go to Insert > Sections > Blank.

  • Cannot open favourites using the Firefox tag that usually opens up the menu and a new page.. Now I get the dropdown menu but cannot open a new page, losing the homepage every time I explore, can you say WHY? all other versions worked fine!

    I cannot open a new page from the Firefox favorites menu, it worked before in other versions and this new 5.1 version, but stopped working a few days ago, uninstalled, downloaded a fresh program.. same problem exists. I usually leave my 'Home Page' as a stable page and just open 'new' pages for i.e. Google, Internet Banking etc. the '+' sign on my home page or other loaded pages does not operate, hate having to now constantly sign in to my hotmail home page if and when I open new pages, can you help?

    Websites remembering you and automatically log you in is stored in a cookie.
    * Create an allow cookie exception (Tools > Options > Privacy > Cookies: Exceptions) to keep such a cookie, especially for secure websites and if cookies expire when Firefox is closed.
    Make sure that you do not run Firefox in Private Browsing mode.
    * https://support.mozilla.com/kb/Private+Browsing
    * In [[Private Browsing]] mode all cookies are session cookies that expire if that session is ended, so websites won't remember you.
    * Do not use [[Clear Recent History]] to clear the "Cookies" and the "Site Preferences"
    Clearing "Site Preferences" clears all exceptions for cookies, images, pop-up windows, software installation, and passwords.
    * http://kb.mozillazine.org/Cookies

  • How to open a new page from a Spry Table click, with element info?

    Hello, Spry experts!
    This is probably simple, but I've searched for hours and can't find what I need. I'm using Dreamweaver CS4 and Spry 1.6.1 to create a simple Spry Table from an XML data set using PHP as my back end.  I've used Dreamweaver's Insert->Spry->Spry Data Set to create everything, and the table is working fine.  Colors, clicks, sorts, etc., are all working correctly as expected.
    What I want is to be able to add a behavior such that when a table row is clicked, I can open a new page.  Moreover, I want to pass a parameter from the table to the new page, like http://www.mydomain.com/newpage.php?aid=12345 or whatever.
    So, for example, my table has two columns, "a_id" and "a_name", and my repeat region looks like this:
    <div spry:region="xml_assignments">
    <table width="500">
    <tr>
    <th spry:sort="a_id" class="spry_header">ID</th>
    <th spry:sort="a_name" class="spry_header">Assignment</th>
    </tr>
    <tr spry:repeat="xml_assignments" spry:setrow="xml_assignments" spry:odd="spry_odd" spry:even="spry_even" spry:hover="spry_hover" spry:select="spry_select">
    <td>{a_id}</td>
    <td>{a_name}</td>
    </tr>
    </table>
    </div>
    What I want is to be able to open an entirely new URL, passing the value of the {a_id} in the selected row as a parameter to the new URL, as in something like:  http://www.mydomain.com/newpage.php?aid={a_id}
    So my questions are: 
    1. How best to apply the action to the table?  Add an onclick to the tr tag?  Something else?
    2. How to extract the {a_id} value from the current row and pass it as a parameter to the action?
    Or maybe just take another approach entirely?
    I know that I can make the actual text in the table cells hyperlinks, and use them to link to the new page, which is fine.  The desire here is just to make it so that the user can click "anywhere" on the table row (as they can currently do with the spry:select behavior) and have the link kick off, whether they actually click on the linked text or somewhere in the row where there is no text.
    I'm sure this is obvious and simple, but I'm new to this level of Spry detail, and my brain is fried from hunting.  Any guidance will be gratefully appreciated!
    Glen Barney

    I found the answer myself, after posting this, of course!
    I changed:
    <tr spry:repeat="xml_assignments" spry:setrow="xml_assignments" spry:odd="spry_odd" spry:even="spry_even" spry:hover="spry_hover" spry:select="spry_select">
    to
    <tr spry:repeat="xml_assignments" spry:setrow="xml_assignments" spry:odd="spry_odd" spry:even="spry_even" spry:hover="spry_hover" spry:select="spry_select" onclick="window.location.href='./newpage.php?aid={a_id}';">
    Basically just added the onclick parameter...
    And it all just worked!

  • When I click a link to open the page in new tab, it open the new page beside my page.

    After I update FireFox to version 3.6.8, I could not open the new page in the last tab, it always opens the new page in beside the tab.
    Mmm…I could not make sure the new page or new tab I said is the same with you…?? (I use Chinese version so that I don’t know if it’s the same or not…)
    A window could open several pages with different tabs, and I could click different tab to different page, right?
    If I right clicked a link to open the page to “new tab” in the same window, the new tab opened in the last tab of my window.
    But after I update FireFox to version 3.6.8 and I click a link to open the page to “new tab” in the same windoe, the new tab will open beside my page. (Mmm…Open on right of my page.)
    I would like the “new tab” open to the last tab in my window, not “beside” the tab I used. How could I change the setting??)
    == This happened ==
    Every time Firefox opened
    == After I update FireFox to 3.6.8

    That feature isn't new to 3.6.8, it was changed in 3.6.
    Type '''about:config''' in the URL bar and hit Enter.
    ''If you see the warning, you can confirm that you want to access that page.''
    Filter = '''browser.tabs.insertRelatedAfterCurrent'''
    Double-click that preference to change the value to '''''false'''''

  • Menu bar button hyperlink to open a new page?

    I want to know if there is a way to add a hyperlink to a Menu bar button to open a new page showing a pdf file?

    To open url on button click, you can use the following example, that I used in one of my cases...
    Z P/L analysis
        ls_button-text     = 'P/L analysis monitor'.
        ls_button-tooltip = 'P/L analysis monitor'.
        lv_string1 = 'javascript:window.open( "'.
        lv_string2 = '" );'.
        CONCATENATE lv_string1
        lv_url2
        lv_object_id
        lv_string2
        INTO lv_string3.
        ls_button-on_client_click = lv_string3.
        ls_button-page_id  = me->component_id.
        ls_button-enabled  = abap_true.
        APPEND ls_button TO rt_buttons.
        CLEAR ls_button.
    Comments:
    - lv_string3 represents the URL
    - lv_url2 contains the url of bsp component, which you can build manualy or read from any table with select single statement
    - lv_object_id represents the id of opportunity which you can read from BOL or with one of crm_order_read function modules
    Regards.

  • To open a new page by appending some values

    Hi,
    I created a button and on click of the button it should open a new page based on a few flag conditions.There are 4 URL's which are stored in a standard table.Please let me know how i can open the page by using the respective URL and then appending the opportunity value to it.
    Thanks,
    Sirisha N

    To open url on button click, you can use the following example, that I used in one of my cases...
    Z P/L analysis
        ls_button-text     = 'P/L analysis monitor'.
        ls_button-tooltip = 'P/L analysis monitor'.
        lv_string1 = 'javascript:window.open( "'.
        lv_string2 = '" );'.
        CONCATENATE lv_string1
        lv_url2
        lv_object_id
        lv_string2
        INTO lv_string3.
        ls_button-on_client_click = lv_string3.
        ls_button-page_id  = me->component_id.
        ls_button-enabled  = abap_true.
        APPEND ls_button TO rt_buttons.
        CLEAR ls_button.
    Comments:
    - lv_string3 represents the URL
    - lv_url2 contains the url of bsp component, which you can build manualy or read from any table with select single statement
    - lv_object_id represents the id of opportunity which you can read from BOL or with one of crm_order_read function modules
    Regards.

  • Yahoo Search pops up each time I open a new page - Uninstall??

    Yahoo Search pops up each time I open a new page - Uninstall??

    Opening Firefox in safe mode indeed eliminates the problem. Here is my list of add-ons:
    Adobe DLM (powered by getPlus(R)) 1.5.2.35 false {CF40ACC5-E1BB-4aff-AC72-04C2F616BCA7}
    Java Console 6.0.13 true {CAFEEFAC-0016-0000-0013-ABCDEFFEDCBA}
    Java Console 6.0.14 true {CAFEEFAC-0016-0000-0014-ABCDEFFEDCBA}
    Java Console 6.0.15 true {CAFEEFAC-0016-0000-0015-ABCDEFFEDCBA}
    Java Console 6.0.17 true {CAFEEFAC-0016-0000-0017-ABCDEFFEDCBA}
    Java Console 6.0.20 true {CAFEEFAC-0016-0000-0020-ABCDEFFEDCBA}
    Java Quick Starter 1.0 true [email protected]
    McAfee SiteAdvisor 3.2 true {B7082FAA-CB62-4872-9106-E42DD88EDE45}
    Microsoft .NET Framework Assistant 1.2.1 true {20a82645-c095-46ed-80e3-08825760534b}
    ShareThis 3.4.2 true {1b8cc170-8c85-11db-b606-0800200c9a66}
    Page Speed 1.8.3 true {e3f6c2cc-d8db-498c-af6c-499fb211db97}
    Java Console 6.0.21 true {CAFEEFAC-0016-0000-0021-ABCDEFFEDCBA}
    My.Freeze.com NetAssistant 3.6.4 true {03ED094E-6546-4294-96BD-7714E87DA888}
    Here is my list of "Modified Preferences":
    ccessibility.typeaheadfind.flashBar 0
    browser.history_expire_days.mirror 180
    browser.places.importBookmarksHTML false
    browser.places.importDefaults false
    browser.places.leftPaneFolderId -1
    browser.places.migratePostDataAnnotations false
    browser.places.smartBookmarksVersion 2
    browser.places.updateRecentTagsUri false
    browser.startup.homepage http://www.google.com/ig|http://www.google.com/ig
    browser.startup.homepage_override.mstone rv:1.9.2.10
    extensions.lastAppVersion 3.6.10
    font.minimum-size.x-western 14
    font.size.fixed.x-western 18
    font.size.variable.x-western 18
    general.useragent.extra.microsoftdotnet ( .NET CLR 3.5.30729)
    keyword.URL http://search.yahoo.com/search?fr=mcafee&p=
    network.cookie.lifetimePolicy 2
    network.cookie.prefsMigrated true
    places.last_vacuum 1285433477
    print.print_printer HP Deskjet 3840 Series
    print.printer_HP_Deskjet_3840_Series.print_bgcolor false
    print.printer_HP_Deskjet_3840_Series.print_bgimages false
    print.printer_HP_Deskjet_3840_Series.print_command
    print.printer_HP_Deskjet_3840_Series.print_downloadfonts false
    print.printer_HP_Deskjet_3840_Series.print_edge_bottom 0
    print.printer_HP_Deskjet_3840_Series.print_edge_left 0
    print.printer_HP_Deskjet_3840_Series.print_edge_right 0
    print.printer_HP_Deskjet_3840_Series.print_edge_top 0
    print.printer_HP_Deskjet_3840_Series.print_evenpages true
    print.printer_HP_Deskjet_3840_Series.print_footercenter
    print.printer_HP_Deskjet_3840_Series.print_footerleft
    print.printer_HP_Deskjet_3840_Series.print_footerright
    print.printer_HP_Deskjet_3840_Series.print_headercenter
    print.printer_HP_Deskjet_3840_Series.print_headerleft
    print.printer_HP_Deskjet_3840_Series.print_headerright
    print.printer_HP_Deskjet_3840_Series.print_in_color true
    print.printer_HP_Deskjet_3840_Series.print_margin_bottom 0.5
    print.printer_HP_Deskjet_3840_Series.print_margin_left 0.800000011920929
    print.printer_HP_Deskjet_3840_Series.print_margin_right 0.5
    print.printer_HP_Deskjet_3840_Series.print_margin_top 1.70000004768372
    print.printer_HP_Deskjet_3840_Series.print_oddpages true
    print.printer_HP_Deskjet_3840_Series.print_orientation 0
    print.printer_HP_Deskjet_3840_Series.print_pagedelay 500
    print.printer_HP_Deskjet_3840_Series.print_paper_data 1
    print.printer_HP_Deskjet_3840_Series.print_paper_height 11.00
    print.printer_HP_Deskjet_3840_Series.print_paper_size_type 0
    print.printer_HP_Deskjet_3840_Series.print_paper_size_unit 0
    print.printer_HP_Deskjet_3840_Series.print_paper_width 8.50
    print.printer_HP_Deskjet_3840_Series.print_reversed false
    print.printer_HP_Deskjet_3840_Series.print_scaling 0.90
    print.printer_HP_Deskjet_3840_Series.print_shrink_to_fit false
    print.printer_HP_Deskjet_3840_Series.print_to_file false
    print.printer_HP_Deskjet_3840_Series.print_unwriteable_margin_bottom 0
    print.printer_HP_Deskjet_3840_Series.print_unwriteable_margin_left 0
    print.printer_HP_Deskjet_3840_Series.print_unwriteable_margin_right 0
    print.printer_HP_Deskjet_3840_Series.print_unwriteable_margin_top 0
    privacy.sanitize.migrateFx3Prefs true
    privacy.sanitize.sanitizeOnShutdown true
    security.warn_viewing_mixed
    A sceenshot of the offending page(s) is attached
    Many Thanks for the Help
    Richard Lacroix

  • Firefox opens a new page

    When I click on the link mentioned (not every time) Firefox opens a new page (not a tab) that is blank from http://analics.google.come. When I view source it is a frameset with Display the only item.
    == URL of affected sites ==
    http://foxnews.com/videos

    http://results.google-analytics.com/ is the correct url for the new page.

  • All of a sudden I can no longer open tabs by clicking "+" or right clicking on the tool bar. To open a new page, I have to open a whole newFirefox window. How can I fix this?

    All of a sudden I can no longer open tabs by clicking "+" or right clicking on the tool bar. To open a new page, I have to open a whole new Firefox window. How can I fix this?
    Also, Firefox crashes frequently. Is there a fix for this also?

    Uninstall the Ask toolbar and it should work again. There is a compatibility issue with the Ask toolbar and Firefox 3.6 that prevents new tabs from being opened.
    There are a couple of places to check for the Ask toolbar:
    * Check the Windows Control panel for the Ask Toolbar - http://about.ask.com/apn/toolbar/docs/default/faq/en/ff/index.html#na4
    * Also check your list of extensions, you may be able to uninstall it from there - https://support.mozilla.com/kb/Uninstalling+add-ons
    For the second issue, the [[Firefox crashes]] support article may help.

  • Itunes installed but it won't open the new version- any advise

    itunes installed but it won't open the new version- any advise

    Hello goreckim,
    Thanks for the question, and welcome to Apple Support Communities.
    I understand you are having some issues with iTunes on your Mac Pro. You may want to isolate the issue further by testing to see if it persists in a new user account:
    Isolating an issue by using another user account
    http://support.apple.com/kb/TS4053
    You can also try starting iTunes in safe mode:
    iTunes: Troubleshooting issues with third-party iTunes plug-ins
    http://support.apple.com/kb/TS3430
    Thanks,
    Matt M.

  • Clicking on a link to open a new page or tab gives me a blank page.

    If I click on a link to open a new page or a new tab, the page that opens is always blank and no address is in the address bar. Also, occasionally, my refresh button is "grayed" out so I can't hit that either. I think this is some sort of security setting blocking it. Can anyone help.

    Thanks Jason, I had the same problem and did exactly the steps above. Problem solved! You rock! :)

Maybe you are looking for

  • Error in Logical port for Consumer proxy in SOAMANAGER

    HI Experts, While creating Logical port for Consumer proxy in SOAMANAGER I am facing problem "SRT Framework exception: Uninstantiated object "subject sidl service" in method IF_SRT_WSP_CONFIG_SIDL~CREATE_CLNT_CFG_FROM_WSDL_D of class CL_SRT_WSP_CONFI

  • Export and Import execution  in Oralce 9i forms

    I would like to import data from a flat file. I want to read the the file through forms, and execute the flat file using SQL loader on the Oracle 9i database. Is it possible? How can i invoke SQL loader from Oralce 9ias. Client machine does not have

  • Problem in Webservice - XI -JDBC

    Hi Experts, When I tried to execute the Webserive -> XI -> JDBC scenario using xmlSpy, I am getting the below. Could you please tell me what could be the reason? <s:SystemError xmlns:s="http://sap.com/xi/WebService/xi2.0">                          <c

  • If I reinstall Lion, and restore my computer from back-up, will it go any faster?

    My main issue is not wanting to lose any stuff. Other people use this computer and I can't change it any way apart from speed it up. Are there any other easy/simple techniques to do this?

  • CS5 keeps losing prefs

    I am pretty sure by now that there are some performance issues with CS5 on my system. First I thought it was random that my brush tools cursors occasionally become the hand or move tool, and I can't get the brush back most times. I also notice that w