Three questions actually in total.
1:
I made this volume slider with designer that when i click it moves it on X to the place where mouse pointer at that moment is.
Now the idea is that if your volume is say at 50 percent, then when you come to that Page that slider would be in correct place already, in this case, at middle of slider.
I also have some options like "Continue" game option. If there is no saved game existing, it of vcourse whouldnt display that text at all.
So question is wether i can put at some place some code simply in way of:
Code: Select all
If VariableX=0 Then ShowLayer(ID,x,y)
ElseIf Variable X=1 Then something else...
Second question is regarding the same slider.
Now problem is that there is this option "When Clicked" but it reacts only to ONE click, not to continuous Click (mouse button kept down).
In this case it means that everytime i move that slider, i need to click. And that means that moving it to 100 percent you need to click at right spot.
It would much more comfortable if you could just hold your mouse button down and drag it to where ever you want it.
Is there way to have "While Mouse Button Down" option in Designer?
If there isnt now, then you should add one for the next version of Designer.
3:
When i make Custom Code and i want it to go to some other page, what command should i use then?
I mean. say when you click on button comes code:
Code: Select all
If VariableX=0 Then Goto Page "Main Menu"
Is it simply Goto "place in code"
and if so, then how do i know what is the name of that place in code, or is it maybe the name of the page?