Double Verification


Author
Message
msd78
msd78
Associate Member (190 reputation)Associate Member (190 reputation)Associate Member (190 reputation)Associate Member (190 reputation)Associate Member (190 reputation)Associate Member (190 reputation)Associate Member (190 reputation)Associate Member (190 reputation)Associate Member (190 reputation)
Group: Forum Members
Posts: 4, Visits: 9
Hi all!

Does anyone know of a way to enable double verification, so that participants are required to enter their ID# two times?
Thanks in advance!

-Mike
Dave
Dave
Supreme Being (1M reputation)Supreme Being (1M reputation)Supreme Being (1M reputation)Supreme Being (1M reputation)Supreme Being (1M reputation)Supreme Being (1M reputation)Supreme Being (1M reputation)Supreme Being (1M reputation)Supreme Being (1M reputation)
Group: Administrators
Posts: 12K, Visits: 98K
msd78 - 9/17/2019
Hi all!

Does anyone know of a way to enable double verification, so that participants are required to enter their ID# two times?
Thanks in advance!

-Mike

If you're talking about a web experiment, participant-entered ID *with* confirmation is one of the selectable standard options.

msd78
msd78
Associate Member (190 reputation)Associate Member (190 reputation)Associate Member (190 reputation)Associate Member (190 reputation)Associate Member (190 reputation)Associate Member (190 reputation)Associate Member (190 reputation)Associate Member (190 reputation)Associate Member (190 reputation)
Group: Forum Members
Posts: 4, Visits: 9
Dave - 9/17/2019
msd78 - 9/17/2019
Hi all!

Does anyone know of a way to enable double verification, so that participants are required to enter their ID# two times?
Thanks in advance!

-Mike

If you're talking about a web experiment, participant-entered ID *with* confirmation is one of the selectable standard options.

I'm using the desktop version of Inquisit 4. Would something like this have to be done/ could it be done, writing code?  
Dave
Dave
Supreme Being (1M reputation)Supreme Being (1M reputation)Supreme Being (1M reputation)Supreme Being (1M reputation)Supreme Being (1M reputation)Supreme Being (1M reputation)Supreme Being (1M reputation)Supreme Being (1M reputation)Supreme Being (1M reputation)
Group: Administrators
Posts: 12K, Visits: 98K
msd78 - 9/17/2019
Dave - 9/17/2019
msd78 - 9/17/2019
Hi all!

Does anyone know of a way to enable double verification, so that participants are required to enter their ID# two times?
Thanks in advance!

-Mike

If you're talking about a web experiment, participant-entered ID *with* confirmation is one of the selectable standard options.

I'm using the desktop version of Inquisit 4. Would something like this have to be done/ could it be done, writing code?  

Yes, with Inquisit Lab, you'd have to resort to something like two <openended> elements to collect an ID instead. I.e.

<openended enterID>
/ stimulusframes = [1=enterprompt]
/ branch = [openended.confirmID]
</openended>

<text enterprompt>
/ items = ("Please enter your ID:")
/ position = (50%, 40%)
</text>

<openended confirmID>
/ stimulusframes = [1=confirmprompt]
/ branch = [if (openended.confirmID.response != openended.enterID.response) trial.nomatch]
</openended>

<text confirmprompt>
/ items = ("Please confirm your ID:")
/ position = (50%, 40%)
</text>

<trial nomatch>
/ stimulusframes = [1=nomatchprompt]
/ branch = [openended.enterid]
/ trialduration = 2000
/ validresponse = (0)
</trial>

<text nomatchprompt>
/ items = ("The IDs you entered did not match. Please try again.")
/ position = (50%, 40%)
</text>

<block IDblock>
/ trials = [1=enterID]
</block>

<expt>
/ blocks = [1=IDblock]
</expt>

Note that this will be separate and independent of the subject ID.

msd78
msd78
Associate Member (190 reputation)Associate Member (190 reputation)Associate Member (190 reputation)Associate Member (190 reputation)Associate Member (190 reputation)Associate Member (190 reputation)Associate Member (190 reputation)Associate Member (190 reputation)Associate Member (190 reputation)
Group: Forum Members
Posts: 4, Visits: 9
Dave - 9/17/2019
msd78 - 9/17/2019
Dave - 9/17/2019
msd78 - 9/17/2019
Hi all!

Does anyone know of a way to enable double verification, so that participants are required to enter their ID# two times?
Thanks in advance!

-Mike

If you're talking about a web experiment, participant-entered ID *with* confirmation is one of the selectable standard options.

I'm using the desktop version of Inquisit 4. Would something like this have to be done/ could it be done, writing code?  

Yes, with Inquisit Lab, you'd have to resort to something like two <openended> elements to collect an ID instead. I.e.

<openended enterID>
/ stimulusframes = [1=enterprompt]
/ branch = [openended.confirmID]
</openended>

<text enterprompt>
/ items = ("Please enter your ID:")
/ position = (50%, 40%)
</text>

<openended confirmID>
/ stimulusframes = [1=confirmprompt]
/ branch = [if (openended.confirmID.response != openended.enterID.response) trial.nomatch]
</openended>

<text confirmprompt>
/ items = ("Please confirm your ID:")
/ position = (50%, 40%)
</text>

<trial nomatch>
/ stimulusframes = [1=nomatchprompt]
/ branch = [openended.enterid]
/ trialduration = 2000
/ validresponse = (0)
</trial>

<text nomatchprompt>
/ items = ("The IDs you entered did not match. Please try again.")
/ position = (50%, 40%)
</text>

<block IDblock>
/ trials = [1=enterID]
</block>

<expt>
/ blocks = [1=IDblock]
</expt>

Note that this will be separate and independent of the subject ID.

Great, I'll give this a try. Thank you@
msd78
msd78
Associate Member (190 reputation)Associate Member (190 reputation)Associate Member (190 reputation)Associate Member (190 reputation)Associate Member (190 reputation)Associate Member (190 reputation)Associate Member (190 reputation)Associate Member (190 reputation)Associate Member (190 reputation)
Group: Forum Members
Posts: 4, Visits: 9
This works thanks! Just out of curiosity, is there a way to make sure that this matches up with the Subject ID?
Dave
Dave
Supreme Being (1M reputation)Supreme Being (1M reputation)Supreme Being (1M reputation)Supreme Being (1M reputation)Supreme Being (1M reputation)Supreme Being (1M reputation)Supreme Being (1M reputation)Supreme Being (1M reputation)Supreme Being (1M reputation)
Group: Administrators
Posts: 12K, Visits: 98K
msd78 - 9/18/2019
This works thanks! Just out of curiosity, is there a way to make sure that this matches up with the Subject ID?

Sure. script.subjectid is the property you'll want to query instead of or in addition to (one of) the <openeneded>'s response property then.

GO

Merge Selected

Merge into selected topic...



Merge into merge target...



Merge into a specific topic ID...




Reading This Topic

Explore
Messages
Mentions
Search