Forum Discussion
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?
- RenGomezStaff
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!
- HenrikPetter972Community Member
I'd also like to see this option!
- EricJones-b9363Community Member
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.
- GloriaDiaz-3357Community Member
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();
}
}