Open in a new window

Hello, I have a question, is it possible to open scene in a new window (not tab) after pressing Play button? Thank you!

Hi!

There is no such an option but you can achieve equivalent behavior by embedding a clickable image instead of the scene in your website:

  1. Make a screenshot of the scene “cover”, including the Play button.
  2. Put the screenshot on some hosting. Let’s assume it’s available at [SCREENSHOT-ADDRESS].
  3. Embed the screenshot in your webpage and make it open the scene in a new window. If you add #autoplay suffix to the scene address the scene will start automatically after opening.

For example:

<a href="[SCENE-ADDRESS]#autoplay" target="_blank">
  <img style="height: 800px; width: 600px" src="[SCREENSHOT-ADDRESS]">
</a>

Thank you for reply! Looks like the way out)