Control external page from hype with a turnable knob

Hi, I’ve created a simple turnable knob. (basically it controls the timeline) Is it possible to get this inforamton out of hype to access different pages? If you look in my Hype document you see the knob to make it a little more clear. If one turn the knob to let’s say the number 3, the external page would show page number 3.

Turnable Knob

Kind regards
Georg

1 Like

You can use javascript to change the window.location:

document.location.href='/page3.html';

Add this to a timeline action on the time that meets 3 on the dial ?

2 Likes

Great. Thank you. That’s it.