Hello,
I am very new to Inquisit so please bear with me. I am trying to create a script with 2 survey questions using blocks. However my code shows the number '1' for both questions, and the number '1' is shown twice, like this:
1
1). Please enter your email
Could someone tell me how can I remove the number '1' on top, and also how to either remove the 1). , or make it an ordered list so that question number two is 2). Thank you very much!
Here is the snippet of codes I am using:
***********************************************************************
Enter email
***********************************************************************
<block enterEmail>
/ trials = [1=mypage]
</block>
<surveypage mypage>
/ questions = [1=email]
</surveypage>
<textbox email>
/ caption= "Please enter a valid email address."
/ mask = emailaddress
/ textboxsize = (40%, 5%)
</textbox>
***********************************************************************
Enter Twitter username
***********************************************************************
<block enterTwitter>
/ trials = [1=mypage1]
</block>
<surveypage mypage1>
/ questions = [1=twitter]
</surveypage>
<textbox twitter>
/ caption= "Please enter your valid Twitter username in the format of @username."
/ textboxsize = (40%, 5%)
</textbox>
**************************************************************************************************************
**************************************************************************************************************
EXPERIMENT
**************************************************************************************************************
**************************************************************************************************************
<expt>
/blocks = [1 = enterEmail; 2 = enterTwitter]
</expt>