Hi,
I’ve created a simple script to capture demographic
information, as shown below. When I extract the data , the file also contains
the response latency. As I don’t need this information is there any easy way to
modify the script so that response latency won’t be recorded?
<dropdown sex>
/ caption = "Sex"
/ options = ("female", "male")
</dropdown>
<textbox age>
/ caption = "Age"
/ mask = positiveinteger
/ range = (18, 110)
</textbox>
<surveypage demographics>
/ caption = "Please answer the following demographic
questions"
/ fontstyle = ("Verdana", -14, true, false, false,
false, 5, 0)
/ questions = [1=sex; 2=age]
</surveypage>
<survey demographics>
/ pages = [1=demographics]
/ responsefontstyle = ("Verdana", -12, false,
false, false, false, 5, 0)
/ itemfontstyle = ("Verdana", -13, false, false,
false, false, 5, 0)
/ itemspacing = 2%
/ showpagenumbers = false
</survey>