> 1. After selecting "User entered" it says "Enter the message instructing participants to enter a subject ID." I try to update the text but when I
> save it just defaults back to the original text (Please enter your ID) and won't save my edits.
This is a bug in the configuration wizard. As a workaround, you can select the 'Custom JavaScript' option and paste in the following code:
PromptMask = /^\s*\S.*$/;
PromptMessage = "Please enter your MTurk ID:";
PromptError = "The ID you entered was invalid.";
if ( PromptResult == null )
{
Prompt();
}
return PromptResult
> I don't have any group assignment in my scripts
This is incorrect. You *do* have group assignment in your scripts, at the very least in your IAT. If not specified otherwise in the respective script's <expt> and/or <variables> elements, the /groupassignment method Inquisit assumes by default is 'subjectnumber'. Condition assignment is a mathematical operation, i.e., it requires a *numerical* input to work.
You need to switch the /groupassignment to 'groupnumber' as in
<expt>
...
/ subjects = (1 of 2)
/ groupassignment = groupnumber</expt>
<expt>
...
/ subjects = (2 of 2)
/ groupassignment = groupnumber</expt>
and/or
<variables>
/group =(1 of 2) (...)
/group = (2 of 2) (...)
/ groupassignment = groupnumber</variables>
respectively.
Then set the launch page to generate a random *numerical* group id.