Do NOT want to open link in a new browser window - iWeb '09

I do not want links that navigate around my website to open a new browser window every time. Right now, for example, From my main page, I click a link to a secondary page, it opens it in a new window, I then click the link back to my main page, and it opens in a new window. I now have 3 windows open.
I am not using the navigation bar as it set ups with iWeb (I have it hidden). I am using hyperlinks I attached to text boxes. Would this problem be remedied if I was using the navigation bar? If so, is there anyway to edit the appearance of the navigation bar and it's location on the page?
Primarily though, I would like my text hyperlinks to just navigate my page and not open in new windows.
Thanks!

And that's the way it should be.
If you look at this page about navigation you'll see that the main navigation uses eternal links and the sub navigation internal ones....
http://www.iwebformusicians.com/WebMusic/Navigation.html
Try the troubleshooting steps under "Fix iWeb" here.....
http://www.iwebformusicians.com/WebMusic/iWebTips.html

Similar Messages

  • Opening a servlet in new browser window

    Does anyone know how you can make a servlet open in a a new browser window when clicking a link for that servlet.
    cheers

    Hi..
    do
    window.open("http://localhost:8080//yourservlet-path//servlet-name");
    you can also set window properties, they are passed as parameters to window.open
    see syntax of window.open. but this thing will open your servlet in a new window with default properties.

  • IWeb link opening in a external (new) browser window.

    Dear members:
    After making several unsuccessful attempts to find this information I decided to post a questions here to see if anyone has the answer.
    I have created two web site with several web pages in iWeb but haven't been able to add links to a page that open not in that same page but to open in an extra (external) browser window. Is there a way to make a link open in a different browser window than the one that has the page with the link ?
    Another question I have refers to iWeb's display of some images. For my web sites I chose one of the templates offered with the program. In one of the pages there are small portions of text followed by a square image next to it. Some of the images in iWeb work as placeholders that are replaced by the final images once they are dragged and dropped over them. However, this small images following the text don't behave like that. They simply aren't replaced. I tried to "overlay" the final images over the template ones thinking that once the site was published they would be replaced. Actually, after posting the web site I noticed that when the pages load the template images show up first and them the ones I placed over them beginning to cover them.
    Why is this happening and how can I solve this problem ?
    Thank you in advance for your help.
    Best regards,
    Joseph Chamberlain

    Dear varkgirl:
    Thank you very much for your help and valuable suggestion.
    I've tried your suggestion but ran into some problems. The links I am trying to open in another window are actually PDF files that the viewer can download from my website.
    Since I was having problems I decided to try something else. After publishing the website to my desktop I then opened the pages where the links are in Dreamweaver. The layout view is great and displayed the image just the way it appears on the browser's window. I first selected the "link button" to the file and then in the inspector windows (bottom of the page) I chose under target the "_blank" option. This tells the software that the linked page or file is to be opened in a new blank browser window. I then saved the page (re-saved it over the existing file) to incorporate the changes. After this I proceeded to navigate through the website and everything works great.
    Thank you for your help and suggestions. I just thought I would post this here in case it may be of help to you as well as others.
    Best regards,
    Joseph Chamberlain

  • Open discoverer report in new browser window and without connections page

    Hi All,
    We are using Oracle 11g Discoverer 11.1.1.4.  Requirement is to open the discoverer report in a new browser window and without connections page.
    When we are running discoverer reports with this parameters we unwantedly get the connections page of the discoverer plus which we don't want.
    Went through the documentation given in this page and followed it still the issue persists, and i see couple of threads with my issue and no updates.
    This excerpt is from the documentation available in the link
    " _plus_popup=true and framedisplaystyle=embedded launches Discoverer Plus in a new pop-up browser window that contains the Plus applet embedded in it "
    http://www.art2dec.com/documentation/docs/oas10g1012/linux/bi.1012/b13918/urlstart.htm
    and Here is what we use to invoke our reports.
    http://ipaddress:port/discoverer/plus?cn=cf_123&_plus_popup=TRUE&framedisplaystyle=EMBEDDED&wb=disc_wb_1
    Request the forum users from PRO discoverer group to help me out of this issue and expect a good discussion on this.
    Thanks in advance

    Closing the thread
    We were able to achieve by changing the browser settings in the IE 8 Browser. Disabled Tabbed browsing.

  • Link to a New Browser window

    Anybody knows of an easy way to open a report through the link on another report into a new browser window by default? Thanks.

    hi you can do this in a couple of ways
    create a format trigger on the column that you want to use as the link :-
    function F_organizationFormatTrigger return boolean is
    begin
    srw.set_hyperlink('http://' || :BASEURL || '/anotherjsp.jsp?REPORT_ID=1&destype=cache&desformat=' || :desformat || '&WHERECLS=' || :DRILLCLS || '&DRILLVALUE=' || chr(39) || :column1 || ' ' || chr(39) );
    srw.set_hyperlink_attrs('target=_blank');
    return (TRUE);
    end;
    or you can put it in the Web Settings piece of the Property Inspector for the column that you want to link from . there is a paramter for hyperlink and hyperlink destination.
    hope this helps

  • Opening sales order in new browser window

    hi experts,
    i have ALV table in which one of the columns is sales order number. I made the column as hyperlink so that user can click on it. when the user clicks on this i am calling an event handler method which is linked on_click event of the ALV interface controller . i am able to capture the sales order number in the method. Now i want to call va03 transaction for this sales order in a new browser window. we are going to integrate this application in portal. any ideas?. i heard something about the object based navigation. how to do this?
    thanks
    Edited by: sudhakar murthy on May 12, 2010 6:04 PM

    Hi Sudhakar,
    Check out the below code to open a Transaction from WD in an external window and pass the value in that Transaction. I am passing the value here in the VF03 transaction's Billing document screen field .
      DATA: url TYPE string,
            host TYPE string,
            port TYPE string.
    *Call below method to get host and port
      cl_http_server=>if_http_server~get_location(
         IMPORTING host = host
                port = port ).
      CONCATENATE host ':' port
      '/sap/bc/gui/sap/its/webgui/?~transaction='
      '*VF03 VBRK-VBELN=123456' " 123456 is the value you are passing into the Billing document screen field of the    
       INTO url.                                      "VF03   transaction
    *get the window manager as we are opening t code in external window
      DATA lo_window_manager TYPE REF TO if_wd_window_manager.
      DATA lo_api_component TYPE REF TO if_wd_component.
      DATA lo_window TYPE REF TO if_wd_window.
      lo_api_component = wd_comp_controller->wd_get_api( ).
      lo_window_manager = lo_api_component->get_window_manager( ).
    call the url which we created above
      lo_window_manager->create_external_window(
      EXPORTING
      url = url
      RECEIVING
      window = lo_window ).
      lo_window->open( ).
    Hope it helps you...

  • Open view in a new browser window

    Hi all,
    I want to open a view in a new browser window.
    I try this two code:
    1)IWDWindow window=
    wdControllerAPI.getComponent().getWindowManager().createExternalWindow(
              "http://www.google.it","google",false);
    but in this case i can only open an url...
    2)IWDWindowInfo windowInfo = wdComponentAPI.getComponentInfo().findInWindows("ExternalWindow");
    IWDWindow window = wdComponentAPI.getWindowManager().createWindow(windowInfo,true);
    but in this case it open an internal windows, not an external new browser windows...
    What can i do?
    Thanks!

    Hello Andrea,
    you should call not "http://www.google.it" but result of something like this:
         public static String resolveURL(String dcName, String applicationName) throws EntryNotFoundException, WDURLException
              IWDDeployableObject deployableObject = WDDeployableObject.getDeployableObject(dcName);
              if(null!=deployableObject && WDDeployableObjectState.STARTED.equals(deployableObject.getState()))
                   boolean found = false;
                   int i = 0;
                   WDDeployableObjectPart[] parts = deployableObject.getParts(WDDeployableObjectPartType.APPLICATION);
                   if(parts!=null)
                        for(;i<parts.length;i++)
                             if( applicationName.equals(parts<i>.getShortName()))
                                  found = true;
                                  break;
                   if(found)
                        return WDURLGenerator.getApplicationURL(parts<i>, null);
                   else
                        throw new EntryNotFoundException( "Application '" + applicationName + "' not found" );
              } else {
                   throw new EntryNotFoundException( "Application '" + applicationName + "' not found in '" + dcName + "'" );
    Best regards, maksim Rahchnski

  • Linking to one new browser window?

    Can anyone tell me how to open multiple pdfs from one page in
    the same new browser window instead of opening multiple windows in
    Dreamweaver 8 (MAC)?

    You would not be able to do this by linking directly to the
    PDF. This is
    what I said in an earlier post.
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    ==================
    "thephitt" <[email protected]> wrote in
    message
    news:fn31c9$7l4$[email protected]..
    >I am able to get the pdfs displaying in the same window
    and coming to the
    >front
    > by using the OpenBrowser Window behavior EXCEPT the
    first link (any link)
    > I
    > choose gives me a page in IE (PC) stating "The Web page
    can not be
    > displayed".
    > If I choose the same link again it will display on that
    page and all
    > others
    > that have the same behavior. Here is an example of the
    code to open the
    > link.
    >
    > <a href="pdfs/winter_2007.pdf" target="feapdf"
    class="style1"><u
    >
    onclick="MM_openBrWindow('pdf:blank','feapdf','')">Current
    Newsletter
    > </a>
    >
    > URL to display = pdf:blank
    > window name = feapdf
    > target set to feapdf
    >
    > Again, works fine on the MAC but this issue occurs on
    the PC using IE
    >

  • RoboHelp 8 HTML - Open Hyperlinks in a New Browser Window

    [email protected]
    Hi all,
    I’m new to the RoboHelp community and have an issue I have not yet seen addressed elsewhere in the forums. I’m working in RoboHelp 8 HTML and am generating webhelp. My question is regarding hyperlink options. The option for open in a new window opens topics and links in a new tab. Is there a method, hacking or otherwise, for having the links open in a new browser window?
    Much thanks in advance.

    Hi,
    Welcome to Adobe forum,
    As I understand you are trying to open the hyperlinks in a new window instead of a tab.
    Well it is possible in Robohelp 8 HTML
    Here are the steps which you need to follow.
    1. Select the text Right click on it and then select Insert Hyperlink.
    Once you click on the Insert Hyperlink another Popup window will appear in your screen.
    You need to check this screenshot and select the appropriate option.
    Try and generate the Webhelp and see if that helps you,
    I hope that will resolve your issue.Please reply if that resolves your issue.
    Thanks
    Priyank

  • Opening a JSP in new Browser window

    Hi friends i want to open a JSP into new Window.
    Mean from one jsp i want to call another JSP,
    which should open in another browser window, and it should fills the feild automatically with default values.
    Can any one give my an idea how to implement this.

    Hi..
    do
    window.open("http://localhost:8080//yourservlet-path//servlet-name");
    you can also set window properties, they are passed as parameters to window.open
    see syntax of window.open. but this thing will open your servlet in a new window with default properties.

  • Open calling form in new browser window

    HI,
    I am using forms 9i. From menu item, i am calling a form using call_form, the called form is opening in same window, my requirement is the called forms want to open in new browser window. I am using mdi window.
    Any idea ?
    Regards
    Ramesh babu

    If you look in your browser address field, you will see your current forms has a (probably very) long url, one section of which is the form name. Now, you can use this as the URL argument in a WEB.SHOW_DOCUMENT() call. However:
    (1) if your URL doesn't include the userid, etc. (very likely in a production situation) you will have to log in again.
    (2) as (1) might lead to suspect, you are in a new database session.
    Why do you want to do this?
    Cheers, APC

  • Opening driving directions in new browser window

    I have installed the Web Assist Google Pro Maps extension and
    would like for the div containing the driving directions results:
    <div id="wagmp_directions_2"
    to appear in a new browser window.
    However, when I open the tag inspector, it says "locked
    region" for the Google maps divs, even though I detached the php
    page from the template. Any ideas?
    http://www.lindafarronknapp.com/map.php

    Sorry, mixed up my versions a bit. The following code doesn't open a new window.
    try {
                JSObject window;
                window = JSObject.getWindow(this);
                URL url = new URL(this.getCodeBase(), "mydomain/mypage.jsp");
                window.eval("window.open(" + url +")");
            catch (Exception e) {
                e.printStackTrace();
    }It doesn't do anything, instead I'm getting the following output in the trace:
    liveconnect: the url of the applet is http://localhost:29080 and the permission is = false
    liveconnect: JavaScript: UniversalBrowserRead enabled
    liveconnect: JavaScript: UniversalJavaPermission enabled
    liveconnect: JSObject::eval(window.open(http://localhost:29080/mydomain/mypage.jsp))
    liveconnect: the url of the applet is http://localhost:29080 and the permission is = falseI'm testing this code on Linux, FIrefox 1.5.0.3 and JDK1.5.0_07.
    What I'm doing wrong?
    Thanks.
    Stephan

  • Opening remote page in new browser window

    Hi there,
    my applet used the browser window as its frame, that means there is nothing else but the applet. I need to call a page from the same server as the applet resides, but to display the page in a new browser window. The following code could do the job, but caused the browser to block the popup.
    applet.getAppletContext().showDocument(new URL
                            ("http://mydomain/mypage.jsp"),"_blank");I'm wondering whether I could access a servlet from my applet and let the servlet accomplish this and how to.
    It would be also of interest whether it is possible to do the same with a page from a remote server and triggering the client to display the page in a new window.
    Any help is highly appreciated.
    Thanks in advance.
    Stephan

    Sorry, mixed up my versions a bit. The following code doesn't open a new window.
    try {
                JSObject window;
                window = JSObject.getWindow(this);
                URL url = new URL(this.getCodeBase(), "mydomain/mypage.jsp");
                window.eval("window.open(" + url +")");
            catch (Exception e) {
                e.printStackTrace();
    }It doesn't do anything, instead I'm getting the following output in the trace:
    liveconnect: the url of the applet is http://localhost:29080 and the permission is = false
    liveconnect: JavaScript: UniversalBrowserRead enabled
    liveconnect: JavaScript: UniversalJavaPermission enabled
    liveconnect: JSObject::eval(window.open(http://localhost:29080/mydomain/mypage.jsp))
    liveconnect: the url of the applet is http://localhost:29080 and the permission is = falseI'm testing this code on Linux, FIrefox 1.5.0.3 and JDK1.5.0_07.
    What I'm doing wrong?
    Thanks.
    Stephan

  • Want to open links in a new tab not a new window.

    When using a mouse I know I can middle click (wheel) and the web-link I am clicking will open in a new tab. I also know I can drag that link to the + sign on the tab bar and it will open. But while using the Keyboard only, when I want to open a webpage link in a new tab, it always opens in a new window, why?
    I noticed while searching in Mozilla Support that hitting any box opens in a new tab ( this is the effect I want) why does this not happen on other webpages?
    I may be answering my own question here but could it be the one 'NewsNow' website that is causing my problem?

    The setting in Tools > Options > Tabs: "New pages should be opened in": "a new tab/window" is for links that specify a target window for opening a link.
    The browser.link.open_newwindow pref only affects links that specify a target window.
    You can use the browser.link.open_newwindow pref to divert links that specify a target to the current tab or a new tab.
    The browser.link.open_newwindow.restriction pref allows to divert (onclick) JavaScript window.open() links.
    Links that do not specify a target always open in the current tab unless you override that with a middle-click or Ctrl (Mac: Cmd) left-click (new tab) or Shift left-click (new window).
    There are also extensions that have options how a link is opened, so you can check out the Add-ons website.

  • Opening external link in a new browser window

    Some of the external links in my web page need to open in
    their own window, leaving my site still open in the background. Can
    anyone tell me how to do this? I don't see an option anywhere when
    I am creating these links.
    The links are to, for example, "The City of ......", and
    could be quite long to traverse. I don't want my visitors to have
    to click their browser's back button who knows how many times to
    get back to my site.
    I would appreciate any suggestions, thanks

    It's not valid in a Strict doctype, either HTML or XHTML.
    A better way to do this would be to see this tutorial -
    http://www.tjkdesign.com/articles/popup_window_with_no_extra_markup.asp
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    ==================
    "Dooza" <[email protected]> wrote in message
    news:gbaiof$17a$[email protected]..
    > Dooza wrote:
    >> malcster2 wrote:
    >>> dooza wrote
    >>>
    >>> malcster2 wrote:
    >>> > highlight your link in design view.
    >>> > > in the properties panel, change the
    target to _blank
    >>>
    >>> FYI this isn't valid XHTML, but is valid HTML,
    depends on what your
    >>> aiming at.
    >>>
    >>> ....
    >>>
    >>> validated ok mate. what exactly isn't valid
    xhtml?
    >>> this would be the code in question:
    >>> <p><a href="
    http://www.thesun.co.uk"
    target="_blank"
    >>>
    class="style1">www.thesun.co.uk</a></p>
    >>
    >>
    http://www.w3.org/MarkUp/2004/xhtml-faq#target
    >>
    >> Dooza
    >
    > But then I find this:
    http://learningtheworld.eu/2007/xhtml-with-target/
    >
    > Dooza

Maybe you are looking for

  • Force Spotlight to Index a FW HDD

    Hello! Well, I recently aquired (as in 2 days ago) a Seagate 400GB FireWire/USB drive. I have it connected via FW. Well, after formatting it to Mac Extended format, I partitioned it for a 60G section (intended for a secondary boot volume) and a 320 G

  • CALL_FUNCTION_SIGNON_REJECTED

    We are getting the short dump CALL_FUNCTION_SIGNON_REJECTED in every 30 minute in ECC6 server (We just upgradeed R/3 4.6c to ECC6 last week). We have two application server and one CIDB server. We are getting the following short dump in both applcati

  • How to update Firefox using a dial-up connection

    My dial-up connection does not allow me to download the update to Firefox -- connection is dropped after many minutes. How can I get an update?

  • How can I get a copy of Premiere and Media Encoder CS6?

    I need to be able to convert a video that has an alpha channel into an FLV file for import into Captivate 8. Captivate only works with FLV and MP4, and only FLV has an alpha channel. However, FLV was removed as an option from the CC version of Premie

  • Thumbnail blank -- can view photo when I enlarge it

    Hows it going... I am having a problem in that the thumbnails of photos from a select 'album' are coming up as blank but when I click on them, I can view the photo. I tried to replace them with the backup on my external hard-drive but Iphoto says tha