Show stage alone

Is there a way to quickly show how. a photo looks on the stage by itself-- i.e., crop to just the dimensions of the scene you're in. Screenshot should show what I mean. I realize I could just preview the scene or group the pic and crop it, but I thought there might be a quick method

Thanks

Screenshot 2024-01-23 at 12.03.21 PM

There's no quick shortcut for this, but one way to hide content outside of the scene is to create a few rectangles on all sides and then lock them in place so they obscure the area outside of scene.

Can't you put everything inside a main group and hide overflow?

1 Like

Actually, A hack.

If you add a rect to your scene (temp)
and put this code in it. You can toggle the overflow.

<label>
  <input type="checkbox" id="overflowToggle" onchange="function myfunc() {var hypeScene = document.querySelector('.HYPE_scene');var checkbox = document.getElementById('overflowToggle');if (checkbox.checked) {hypeScene.style.overflow = 'hidden';} else {hypeScene.style.overflow = 'visible'}} myfunc()"> Toggle Overflow
</label>