You are right… this is what is happening with Hype.
I’ve meddled with some JavaScript code to make the scene change, but hiding the scene change in order to make HYPE populate the elements from a different scene… I’m not too proficient with JS and I was getting an error in the lines of… “error on call stack… too many calls” and my HYPE Document wasn’t running. (Hence the delayed response because of all this meddling with JS)
Today, I’ve managed to achieve this, after a bit of educating myself with some jQuery and JS…
hypeDocument.showNextScene();
nextScene = $(".HYPE_scene").filter(":visible");
nextScene.toggle();
hypeDocument.showPreviousScene();
This works now!