Since upgrade, Facebook redirects into a new browser window

I noticed for the past couple of days that when I'd be in facebook and click on a game it would open a new tab. But since upgrading it opens a whole new browser window.
Tonight I was playing Monopoly and it kept saying that my internet connection was lost (which this may be a problem with the game itself) but I didn't know if it was because I had several browser windows open all for FACEBOOK!

Hello,
You can either use
<embed src="file.pdf" />
or, alternatively, my new plugin, PIFF: https://github.com/terrasoftlabs/piff
Peace,
Gabriel Nahmias
Terrasoft

Similar Messages

  • 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

  • Open portlet in new browser window

    Anyone know of a way to open a portlet, or a page containing a portlet, from a link into a new browser window? This is different than showDetailsPage, which opens in the same browser window.
    Thanks.

    I tried to do this through Item Attributes for the portlet (clicking the little pencil), where there is a radio button for "Display Options."
    One choice is: "Link That Displays Item in New Browser Window."
    (I do have something in for the "Display Name" which seems to be required to get a link.)
    However, this doesn't seem to work. No link shows.
    (It works fine for
    I have tested this with a Discoverer portlet, and also with a more generic portlet (the "Developer News" portlet in the 9iAS Community portlet provider).
    Is this broken / a bug?

  • Add option to open swf in new browser window

    Hello,
    I have a small animation on a webpage. The properties are to
    small to view all details. Can I add functionality to this swf that
    the user can open the swf file into a new browser window. This
    allows then for scaling to what ever size is appropriate.
    Any suggestions??
    Thanks!

    Hi,
    I hope I understood your question correctly, if so my suggestion may be helpful. Otherwise I think it's nearly the same what paul writes, I only made clear my proposal in a website for you, first a photo:
    and here is the link: http://www.goldschmiede-blumberg.de/pdf/adob_pdf.php.
    Note 1: "Ausgabe 9" und "ein Mausklick hier genügt" are links!!
    Note 2: " Um pdf-Dateien ...." Means: To read pdf files, you need the free Adobe Reader. The current version you can download from the Adobe website.
    Look at it's source code.
    Viel Erfolg
    Hans-G.

  • Since upgrading to iOS6 I can't browsing all application at app store only few I can browse which made me upset it narrow down my choices how can I over come this problem plz

    Since upgrading to iOS6 I can't browsing all application at app store only few I can browse which made me upset it narrow down my choices how can I over come this problem plz

    Take it to your local Apple Store or AASP, it's covered by a 1 year hardware warranty. If you have AppleCare then give them a call but I'm pretty sure they will advise the same. If you have not purchased AppleCare yet please do, this will extend the warranty to 3 years however it MUST be purchased within the first  year of ownership. Let it go 366 days and you are out of luck. AppleCare will also include telephone support too.
    Good luck.

  • PDF viewer into new browser window

    Hello,
    I use following code to open new browser window with PDF file. The URL passed to the method is link to SICF service which returns the PDF in the request with content-type = 'application/pdf'. New window is open with correct URL, but the content is not displayed - Refresh or Go button has to be pressed to display it. Don't you experience similar problem? Is this WD error or some IE security setting?
    Thank you and best regards,
    Ludek
      lr_window = lr_w_manager->create_external_window(
          url = ld_url
          title = ''
          modal = abap_false
          has_menubar = abap_true
          is_resizable = abap_true
          has_scrollbars = abap_true
          has_statusbar = abap_true
          has_toolbar = abap_true ).
      lr_window->open( ).

    Hi Ludek,
    Probably a compression problem. Have you turned off gzip compression for the pdf?
    Btw, an alternate solution without having a separate handler is to use the cl_wd_runtime_services=>attach_file_to_response() method.
    Best regards,
    Thomas

  • DocumentViewerRN redirect to new browser window

    Can the OAF shared region DocumentViewerRN be made to direct its output to a new browser window? If so, how?
    Thanks,
    Bob N

    There's the APex javascript function you can use html_PopUp - you can use it in the button's URL Target:
    google it to get more details - you can specify the new window name e.g. myWindow and window size etc
    javascript:html_PopUp('http://www.google.com','myWindow');

  • Managed Attachments - creating a customCO for 'Managed Attachments' and opening a new browser/window  as ActionEvent through processFormRequest()

    Hi All,
    I am working on 'Managed Attachments' integration of Oracle E-Business Suite with Oracle WebCenter Content and I am very new to EBS.
    As per the customer requirement, we needed to enable the Managed Attachments on an SIT page (Employee Self Service --> Special Information-> and click on 'Add' for any of the 'Special Information' section) and the values they fill on these pages need to be passed to webcenter content.  As you know these segment data will not be inserted into the database until the user clicks on 'Submit' button from the review page,
    But the customer wants to save it on the 'Special Information' add page itself.
    Managed Attachments is an out of the box feature offered by Oracle WebCenter Content to replace FND Attachments functionality. Instead of storing the attachments in EBS, it will store to WebCenter Content.
    My requirements are as follows
    1) Enable the managed attachments on he special information 'add' page (e.g Company Property, Disabilities etc),- I am able to do this
    2) The data user fills in these fields , when user clicks on 'Managed Attachments' button , these values should be passed to the URL for managed attachments(which is already set on the button through processRequest() method when the page gets loaded) and thus pass to webcenter content
    With these requirements, the challenges i am facing are
    1) Since the user clicks on 'Managed Attachments' before even he/she clicks on 'Apply' button, how do I capture these values? can pageContext.getParameter('id') can get these?
    (i have already tried to do this in processFormRequest() method and i found that it is working for LOV fields but not for text fields)
    2) if i can get the values in processFormRequest(), how can i open a browser/window for the new URL()
    e.g, i wanted to write something like this and the finalURL is what i wanted to open in a new browser or window as the actionEvent
        public void processFormRequest(OAPageContext pageContext,   OAWebBean webBean) {
    super.processFormRequest(pageContext, webBean);
       String param1 = pageContext.getParameter(“Param1”);
    String param2 = pageContext.getParameter(“param2”);
    String redirectURL = “http://rstnssiovm0072.us.oracle.com:8000/OA_HTML/OA.jsp?page=/oracle/apps/ak/ucm/axf/webui/RedirectToAxfPG&bypassPageCounterIncr=Y&retainAM=Y”;
    String paramURL = “&Parameter1=”+ param1+”&Parameter2=”+ param2;
    String finalURL = redirectURL+paramURL;
    Code part to open the url in a new browser/window
    If anybody can help me with these part, it will be a great help
    thanks a lot in advance
    Regards
    Poornima

    Hi Poornima ,
    Has your prob resolved ? Have you made Managed attachment working via standard adapter as per UCM Admin guide ?
    Configuring the Managed Attachments Solution - 11g Release 1 (11.1.1)
    1. You have first store in some VO if you want to pass this metadata to UCM page , other wise it will not work .Take temp table /VO to store first then same can passed to UCM page as input parameters
    2.What needs to be passed , please refer webcenter guide with key examples given
    Once it is configured properly automatically params will be associated with URL which actually will open UCM page with metadata ( params) being passed.
    Thanks,
    Ashish

  • How to fix bookmark icons from reappearing in new browser windows despite having bookmark deiconizer enabled (Mac Snow Leopard/Firefox 20.0).

    Ever since Firefox upgraded to 20.0, my enabled deiconizer doesn't work when I open a new browser window. Using Mac/Snow Leopard.
    I want those bookmark toolbar icons to disappear permanently! They are nothing but clutter.

    Thanks for the suggestions. I think my next move is to contact Mozilla/FireFox to complain about this change and see if it can be fixed. If not, then I'll probably just switch to Safari. I lose patience with companies/programmers who do things like this. When I had programmers reporting to me (before I retired a few years ago), I would never let them get away with this sort of nonsense. User flexibility was a requirement.

  • Open URL Link in new browser window

    Can someone please help me? I've tried to use code as if I were using Dreamweaver without any luck(i.e. blank target).
    Is there a way to make the url in the PDF open a new browser windows once clicked? Hopefully this is an easy fix! Thanks in advance!

    Jono, if you are still out there.  I am also having trouble with this function.  The button works just fine, but it does not open another browser window.  I am trying to keep my pdf open, and send them to a url.  That way they can come back to the form. Like you would with the target="_blank" function in javascript.
    What am i doing wrong?  I have tried opening the script editor, but I am not sure what to do there. So I put the same as you did on your form, no effect.  I put target="_blank" and set it to javascript on just about every option.  I have tried to go into the code on the xml source tab, no luck anywhere.  I have tried to just use a text field, no luck.
    Seems like everything I have tried has no effect.
    Hopefully you can tell me it is something simple...
    Thanks in advance.
    Jodi

  • "Go to URL" not opening in a new browser window

    We are using FrameMaker 10 and RoboHelp 9 in a Windows 7 environment.
    When we create hypertext links, we use the "Go to URL" command.  According to the FrameMaker 10 online help, this is what the command is supposed to do: "Launches browser and displays the specified Web page."
    Then we publish the content to RoboHelp's WebHelp.
    When we see the hypertext link in the WebHelp/HTML output, it looks like this: http://www.adobe.com
    When we click it, the Web page appears inside the content frame of the WebHelp.  It does not open a new browser window.
    We can manually go into the html file and look at the hypertext link.  It looks like this in the WebHelp output:
    <span class="FM_Link"><a href="http://www.adobe.com">www.adobe.com</span>
    In order to manually change the link so that it opens the Web page in a new browser window, we can edit the link as follows:
    <span class="FM_Link"><a href="http://www.adobe.com" target="_blank">www.adobe.com</span>
    After we manually edit the HTML file, save it, launch the WebHelp, and click the hypertext link...it now opens the Web page in a new browser window.
    Is there a way to create the hypertext link in FrameMaker so that the WebHelp output will open the Web page in a new browser window?
    Thank you in advance!
    Tim

    Please see the previous posts in this thread to review how you create hyperlinks in FrameMaker that open the Web page in a new browser window.
    The problem is this: If you publish the exact same file to PDF, the hyperlinks will not work.
    The properties (syntax) of the hyperlinks in PDF output need to look like this: http://www.adobe.com
    The hyperlink syntax in WebHelp (in FrameMaker) needs to look like this: http://www.adobe.com" target="_blank
    (...so when they are published to Webhelp, they look like this: "http://www.adobe.com" target="_blank")
    Other than going into either the HTML or the PDF output and manually changing each hyperlink URL syntax for the specific output, is there a syntax that opens a new browser window in both PDF and HTML with one single "Go to URL" command?
    Thanks in advance for your help.
    Tim

  • 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...

  • New browser window from single movie frame?

    Sorry but I am a total newbie>
    I have a 4 frame movie imported into one layer and want to
    specify a different URL to be opened in a separate window for each
    frame. So I have made each frame a keyframe and added from the
    behaviors a geturl event for each frame. When this is published it
    loops the movie and opens a new browser window for every frame for
    every loop, resulting in dozens of browser windows. How can I make
    this a mouse clickable event so only when I click on a frame will
    the new browser window launch?
    I am trying to use onrelease, but I am not sure how this
    should work as I can't find a good example.

    1) you can't 'click on a frame' in the SWF file when it's
    running, you must click on a 'button' or 'movieclip' instance the
    you construct ON a particular frame, or all in the same frame with
    different buttons on theStage.
    2) you need to add a 'stop()' action to your actions layer to
    stop the SWF from 'playing' which is why it continues to open more
    windows, MovieClip timelines play and loop by default.
    3) more information that you will ever need is located in the
    Flash Help files(F1) along with many tutorials to learn the basic
    concepts, open them and go to 'Getting Started in Flash' to learn
    some basics.

  • New Browser Window not working on My Mac Intel pro

    I have set a behavior in Dreamweaver CS3 to open a new
    browser window to a set size and to only show scroll bars if
    needed. I have left all other attributes unchecked. This is not
    working for me. Can you tell me how to make a new browser window to
    my settings using the behaviors in Dreamweaver CS3? I do all the
    steps right. what do I do when I follow all the steps for setting
    up a new browser window correctly and it doesn't work!? The new
    browser window never pops up even when i use an image map. The
    Behavior is not working correctly and I even re-installed
    Dreamweaver CS3. I am on an intel based mac pro. Running Firefox
    version 3 and Safari 3.1.2 on Leopard. I have done this several
    times before and it has worked. but that was before Leopard. Here
    is my code:
    <area shape="rect" coords="4,3,78,77" href="#"
    onClick="MM_openBrWindow('images/02.jpg','','width=378,height=504')">
    The only way I can get it to halfway work is add it into the
    link area
    on the properties panel. The window will then open but not to
    the
    specified size.?
    please advise as this is taking a long time to figure out!?

    Schafer Design wrote:
    > Yes site is live! However I have been able to figure out
    how to make them pop
    > up with the picture in the new window but now it will
    not fit to the size of
    > the picture? I think it is time to take it live so I can
    see how it acts on the
    > server. the site is
    http://www.davidmyersdesign.com.
    Also having a rollover
    > problem on the portfolio and contact page.
    > Dreamweaver is not so dreamy to me right now!
    >
    This is an unusual way to go about doing this. Typically you
    simply put
    the thumbnails up on the page rather than combining them into
    a collage
    and then adding imagemaps to that.
    Nevertheless, it can be done.
    You have code like this:
    <area shape="rect" coords="0,0,80,80" href="images/12.jpg"
    target="_blank"
    onClick="MM_openBrWindow('images/12.jpg','','width=378,height=504')">
    Try adding
    ;return false
    to each like this:
    <area shape="rect" coords="0,0,80,80" href="images/12.jpg"
    target="_blank"
    onClick="MM_openBrWindow('images/12.jpg','','width=378,height=504');return
    false">
    E. Michael Brandt
    www.divahtml.com
    www.divahtml.com/products/scripts_dreamweaver_extensions.php
    Standards-compliant scripts and Dreamweaver Extensions
    www.valleywebdesigns.com/vwd_Vdw.asp
    JustSo PictureWindow
    JustSo PhotoAlbum, et alia

  • Cache problem for servlet opening new browser window

    Requirement:
    I have JSP page say summary.jsp with link "print account summary"
    When user clicks on this link, new browser open with PDF document of summary.jsp
    This new browser window should not have address bar and toolbar.
    Solution:
    Servlet called PrintSummary which sets contenttype=application/pdf and sends the data to outputstream.
    href of link is
    Java script function is:
    function openWindow(url){
    window.open(url,'blank','toolbar=no')
    Problem:
    Since the URL of this new window is
    http:// host:portnumber/PrintSummary
    Even if I click the "Print summary" link for account2,
    being the same URL (http:// host:portnumber/PrintSummary) it accesses the existing page in the cache which is created for account 1.
    In href if I just use servlet url as
    I get the expected behaviour but then I don't have control on browser appearance and browser window will be with address bar and toolbar.
    The only option I could think of was changing URL as follows:
    <% String url ="javascript:openWindow('PrintSummary? var1="+ Math.random()+"')";
    So that URL is different all the time
    Is there any way to solve this problem?
    Thanks in advance
    M.

    I'd definitely try to use a Flex popup... but the
    flash.net.navigateToURL method is a simple way to open a popup
    window in a new browser. You can pass any data needed by the new
    page using the URLRequest and/or URLVariables. The URL you navigate
    to could, of course, be another Flex application if necessary. I
    use this only when I need to open a popup window on another site,
    or an HTML formatter report or something similar.
    Concerning yourself with the size of the popup window may be
    a bad design choice also. I, for example, have my browser
    configured to open all popups in a new tab regardless of sizing
    constraints imposed by the designer. If it is absolutely necessary
    for you to have control over the size of your popup window, you
    should follow the advice given by others and use a Flex
    popup.

Maybe you are looking for