<!--Saved by Quest 5.4.4812.28144-->
<asl version="540">
<include ref="GamebookCore.aslx" />
<game name="GameBook01">
<gameid>a69b5b51-28ae-40cb-87f3-0ad18b8a695a</gameid>
<version>1.0</version>
<firstpublished>2013</firstpublished>
</game>
//FIRST PAGE STARTS HERE
<object name="First page">
<inherit name="script" />
<description><![CDATA[This is page 1. Type a description here, and then create links to other pages below.<br/>]]></description>
///SCRIPTS ARE HERE
<script type="script">
play sound ("Kalimba.mp3", false, false)
msg ("This is the first page.")
msg ("{page:Page2}")
msg ("{page:Page3}")
</script>
<object name="player">
<inherit name="defaultplayer" />
</object>
</object>
<object name="Page2">
<description>This is page 2. Type a description here, and then create links to other pages below.</description>
<options type="stringdictionary">
<item>
<key>Page3</key>
<value>Go To Page 3</value>
</item>
<item>
<key>First page</key>
<value>Page1</value>
</item>
</options>
</object>
<object name="Page3">
<description>This is page 3. Type a description here, and then create links to other pages below.</description>
<options type="stringdictionary">
<item>
<key>Page2</key>
<value>Go To Page 2</value>
</item>
<item>
<key>First page</key>
<value>Page1</value>
</item>
</options>
</object>
</asl>
Yuri wrote:
EDIT: I got it. I have to use scripts as pages, now it works when I call the function.
But now there's another problem; how can I now redirect to other pages? I don't find that option.
Yuri wrote:"Yuri"
EDIT: I got it. I have to use scripts as pages, now it works when I call the function.
But now there's another problem; how can I now redirect to other pages? I don't find that option.
Anyone?
Why can I only show text + links to other pages OR run a script; why not both at the same page?