Hello Mark
Yes ! it is actually working and you did a great job with this in the first place.
Reloading the page is a nice idea !
I made a little change in it following Jonathan recommandations in another post to have it work on
iPad :
This line :
var htmlWidget = hypeDocument.getElementById(“render”).children[0]; //iframe Widget
Should be written as it :
var htmlWidget = hypeDocument.getElementById(“render”).getElementsByTagName(“iframe”)[0] ; //iframe Widget
because of a div specification on mobile (I don’t really get it). See here Load scene into frame
@MarkHunte : One problem remains : instead of using button ID, I would like to use button ClassName. Any idea ?
LoadSceneInFrame.hype.zip (43.8 KB)