Is there a way to access the size / resolution of the Snap window (i.e., the entire window, not just the stage) from within "Snap!" ?
This might get you close to what your after
var ide = world.children[0];
const width = window.innerWidth || document.documentElement.clientWidth ||
document.body.clientWidth;
const height = window.innerHeight|| document.documentElement.clientHeight||
document.body.clientHeight;
return ide.newList([width, height])
from this
@cymplecy @ericstein Yes, this points us in the right direction. Thanks so much!