Open URL in a new window

I have a project slide with buttons that open a URL that points to the .htm project file for another project in a new window with the current project to stay running.  This causes the course to close completely in the LMS?

Hi,
try setting the button to open the url in a new window, that way the students will not have to "start over" when they need to go back to the module.
Just go into your button properties and next to your url, click the down arrow and select new.  This will open the url in a new window.  You can uncheck the continue playing move choice also to stop the movie so it doesnt continue to play when the user is visiting the webpage.

Similar Messages

  • Open URL in a new window by closing the parent window

    Hi Friends,
    Is there any option to open URL in a new window by closing the parent window on a button click?
    Already implemented the logics suggested in /people/mohammed.anzys/blog/2007/06/05/how-to-close-parent-window-in-webdynpro-applications , the thread ' URL in same window '  and the standard component WDR_TEST_EXIT_PLUG .But button is not triggerring any actions .plz help me  ..............
    Regards,
    Radhika

    hi,
    Do the following steps :
    -> Make an Outbound Plug to the Window.
    ->Make the type of Outbound plug to Exit Type.
    ->Add URL of type String as a parameter to the outbound plug of Window.
    ->Do remember to add Component Name in the Properties Tab of View ( othervs Calling Outbound plug of window from view wont b possible ).
    To open a new URL with closing the previous one write this Code in OnAction of Button : ( this Code can be get from Code Wizard too ).
    DATA lo_zexit TYPE REF TO ig_zexit .   <zexit is name of my Component>
    lo_zexit =   wd_this->get_zexit_ctr( ).
      lo_zexit->fire_out_window_plg(
        url =   'http://www.google.com'                            " string
    I hope it helps.
    Thanx.

  • Button is not opening URL in a new window

    I have set the action and the URL and the NEW window ...but nothing opens in Preview or once published...can you help me?

    See if the link below helps with that.
    Click here to view
    Cheers... Rick
    Helpful and Handy Links
    Captivate Wish Form/Bug Reporting Form
    Adobe Certified Captivate Training
    SorcerStone Blog
    Captivate eBooks

  • APEX... Link to open URL in a new window

    I have one of my interactive reports' column linked to a URL... so when my user click on the link it opens an associated webpage...
    How can I make it to open in a new window...
    Thanks

    Hi,
    I am trying to open my page as a popup without refreshing the parent window.
    Here is what i have done
    1. created a navigation bar entry for help
    2. pointed the entry to a page in the application
    3. opening the page as a popup with the following code in it.
    javascript:window.open('&WORKSPACE_IMAGES.APEX_Reporting_User_Guide.pdf#&P0_PAGE_NAME.','popup1');
    my help page opens as a popup, but also refreshes the parent window with a blank screen.
    i also tried a few other options
    javascript:window.open('&WORKSPACE_IMAGES.APEX_Reporting_User_Guide.pdf#&P0_PAGE_NAME.','popup1');void(0);
    javascript:window.open('&WORKSPACE_IMAGES.APEX_Reporting_User_Guide.pdf#&P0_PAGE_NAME.','popup1');return false;
    but none of these are helpful
    Am I going wrong somewhere?
    Thanks
    MM

  • How to open URL iView in new window

    HI,
    We are not able to open the URL iView, which is assigned to page, in new window.
    We set the property "Launch in New Window" to Launch in Separate Window but no use.
    Please let us know the solution
    Thanks

    Hi Tatayya,
    Remove the delta-link that you have done for that iview to the page. Change the necessary settings on the iview level (skip this part if you have already done). Then re-"delta-link"the iview to the page and test if it open in a different window.
    Could also be your cache, so go ..navigate via Sys adm--> Navigation -> clear cache.
    Hope that helps.
    Ray

  • The customized link on CRM screen opens URL in a new window

    Hello CRM gurus
    I have customized the main CRM screen by adding a link on the left hand menu bar. When I click on this link, it starts the right URL but it is opening it in a seperate window.
    I want that to be displayed on the right hand side of the same screen like other standard items does.
    Is there any switch that I need to select to make this happen.
    Any feedback or response will be highly appreciated.
    Thanks
    Ram

    I was able to solve this issue with a friend's help.
    Here is what I did
    used tr.code spro
    and then
    selected
    SAP Implementation Guide -> CRM -> Interaction Center WebClient -> Basic Functions -> Transaction Launcher -> Define URLs and parameters.
    Hope this help others with same question.
    Ram

  • VBScript message when opening URL's in new window.

    Hi,
    I've got a folio that uisng buttons to oopen up some external URL's. On some of them I get this error message
    <%@ Language=VBScript %> <% ' Permanent redirection Response.Status = "301 Moved Permanently" Response.AddHeader "Location", "URL/" Response.End %>
    And some work fine. I can't find any difference in the method of making the buttons or any consistency. Has any one else seen this message before?
    Thanks
    P

    Has anybody found a solution to this?
    We have the same problem when calling BW Reports.
    Best regards,
    Manuel Schaffner

  • Captivate 7 Click box and bottons not able to open an URL on a new window

    I inserted a button and a click box in CP7 to open an URL on a new window. The URL opens but in a New Tab. There is an issue that the URL cannot be opened on a NEW WINDOW, I am using IE and Chrome. Do you have any ideas about this issue and how to troubleshoot it? I tried with Safari and it works fine.
    Thanks, Jorge - Adobe Captivate 7 user.

    Hi Jorge
    It's my understanding that all you can do is to configure the link to open in a new "whatever". Whether you get the link opening in a tab or a window is left up to the browser and how the particular user has their browser configured. For example, I use Firefox and when I look at its settings here is what I see.
    I'm guessing there must be a way to force a new window, because I do see new windows appear. But I think in those cases folks are doing it by using JavaScript.
    Cheers... Rick

  • Opening a url in a new window

    Guys,
    I have a situation to open a url (url is formed dynamically) in a new window on the click of a button (command button).
    I tried to use Go button, but in go button there is no way to provide the url dynamically. I mean i form the url by reading the contents of the page. But go button doesnt allow to form the URL dynamically.
    The problem with command button is, it doesnt open the URL in a new window.
    My requirement is
    i click on the button on a page -> go to method (read the contents of the page) to form the URL -> open the URL in a new window
    How this can be acheived.

    Yes, but i need a method to do my calculation to build the dynamic URL.
    I have resolved it using command button
    public void actionlistener(actionevent event)
    String dynamicUrl = // logic to build url;
    FacesContext ctx = FacesContext.getCurrentInstance();
    ExtendedRenderKitService erks =
    Service.getService(ctx.getRenderKit(), ExtendedRenderKitService.class);
    String url = "window.open('" + dynamicUrl + "','_blank');";
    erks.addScript(FacesContext.getCurrentInstance(),url);
    this resolved my issue

  • Open a URL in a new window from Flash

    Looking for the simplest way to open a URL in a new window from Flash using AS3-CS3, Thank you.

    The following line of code will do that...fill in the URL
    navigateToURL(new URLREquest("http://www....", "_blank"));

  • Open Sub Report in New Window

    Hi,
    We have an application which is integrated with crystal reports.
    So when you open a report from the application it opens up in a new window. (Ours is a web based application and crystal reports opens up in IE browser)
    We have some reports which have subreports (on demand ), is there any crystal report configuration through which these subreports can be opened in a new window, as of now they open in the same main report window.
    Thanks in advance

    hello,
    you may wish to look into saving the subreport as a separate report and then:
    1) calling the report via opendocument (if your app sits on top of businessobjects enterprise or crystal reports server)
    2) calling the report via URL reporting if your app does not utilize the above platforms
    i can't guarantee the above will work as it may depend on your environment that you are hosting the reports in.
    see the help guide [here |http://help.sap.com/businessobject/product_guides/boexir31/en/xi3-1_url_reporting_opendocument_en.pdf]for more information on linking
    http://help.sap.com/businessobject/product_guides/boexir31/en/xi3-1_url_reporting_opendocument_en.pdf
    as per using a subreport and opening in a new window, this doesn't really work.
    if you want though, you can use a Report Part link to go from the open subreport back to the main report. please see more on Report Part linking in your crystal report's online help.
    jw

  • How do I make Firefox not open the homepage in new windows?

    Hi. I have a collection of 4 pages set to open every time I start Firefox. Whenever I need to open a new window, my 4 pages open again.
    I would like to have those 4 pages open only the first time I start the browser, because I never close them. Obviously I don't need them open again.
    How can I set it so that these 4 pages open the first time I start my browser, but only have a blank page open the next time I select "open new window."
    Even more ideal would be to have the choice to open my homepages or a blank page (in case for some reason they do get closed).
    Any solution that takes more than one extra step is one extra step too many. Otherwise, I'd simply just x out of three of my pages and change the URL of the 4th.
    I'm not entirely technically minded, so if yours is a technical solution, I thank you in advance for clearly laying out the steps one-by one.
    Cheers.

    One possibility would be to change how you open a new window. You can create a bookmark for Firefox's '''about:blank''' page and then, to open it in a new window, shift+click the bookmark.
    (To create it, right-click the Bookmarks Toolbar or Bookmarks Menu near where you want to add it and choose New Bookmark. Enter about:blank in the Location and any description you like in the Name, then click Add Bookmark.)
    But that might be difficult to remember or inconvenient, so the next thought would be to bookmark your 4 home pages as a group in a single folder on your Bookmarks Toolbar or Bookmarks Menu, as you prefer. If you ''middle-click'' that folder with the mouse scroll wheel, Firefox will open all of its pages in separate tabs in the same window. Does that still count as 1 step?
    (To create it, open a new window with your four tabs. Right-click any of the tabs and choose Bookmark All Tabs. This will create the new folder. Assuming it tests out, you can then change your Firefox home page to about:blank to display a blank page.)
    Are we getting closer?

  • Url extern in new window

    hello
    I set the url in backing bean with this code:
    FacesContext faces = FacesContext.getCurrentInstance();
    ExternalContext context =faces.getExternalContext();
    HttpSession session = (HttpSession)context.getSession(false);
    context.redirect(miurl);
    faces.responseComplete();
    the problem is that i want open the url in a new window pop-up.
    The url isn´t a page for my app, is url extern for example google.com
    Thank and sorry for my poor english

    Hi,
    if want to open the page with a simple link, you can do something like that:
    <af:goLink text="goLink 1" targetFrame="_blank"
    destination="http://google.com"/>
    Claus

  • Open and style a new window

    Hello,
    Following this thread Re: Apply CSS to help window I'm trying to open and style a new window, using JavaScript. I'm using the following script:
    <script language="JavaScript" type="text/javascript">
    function newwin(targetURL) {
    var swin = window.open(targetURL,null);
    swin.focus();
    swin.document.getElementsByTagName("body")[0].dir = "rtl";
    </script>In a pure HTML environment, it works just fine. In ApEx I'm receiving an error message http://i2.tinypic.com/vfl7qc.png, which relate to the first window. For some reason, the reference to the new window (swin) does not work properly.
    An example page can be seen at http://htmldb.oracle.com/pls/otn/f?p=22814:30
    Can anyone please help me understand where the problem is?
    Thanks,
    Arie.

    I've just tried your supplied code in Firefox and Internet Explorer in an Apex environment and they both worked fine.
    FYI I tested with the following links on my host page:
    < A href=javascript:newwin('http://www.leeds.ac.uk');>Click here!< /a >
    < A href=javascript:newwin('f?p=103:1:&SESSION.');>Click here!< /a >
    And the Javascript code in the header section of the same page.
    A few questions:
    - Which browser are you using?
    - What will be in your popup? Another Apex page or something else?
    - If an APEX page, what does the URL look like? Different to mine above?
    - Is the popup Apex page a 'normal' page - or have you customised the template significantly?
    I would guess that your error message is referring to the fact that getElementsByTagName is returning null - rather than the reference to the window. Thus, I'd check for the existance of a body tag and a generally well formed destination page. Test with leeds.ac.uk as I used above to confirm.
    Hope this helps
    Ben

  • How can I put OSX 10.7 on a new Macbook Air. Maverick no longer allows "open file in a new window" and I really miss it. At the Apple Store they told me it can't be added to the new OSX 10.10 so I  want to change the OSX on the new Macbook Air and it

    I have been using a 2012 Mac pro to do HD video editing. I bought a new portable Macbook Air only to find that Maverick no longer has "open files in a new window" which I use all the time in the very large folders of video clips and royalty-free music. I asked at the Apple Store how I could get this back on the Macbook Air and they said it couldn't be done so I thought I would re-format the HD and install 10.7 on it and was notified by the Macbook Air I can't put 10.7 on that computer. Apple use to give this as an option but now they have gone more to the attitude of "Do it our way or go to ****!" In anger I went out and bought a Dell Laptop and Pinnacle Studio 17 which I have been learning to use. I have been an Apple/Mac user since 1979 and would still rather do my video editing on a Mac. Is there any way that I can force the Macbook Air to let me load in OSX 10.7 where there is still the option to  "open files in a new window" or is there a way to add this to Maverick? The experts at the Madison, WI Couldn't give me any help on this.

    Choose Preferences from the Finder menu, click on the General tab, and uncheck the box to open folders in a new tab.
    (117195)

Maybe you are looking for

  • COPY_REGION & SELECT_ALL - not working correctly

    Hi there, I have menu items for copy and paste. Here are the properties Menu Item Type: Plain Magic item : None Command type: PLSQL visible in menu: Yes visible in horizontal menu tool bar : yes visible in vertical menu tool bar : no icon in menu: No

  • Csv input adapter - read rows with different # of columns

    I have a csv file which includes rows with different number of columns. I want to read all the rows( of different # of cols)  into ONE stream only and then split into separate streams afterwards. I saw that CSV File Input Adapter does not add missing

  • Problem implementing Methods in a class

    Hi, I am trying to change this code : import java.util.Scanner; public class Test { public static void main(String[]args) { Scanner stdin = new Scanner(System.in); System.out.print("Number: "); double n = stdin.nextDouble(); System.out.println(n + "

  • How to remove the question mark from the dock

    How do I remove the question mark from the dock.  Nothing I tried works.

  • H.264 Footage Playback issue

    I have imported some finished files into FCP for editing into a showreel, they are encoded with an H.264 codec, its a HQ/HD video file for Vimeo with 720 x 1280 dimensions. I have imported these into FCP before and had no problems, but after doing an