Full Screen

andrew-robertson
andrew-robertson Community Member Posts: 362 ♦ Idol ♦

In the Go To Web action, there is a new window properties section which allows you to set specific parameters for the popup window.

Ask: Can you please add a checkbox option under the Window Size to open the window full screen?

Reason: I have an external activity that I built, and instead of using this canned action, I had to add a OnMclRunJS to run the following code:

var params = [
  'height='+screen.height,
  'width='+screen.width,
  'fullscreen=yes' // only works in IE, but here for completeness
].join(',');

var popup = window.open('EN/index.html', 'popup_window', params); 
popup.moveTo(0,0);
Andrew R.
Developing content since 2010 using a mixed bag of tools.
4
4 votes

Active · Last Updated

Comments

  • tasiala
    tasiala Moderator Posts: 55 eLearning ROCKSTAR Stage Manager

    Thank you for the suggestion, I'll bring this up