+x uni-student92084 - 12/27/2020Hello!This isn't related to coding on Inquisit but whenever I run my script my inquisit app on my Mac laptop can't make it past the few pages of instructions and the app quits unexpectedly. The script isn't very long but my app cant make it past the instructions and crashes. I have tried to restart my computer but the issue continues . I can run my past scripts but just not the one I am currently working on. I will post the script I am working on below if that help in solving the issue. Could you please help me figure out how to fix this issue? Thank you!
+x Dave - 12/28/2020+x uni-student92084 - 12/27/2020Hello!This isn't related to coding on Inquisit but whenever I run my script my inquisit app on my Mac laptop can't make it past the few pages of instructions and the app quits unexpectedly. The script isn't very long but my app cant make it past the instructions and crashes. I have tried to restart my computer but the issue continues . I can run my past scripts but just not the one I am currently working on. I will post the script I am working on below if that help in solving the issue. Could you please help me figure out how to fix this issue? Thank you! You've instructed your script to display a stimulus called "error" as erromessage, and a stimulus called "correct" as correctmessage:<block fraud_per>/bgstim = (G1_IY, G1_EN, CounA_Dem)/trials = [1=fraud_per]/errormessage = true(error, 1000)/ correctmessage = true(correct, 1000)/ preinstructions = ( page.g1page1, page.g1page2)</block>No such stimuli are defined anywhere in the script, hence the crash. Add<text correct>/ items = ("CORRECT")/ txcolor = green/ position = (50%, 65%)</text><text error>/ items = ("ERROR")/ txcolor = red/ position = (50%, 65%)</text>and it'll work.
+x uni-student92084 - 12/28/2020+x Dave - 12/28/2020+x uni-student92084 - 12/27/2020Hello!This isn't related to coding on Inquisit but whenever I run my script my inquisit app on my Mac laptop can't make it past the few pages of instructions and the app quits unexpectedly. The script isn't very long but my app cant make it past the instructions and crashes. I have tried to restart my computer but the issue continues . I can run my past scripts but just not the one I am currently working on. I will post the script I am working on below if that help in solving the issue. Could you please help me figure out how to fix this issue? Thank you! You've instructed your script to display a stimulus called "error" as erromessage, and a stimulus called "correct" as correctmessage:<block fraud_per>/bgstim = (G1_IY, G1_EN, CounA_Dem)/trials = [1=fraud_per]/errormessage = true(error, 1000)/ correctmessage = true(correct, 1000)/ preinstructions = ( page.g1page1, page.g1page2)</block>No such stimuli are defined anywhere in the script, hence the crash. Add<text correct>/ items = ("CORRECT")/ txcolor = green/ position = (50%, 65%)</text><text error>/ items = ("ERROR")/ txcolor = red/ position = (50%, 65%)</text>and it'll work.Thanks so much Dave! I had no idea that Inquisit would crash with this kind of mistake, again thank you for the guidance!Have a good new year!