How to trigger fullscreen via on-site javascript (click or other event)

Hi,
this question is quite technical, but I'm convinced there's a work around for what I want, as I've seen it on <video> markups.
The question is easy, is there a way that by clicking on a link, javascript tells the browser to act as if F11 had been pressed?
I'm aware this is not user-friendly and that it shall confuse him, but that's exactly the goal targeted by this behavior.
Can you provide such information?
Thanks a lot

That's a security issue. The Javascript code that is out there to do "FullScreen" doesn't work in Firefox.
Try it with the code found through a Google search. <br />
[http://www.google.com/search?q=code+for+Full+Screen&ie=utf-8&oe=utf-8&aq=t&rls=org.mozilla:en-US:official&client=firefox-a code for Full Screen]

Similar Messages

  • Pls suggest me on "How to trigger PPF via a standalone program?"

    Hi All,
    Can some pls explain me how to trigger PPF in a standalone report program. Provide me some examples.
    Thanks in advance.
    Moderator message: please do more research before asking, show what you have done yourself when asking.
    [Rules of engagement|http://wiki.sdn.sap.com/wiki/display/HOME/RulesofEngagement]
    [Asking Good Questions in the Forums to get Good Answers|/people/rob.burbank/blog/2010/05/12/asking-good-questions-in-the-forums-to-get-good-answers]
    Edited by: Thomas Zloch on Jun 28, 2011 3:45 PM

    hi
    whenever changes made to an application document.u want to replicate these changes in target system u have to work with cahngepointers
    RBDMIDOC is the program which u have to schedule background
    regards
    Nagesh.Paruchuri

  • How to make fullscreen mode work using javascript

    1.I want to open the window in fullscreen mode.
    It works fine for internet explorer.
    But in netscape navigator 8.0 as the tab browsing is there
    The menu bar appears on the page.
    That i don't want.
    2. Also when the window opens in full screen mode and if after that
    i press the ctrl+N the new window doesn't open in full screen mode.
    Giving the sample code as below.
    So how to make it work in full screen mode in both cases.
    //The sample code is given
    //check.html
    <HTML>
    <HEAD>
    <TITLE> Full Screen </TITLE>
    <script type="text/javascript">
    <!--
    function myPopup() {
    window.open( "http://www.google.com/", "myWindow", "status = 1, height = 300, width = 300, resizable = 0,fullscreen=yes" )
    //-->
    </script>
    </head>
    <body>
    <form>
    <input type="button" onClick="myPopup()" value="POP!">
    </form>
    <p onClick="myPopup()">CLICK ME TOO!</p>
    </body>
    </HTML>Plz help me.
    Thanx in Advance.
    Reema.

    dont try to use a browser for what its not intended to do.
    A browser is never been intended to work in fullscreen mode. Trying to control the size a browser is displayed in, is considered bad practice and sites that do it are usually very annoying.

  • How to trigger navigation to a portal iView from server side event handler

    Hi,
    I am modifying the workset map application. I have created custom URL links under each iView which should navigate to different iViews depending on some business logic. So I had to provide a custom event handler for these iVIew links and the path to the next iview is dynamically created by the code in the event handler. Once the new PCD path is generated, the event handler should trigger a navigation to that PCD object. Which APIs can I use to trigger this navigation from the server side event handler? I have done this before in webdynpro where we used WDPortalNavigation (.absoluteNavigation or .relativeNavigation). Is there something similar that i can use in this case (i.e. when developing a simple Portal Application from an AbstractPortalComponent)?

    Hi,
    On my understanding of your requirement.
    the best solution what i think is use Object Based Navigation(OBN).
    Is much suitable to your requirement.
    Moreover you can use
    1.Relative navigation
    2.Absolute navigation.
    In the same way how you used in web dynpro.
    Same thing can be done in abstract portal component also.
    Try using that.
    Thanks & Regards,
    Lokesh
    Edited by: lokesh kamana on Aug 11, 2008 7:23 AM

  • How to trigger a button without having to click it

    In the view i have defined a button, and if a condition is met, i want that button to be triggered/clicked automatically so the processing continues as if someone had clicked the button.
      <phtmlb:matrixCell row = "2"
                         col = "1" />
      <htmlb:button id      = "newEntry"
                    text    = "<%= otr(paoc_rcf_ui/new_entry) %>"
                    width   = "10%"
                    onClick = "onNewEntry" />
    <b>  <%
      if not controller->pt_work_experience is initial.
      %>
      Trigger the above described button automatically
      <%
      endif.
      %></b>
    Any simple code examples for this ?
    Thanks in advance

    is that case the js is right
    <script>
    document.getElementById('newEntry').click();
    </script>
    should work.
    we need to resolve the js issue, if its resolved, this solution will work.
    the following is a small sample page which i created. test it in your browser and let me know.
    page attribute:
    test type string.
    test1 type string .
    layout.
    <%@page language="abap" %>
    <%@extension name="htmlb" prefix="htmlb" %>
    <%@extension name="bsp" prefix="bsp" %>
    <htmlb:content design="design2003" >
      <htmlb:page title=" " >
        <htmlb:form >
          <htmlb:button id = "MYB"
                              text    = "Press Me"
                        onClick = "myClickHandler" />
    <% if test = 'Y' . %>
    <script>
    document.getElementById('MYB').click();
    </script>
    <% endif .
    %>
       <%= test1 %>
          <% clear:test, test1 . %>
        </htmlb:form>
      </htmlb:page>
    </htmlb:content>
    oninputprocessing
    test1 = 'Button Clicked' .
    clear test .
    save activate the page. run the page by passing ?test=Y at the end of the url, you will see the button automatically getting clicked pass test=N and notice its not getting clicked.
    to identify the js error , i have to see the whole layout code of your page.
    Regards
    Raja

  • How to make a lov value readonly on click of other lov on seeded OAF page

    Hi all,
    I have a requirement to make some lov value of "currency" readonly on click of other LOV payment template.
    I tried to extend controller of page to check lov event of payment template if it is clicked the other LOV becomes readonly . Here is my code(not working...)
    public void processFormRequest(OAPageContext oapagecontext, OAWebBean oawebbean)
    if (oapagecontext.isLovEvent())
    String lovInputSourceId = oapagecontext.getParameter("PaymentTemplate");
    Hashtable lovResults =
    oapagecontext.getLovResultsFromSession(lovInputSourceId);
    if (lovResults!=null)
    OAMessageLovInputBean msglovbean= (OAMessageLovInputBean)oawebbean.findIndexedChildRecursive("currency");
    msglovbean.setReadOnly(true);
    Please help....thx

    Hey Sunil,
    sims wrote:
    public void processFormRequest(OAPageContext oapagecontext, OAWebBean oawebbean)
    if (lovResults!=null)
    OAMessageLovInputBean msglovbean= (OAMessageLovInputBean)oawebbean.findIndexedChildRecursive("currency");
    msglovbean.setReadOnly(true);---We cant change the webBean properties in ProcessFormRequest.
    ---Use SPEL and PPR
    or --Try below
    public void processFormRequest(OAPageContext oapagecontext, OAWebBean oawebbean)
    if("Lov1".equals(pageContext.getParameter(SOURCE_PARAM)) &&
    "lovValidate".equals(pageContext.getParameter(EVENT_PARAM))
    && "lovUpdate".equals(pageContext.getParameter(EVENT_PARAM)))
    pageContext.putSessionValue("Flag", Flag);
    pageContext.forwardImmediatelyToCurrentPage(null,
    false,
    OAWebBeanConstants.ADD_BREAD_CRUMB_NO);
    public void processRequest(OAPageContext oapagecontext, OAWebBean oawebbean)
    if(pageContext.getSessionValue("Flag") != null)
    OAMessageLovInputBean msglovbean= (OAMessageLovInputBean)oawebbean.findIndexedChildRecursive("currency");
    msglovbean.setReadOnly(true);}
    Regards
    Meher Irk
    Edited by: Meher Irk on Dec 2, 2010 6:17 PM

  • Spec2000 / Spec2k trigger S1PNSTAT via ME23

    Hi Experts,
    Does anyone knows how to trigger S1PNSTAT via ME23.
    I tried using
       1.      From the SAP Easy Access menu, choose Logistics-> Purchasing ->Purchase Order -> Display Extended Purchase Order.
           2.      Enter the purchase order and choose Continue.
           3.      Select an item and choose Item ->More functions -> Additional data.
    The additional data screen for the order item appears.
           4.      Choose Item ->SPEC2000 ->Send S1PNSTAT.
    The message no data change appears. No matter how I change the PO, it doesn't get trigger.
    Anyone have any idea?
    Regards,
    Clarice
    http://help.sap.com/erp2005_ehp_04/helpdata/EN/88/7e8a1b422c45f1b8e57b45382dda9c/frameset.htm

    Oh I realised it in item level ---> additional function ---> more function ---> spec2000 ---> send S1PNSTAT

  • How to share songs via bluetooth to other phones

    Hi Folks,
    I want to know how to share songs via bluetooth from my iphone to other phones.
    I am unable to share songs right now. Kindly help.

    You can't, as such has never been supported on any iOS device. Besides, this is considered "stealing".

  • HANA Server site JavaScript how to call functions in another .js file? thanks

    In HANA Studio, I have created a .js file and a server site javaScript .xsjs file. The .js file and .xsjs file are in the same path .I create function F1() in js file. Then I want to call function F1 in xsjs file. But it always through an error “f1 was used before it was defined”. Any suggestion? Thanks very much
    .js file:
    .xsjs file:

    Hi Jim,
    Now I have found the method how to use external library. If we want to outsource some of xsjs functions to an external library, XSEngine provides a special format for this, called “.xsjslib”. Then in xsjslib file, we define functions need to be outsourced.
    In .xsjs file, we can import a library using the following code:
    $.import("<Package_Library_was_deployed>","xsjslib File Name");
    The Package_Library_was_deployed please refer to:
    Access functions inside library by this path:
    $.Package_Library_was_deployed.xsjsFileName.FunctionName();

  • How to trigger the automated row fetch process and open modal window by javascript api?

    Hi,
    I would like to click the one row of column of IR report, to open the modal window of current page.  <----------------it is ok. I can use "javascript:openModal('windowID')"  to do it.
    There is one form in this modal window, Meanwhile, I would like to pass column data to this form.    <--------------------- it is ok also. I can use " $s('P7_ID','column_value');" to do it.
    But I don't know how to trigger the "automated row fetch" process of this form to retrieve other field's value in this form.   
    I tried to use following 2 ways. But failed.
    First method:
    add one ajax process of "automated row fetch" in "page processing" block, named "get_fetch_data"
    when click IR column , call "openModal", and call  "apex.server.process ( "get_fetch_data", {}, { success: function( pData ) { }  } );"  , I tried to call above ajax process to refresh form. It is failed.
    Second method:
    add one process of  "automated row fetch" in "page rendering" block, named "get_fetch_data"
    when click IR column, call javascript api "apex.submit" to submit current page , then call "openModal".
    such as :  javascript:apex.submit({request:'MODIFY',set:{'P7_ID': #ID#}}); openModal('trade');
    But it is failed also. the modal page is showed firstly. then page refresh. but modal window will not open again.
    I am not sure if my thinking is right. Could you please provide any suggestion?
    Thanks in advance,
    Ping

    Hi Ping,
    You can try to set the session state of your modal page's primary key before opening the modal page. Use one dynamic action (on click of IR row) with two true actions. First one to set session state of modal page pk, second on to open modal page.
    Or you can add the modal page url as link in your report by extending your query:
    select ...
    ,         apex_util.prepare_url( 'f?p='||:APP_ID||':7:'||:APP_SESSION||'::'||:DEBUG||':7:P7_ID'||COLUMN_VALUE ) as link
    from ...
    This will give you the url of the modal page, with set primary key.
    Regards,
    Vincent Deelen
    http://vincentdeelen.blogspot.com

  • HT201328 I've purchased a used  iPhone 3g via similar site like eBay in Hungary.The phone is legal but no invoice was included.How could I unlock the phone?

    I've purchased a used  iPhone 3g via similar site like eBay in Hungary.The phone is legal but no invoice was included.How could I unlock the phone?

    cv.references wrote:
    How could I unlock the phone?
    ONLY the Carrier it is Locked to can unlock it.
    No one here will know who that Carrier is.
    The iPhone 3G can only run iOS 4.2.1

  • How to trigger the "click" event using javascript in LC8?

    I have 2 button in the form. I don't want the user to click the button1 directly (invisible now). but I want the user click the button2 and then do some checking. after checking is finisined,  the script will continue to trigger the button1 "click" event. How to trigger the button1 "click" event through javascript in LC 8? Thanks.

    button2.execevent("click");

  • Trigger on AP SUPPLIER SITES ALL

    Hi All,
    I have created a trigger on po_vendor_sites_all table In R11, When a new supplier site is created, the trigger fired only once and 1 record is inserted in the custom table and when updated, one record updated in the custom table.
    In R12 same trigger is created on AP_SUPPLIER_SITES_ALL, but it is behaving like when creating a supplier site, this trigger fires 3 times and we got 3 records (1 insert, 2 /3/4 update records) in the custom table. When update, depending on the fields, 2/3/4 records update in the custom table at the same time. I found that in R12, hz_locations and hz_party_sites are other tables involved in storing supplier site data. So, please, let me know how to handle this situation. I need one record to be inserted into custom table for each update or insert on supplier_sites
    Thanks in Advance!!!
    Thanks
    Venkat Reddy
    [email protected]

    Duplicate post -- Trigger on AP SUPPLIER SITES ALL

  • How to trigger creation of collective orders

    Hi,
    How to trigger the creation of Collective orders.
    regards

    Hi,
    Collective Orders
    Use
    In a collective order, planned orders or production orders are linked to one another over several production levels. Each order in the collective order has its own order number. If subassemblies are produced directly for superior orders within a production process, without physically entering the warehouse, it is useful to have a representation via collective orders.
    The components for which separate production orders are created in the collective order are called directly produced components (see Creating Collective Orders)
    Prerequisites
    A collective order cannot be created for components that have one of the following indicators set:
    · Co-product
    · By-product
    · Alternative item with strategy 2
    · Alternative item with usage probability 0
    · Discontinued
    · Follow-up material
    · Intra material
    Features
    Collective orders offer the following advantages:
    · Integrated view of a production process
    Collective orders make it possible to represent different levels of the production process together in the system. The production process can be viewed as an integrated whole.
    · Separate order number for every order
    Every level in a collective order represents a separate production order/planned order. Every production order/planned order has its own order number. This enables you to process the entire collective order, a subtree in the collective order or an individual order.
    · No placements in storage or removals from storage between production levels
    Within a collective order stock movements only take place for the leading order (that is, the order that is at the highest production level) and not for directly produced components. This makes it easier to maintain the collective order in comparison with several individual orders. A further advantage is a more realistic representation of the costs of the production process, since subordinate orders can be directly assigned and settled to superior orders.
    · Business functions simultaneously for several orders
    Certain business transactions can be carried out simultaneously for several orders. Releasing an order that belongs to a collective order has the effect that all the hierarchically subordinate orders are released simultaneously.
    · Automatic change to dependent orders
    Changes to an order automatically affect dependent orders / components affecting orders. For example, if you change the order quantity in an order then
    ¡ the relevant quantity changes are automatically made to dependent orders
    ¡ the requirements quantity of the directly produced component is automatically changed.
    In the collective order, you also have the option of manufacturing directly produced material in a different plant to the planning plant.
    · Set status in leading order
    If you make changes in subordinate orders that have an affect on the status, then the system sets the corresponding status in the order header of the leading order in the collective order as follows:
    u2013 CFCO Confirmation in collective order
    u2013 GMCO Goods movements in collective order
    u2013 RLNE Release taken place in network
    In this way you are informed about changes in the whole collective order.
    · Reading master data
    You can copy the routing data and BOM data to the order again. You can find more information in Read master data.
    Example
    You want to produce a pump. The BOM for the pump contains a pressure regulating valve and a spiral casing. You want to enter these two components in separate production orders, but you do not want them to be posted to stock.
    You set the special procurement type to direct production in the material master record for the pressure regulating valve and the spiral casing, so that production occurs using a collective order.
    When you create a production order for the pump, a collective order is automatically created, which contains subordinate production orders for the pressure regulating valve and the spiral casing.
    Creation of Collective Orders
    Use
    Collective orders are only created if the special procurement type is set to direct production in the components for which the separate production orders are to be created (materials planning area in the material master).
    In the standard system, 52 is the special procurement type for direct production (that is, for components that are produced within a collective order).
    To create a collective order, you must use an order type with internal number assignment.
    Hope this helps.
    Regards,
    Tejas

  • How do i save a iWEB site on an imac  and then  move to a laptop ?

    how do i save a iWEB site on an imac ( to what folder and where) and then transfer to a laptop ?
    Denis

    You transfer it via CD or flash drive or whatever. You install it by simply dragging and dropping the file into the folder on the new machine which corresponds to the folder where you got in on the old one.

Maybe you are looking for

  • My windows pc is showing an error message "The file iturnes library itl cannot be read"

    My windows pc is showing an error message "The file iturnes library itl cannot be read because it was created by a newer version of itunes".  I have not downgraded my itunes or done anything with  it other than follow standard download instructions .

  • WLC 7.4 with ACS 4.1

    Hi All Has anyone any experience of using a Cisco 5508 controller (code version 7.4.100.0) with an ACS appliance running version 4.1 or 4.2? I've found that the ACS constantly reports a 'Bad request from NAS' (Invalid message authenticator in EAP req

  • Updating image of a JLabel

    Hey all, I've been having some problems with repainting a JLabel with a new Image, I've looked at some other threads of this incident, but none of their solutions are working for me, any help appreciated. Code I'm currently using: Image img = Toolkit

  • More than one db field displayed in one table field

    Hi, I want to create a report in which in the last column there is displayed more than one result, because to each name there is more than one result. The client wants us to display the results in the same line with the name and not one result and on

  • Multitasking cannot handle more than 3-4 apps

    Multitasking cannot handle more than 3-4 apps. If you open more, the app just wont launch! I hope there would be a fix for this since it is very annoyoing.