philo wrote:Do you mean when loading a tease and it goes to the last page you were on?taylordawn wrote:is there a way to save just certain pages of a tease?
There is a setting to tell it to always start from the beginning.
If you mean like save points.
There are probably ways to do it but not easy.
I can't think of an easy way, within the tease to know that it is coming to a page due to a load rather than a key press.
Possibly saving the date/time a page was loaded in the page load. And then checking it for them being on the page too long and redirecting also in the page load.
so something like this
Get the saved loadTime
Get the current date
If there is a previous loadTime then if it was more than 30 seconds ago go to Page5 instead
finally if we didn't redirect then save the current time in loadTime
The "s" indicates seconds, but can be d, h, m or s (days, hours, minutes, seconds)
There is a setting that forces the tease to always load the start page.Code: Select all
<Page id="start"> <Text> <div>Start Page</div> </Text> <Image id="" /> <Button target="start2" /> <javascript><![CDATA[ function pageLoad() { loadTime = scriptVars.get("loadTime"); currTime = new Date(); if (loadTime instanceof Date) { if (guide.dateDifference("s", loadTime, currTime) > 30) { overRide.setPage("Page5"); } } scriptVars.put("loadTime", currTime); } ]]></javascript> </Page>
I will look at enhancing that to add a start on page variable so you can do something like set that flag for your tease, then guide.setStartPage = "Page5" anywhere in javascript would start the page on Page5 when loaded.
That way you could set the page at various points in the tease to bring them back to the relevant page if they drop out of the tease
i wanted to save a certain part of a tease. Like just the part that involves nipple play but not the rest of the tease.




