Question Writer Manual/Frequently Asked Questions/Back Button

From Wikibooks, open books for an open world
Jump to navigation Jump to search
Can I include a back button in every page, even with feedback after the question?

There is a way you can do this, but it is not a standard option within the program.

You need to edit this file (with a program like notepad):

C:\Program Files\Question Writer 4\Publishing\quizresources\styles.xml

You'll find a section

<style id="aftereachquestion">

<pair name="displayitemfeedbacknextbutton" value="true"/>
<pair name="displayitempresentationnextbutton" value="true"/>
<pair name="displayitemfeedbackbackbutton" value="false"/>
<pair name="displayitempresentationbackbutton" value="false"/>

</style>

change it so that all the values are true, like so

<style id="aftereachquestion">

<pair name="displayitemfeedbacknextbutton" value="true"/>
<pair name="displayitempresentationnextbutton" value="true"/>
<pair name="displayitemfeedbackbackbutton" value="true"/>
<pair name="displayitempresentationbackbutton" value="true"/>

</style>