alois wrote: Fri Dec 06, 2019 9:43 am
I just got stuck at the testing stage, nothing can be done because there is no skip button. I deleted this work from my computer.
This will correct stucking to calibration and no calibration audio. Can be edited with some text editor into the script. This part had 4 errors.
1) At the end of this Page id="StimSetup-5" there's a "Button target" definition that was pointing back to page 5 so that is corrected to 6 so that the tease won't stuck here.
2) At the end of page id 6 there's a "Button target" definition that allows repeating the calibration but that was pointing also to itself i.e. page 6 when it should point to page 5 like corrected below.
3) The audio link was put to page 6 when it should be in page "StimSetup-5" like below.
4) The calibration signal as well as the warm-up first Bianca tease all had this row scripVars.put(vol,80) that I have put into comments below. I don't know what it should do but the audio won't play if that line is included. The actual tease girls didn't have that row in their audio section so those were playing normally.
<Page id="StimSetup-5">
<Text>
<P>The signal will ramp up for the first 10 seconds
<BR/>You must put both Channel A and B as high as you can take</P>
</Text>
<Delay seconds="20" style="hidden" target="StimSetup-6"/>
<Image id="Images/Uploaded/Michelle Intro/1535938481_bianca_catsuit043_029.jpg"/>
<javascript>
<![CDATA[
function pageLoad() {
<!-- scriptVars.put(vol,80); -->
overRide.setAudio("Stim/Normalised/calibrate.mp3","","","","","","","",80);
}]]>
</javascript>
<Button target="StimSetup-6">Done Mistress</Button>
</Page>
<Page id="StimSetup-6">
<Image id="Images/Uploaded/Michelle Intro/1535938507_bianca_catsuit128_080.jpg"/>
<Button target="Setup-1">Ready Mistress</Button>
<Button target="StimSetup-5">Repeat calibration</Button>
</Page>