Millisecond Forums

Expression contains unknown property

https://forums.millisecond.com/Topic28715.aspx

By nash - 4/12/2020

Hey together, 

I've got this order:
<text feedback>
/ items = ("Sie haben <%survey.SRP.numcorrect%> von 16 Fragen richtig gelöst.~n~n~n

Normstichprobe:~n
Gesamt Mittelwert: 9,21; Standardabweichung: 2,54.~n
Frauen Mittelwert: 9,07; Standardabweichung: 2,54.~n
Männer Mittelwert: 9,36; Standardabweichung: 2,52.~n~n~n

Bitte notieren Sie sich diese Werte auf dem Smartphone oder auf einem Blatt Papier.")
/ halign = center
/ valign = center
/ fontstyle = ("Times New Roman", -35)
/ position = (50,50)
</text>

The "<%survey.SRP.numcorrect%>" refers to a survey, consisting of 16 surveypages with each consisting of a multiple choice question, where one answer is correct:
<survey SRP>
/showbackbutton = false
/nextlabel = "Weiter"
/ finishlabel = "Weiter"
/pages = [1=1; 2=2; 3=3; 4=4; 5=5; 6=6; 7=7; 8=8; 9=9; 10=10;
11=11; 12=12; 13=13; 14=14; 15=15; 16=16]
/ timeout = 900000
</survey>

Example for a question:
<radiobuttons 12>
/ caption = "Paula, Barbara, Henrik, Simon und Elias stellen sich der Größe nach auf, sodass das größte Kind ganz links außen steht.
Wer ist das größte Kind, wenn folgende Angaben stimmen?~n"
/ subcaption = "– Paula steht an zweiter Stelle.
– Barbara steht links von Henrik.
– Elias steht direkt links neben Simon.
– Henrik steht rechts von Simon."
/ fontstyle = ("Times New Roman", 3%)
/ options = ("Barbara", "Elias", "Simon", "Henrik")
/ optionvalues = ("1", "2", "3", "4")
/ validresponse = ("1", "2", "3", "4")
/ correctresponse = ("1")
/ responsefontstyle = ("Times New Roman", 2%)
/ orientation = vertical
/ required = true
</radiobuttons>

But when I try to run the experiment, Inquisit says:
'survey.srp.numcorrect' The expression contains an unknown property.
Invalid syntax 'survey.srp.numcorrect'.

Can somebody help me out? One year ago, the syntax could run with Inquisit 5.

Thanks to everybody and stay healthy!
By Dave - 4/12/2020

nash - 4/12/2020
Hey together, 

I've got this order:
<text feedback>
/ items = ("Sie haben <%survey.SRP.numcorrect%> von 16 Fragen richtig gelöst.~n~n~n

Normstichprobe:~n
Gesamt Mittelwert: 9,21; Standardabweichung: 2,54.~n
Frauen Mittelwert: 9,07; Standardabweichung: 2,54.~n
Männer Mittelwert: 9,36; Standardabweichung: 2,52.~n~n~n

Bitte notieren Sie sich diese Werte auf dem Smartphone oder auf einem Blatt Papier.")
/ halign = center
/ valign = center
/ fontstyle = ("Times New Roman", -35)
/ position = (50,50)
</text>

The "<%survey.SRP.numcorrect%>" refers to a survey, consisting of 16 surveypages with each consisting of a multiple choice question, where one answer is correct:
<survey SRP>
/showbackbutton = false
/nextlabel = "Weiter"
/ finishlabel = "Weiter"
/pages = [1=1; 2=2; 3=3; 4=4; 5=5; 6=6; 7=7; 8=8; 9=9; 10=10;
11=11; 12=12; 13=13; 14=14; 15=15; 16=16]
/ timeout = 900000
</survey>

Example for a question:
<radiobuttons 12>
/ caption = "Paula, Barbara, Henrik, Simon und Elias stellen sich der Größe nach auf, sodass das größte Kind ganz links außen steht.
Wer ist das größte Kind, wenn folgende Angaben stimmen?~n"
/ subcaption = "– Paula steht an zweiter Stelle.
– Barbara steht links von Henrik.
– Elias steht direkt links neben Simon.
– Henrik steht rechts von Simon."
/ fontstyle = ("Times New Roman", 3%)
/ options = ("Barbara", "Elias", "Simon", "Henrik")
/ optionvalues = ("1", "2", "3", "4")
/ validresponse = ("1", "2", "3", "4")
/ correctresponse = ("1")
/ responsefontstyle = ("Times New Roman", 2%)
/ orientation = vertical
/ required = true
</radiobuttons>

But when I try to run the experiment, Inquisit says:
'survey.srp.numcorrect' The expression contains an unknown property.
Invalid syntax 'survey.srp.numcorrect'.

Can somebody help me out? One year ago, the syntax could run with Inquisit 5.

Thanks to everybody and stay healthy!

Use

survey.srp.correctcount

instead of

survey.srp.numcorrect

<text feedback>
/ items = ("Sie haben <%survey.SRP.correctcount%> von 16 Fragen richtig gelöst.~n~n~n

Normstichprobe:~n
Gesamt Mittelwert: 9,21; Standardabweichung: 2,54.~n
Frauen Mittelwert: 9,07; Standardabweichung: 2,54.~n
Männer Mittelwert: 9,36; Standardabweichung: 2,52.~n~n~n

Bitte notieren Sie sich diese Werte auf dem Smartphone oder auf einem Blatt Papier.")
/ halign = center
/ valign = center
/ fontstyle = ("Times New Roman", -35)
/ position = (50,50)
</text>


By nash - 4/13/2020

Dave - 4/12/2020
nash - 4/12/2020
Hey together, 

I've got this order:
<text feedback>
/ items = ("Sie haben <%survey.SRP.numcorrect%> von 16 Fragen richtig gelöst.~n~n~n

Normstichprobe:~n
Gesamt Mittelwert: 9,21; Standardabweichung: 2,54.~n
Frauen Mittelwert: 9,07; Standardabweichung: 2,54.~n
Männer Mittelwert: 9,36; Standardabweichung: 2,52.~n~n~n

Bitte notieren Sie sich diese Werte auf dem Smartphone oder auf einem Blatt Papier.")
/ halign = center
/ valign = center
/ fontstyle = ("Times New Roman", -35)
/ position = (50,50)
</text>

The "<%survey.SRP.numcorrect%>" refers to a survey, consisting of 16 surveypages with each consisting of a multiple choice question, where one answer is correct:
<survey SRP>
/showbackbutton = false
/nextlabel = "Weiter"
/ finishlabel = "Weiter"
/pages = [1=1; 2=2; 3=3; 4=4; 5=5; 6=6; 7=7; 8=8; 9=9; 10=10;
11=11; 12=12; 13=13; 14=14; 15=15; 16=16]
/ timeout = 900000
</survey>

Example for a question:
<radiobuttons 12>
/ caption = "Paula, Barbara, Henrik, Simon und Elias stellen sich der Größe nach auf, sodass das größte Kind ganz links außen steht.
Wer ist das größte Kind, wenn folgende Angaben stimmen?~n"
/ subcaption = "– Paula steht an zweiter Stelle.
– Barbara steht links von Henrik.
– Elias steht direkt links neben Simon.
– Henrik steht rechts von Simon."
/ fontstyle = ("Times New Roman", 3%)
/ options = ("Barbara", "Elias", "Simon", "Henrik")
/ optionvalues = ("1", "2", "3", "4")
/ validresponse = ("1", "2", "3", "4")
/ correctresponse = ("1")
/ responsefontstyle = ("Times New Roman", 2%)
/ orientation = vertical
/ required = true
</radiobuttons>

But when I try to run the experiment, Inquisit says:
'survey.srp.numcorrect' The expression contains an unknown property.
Invalid syntax 'survey.srp.numcorrect'.

Can somebody help me out? One year ago, the syntax could run with Inquisit 5.

Thanks to everybody and stay healthy!

Use

survey.srp.correctcount

instead of

survey.srp.numcorrect

<text feedback>
/ items = ("Sie haben <%survey.SRP.correctcount%> von 16 Fragen richtig gelöst.~n~n~n

Normstichprobe:~n
Gesamt Mittelwert: 9,21; Standardabweichung: 2,54.~n
Frauen Mittelwert: 9,07; Standardabweichung: 2,54.~n
Männer Mittelwert: 9,36; Standardabweichung: 2,52.~n~n~n

Bitte notieren Sie sich diese Werte auf dem Smartphone oder auf einem Blatt Papier.")
/ halign = center
/ valign = center
/ fontstyle = ("Times New Roman", -35)
/ position = (50,50)
</text>



Thanks a lot! Now it's working :)