up Inquisit Language Reference

releaseDate property

The release date for the version of Inquisit running the script.

Member of

<inquisit>

Syntax

inquisit.name.releaseDate

Read Only

Type

string

Remarks

The releaseDate property can be used in combination with the version property to track which version of Inquisit was used to collect a given set of data. The format of the time is mmddyy. For example, June 6th, 2011 would appear as "060611".

Examples

The following displays the value of releaseDate in a text stimulus:

<text myText>
/ items= ("releaseDate = <% inquisit.releaseDate %>")
</text>

The following saves the releaseDate (among other values) to a summary data file:

<summarydata>
/ columns=(script.subjectId, script.startDate, script.startTime, inquisit.version, inquisit.releaseDate, expressions.da, expressions.db, expressions.d)
/ file="iat_summary.iqdat"
</summarydata>

Copyright Millisecond Software, LLC. All rights reserved.