Forum Discussion

BakangFrank-155's avatar
BakangFrank-155
Community Member
7 years ago

Full Screen

Am working on Articulate Storyline 3, and am interested on having my courses appear as full screen. **See attached, is there a way to make that possible somehow?

  • Hi Zuzana,

    No updates to share on the ability to have a full-screen option in Rise 360 from a storyline block, but I appreciate you sharing you'd like to see this as well.

    We'll be sure to update you in this discussion once we have any news to share on this!

  • I would also like to see this as an option. Is it possible to edit the rise files to allow it?

  • Hi Michael! While we don't support modifying the published output, other folks in the community may be able to point you in the right direction. 

  • Hi! How can I use this code? Where should I include it?

    Thanks

    if ((document.fullScreenElement && document.fullScreenElement !== null) ||
    (!document.mozFullScreen && !document.webkitIsFullScreen)) {
    if (document.documentElement.requestFullScreen) {
    document.documentElement.requestFullScreen();
    } else if (document.documentElement.mozRequestFullScreen) {
    document.documentElement.mozRequestFullScreen();
    } else if (document.documentElement.webkitRequestFullScreen) {
    document.documentElement.webkitRequestFullScreen(Element.ALLOW_KEYBOARD_INPUT);
    }
    } else {
    if (document.cancelFullScreen) {
    document.cancelFullScreen();
    } else if (document.mozCancelFullScreen) {
    document.mozCancelFullScreen();
    } else if (document.webkitCancelFullScreen) {
    document.webkitCancelFullScreen();
    }
    }