Skilli
About
- Username
- Skilli
- Joined
- Visits
- 210
- Last Active
- Roles
- Member
Comments
-
Thanks @Daniel. Does that means inline script using the prepare phase can go anywhere in the trial sequence?
-
Good man! Thanks you @Daniel that worked. Just one question, why does code have to go in the prepare phase and not the run phase. From what I understood, declaring variables go in the prepare phase and running code goes in run, as it runs. Plea…
-
Thanks @Daniel This makes alot of sense to me along with the text above. I had to declare the variable ITI at the start of the experiment (see image) https://forum.cogsci.nl/uploads/784/YQOR7OD0VWGP.png However, it does not work. I get an invali…
-
Hi, I have a simlar query. I'm converting an experiment to work on OSWEB. I have a variable ISI that ranges between 500-1500 with steps of 100ms. The current script is as follows. https://forum.cogsci.nl/uploads/256/7AEI3E26UZFM.png I am not a …
-
I have found the answer to my own question Windows not yet suported. https://www.jatos.org/Update-JATOS.html#normal-process
-
Thanks for the relpy. Does docker run on a 'virtual server'?
-
😀 👍️
-
With the init item in the original place (i.e. start of the "word frag Task"), the response variable is reset to " " (i.e. nothing). The experiment moves onto the word_frag_loop and runs the word_frag_sequence, which then runs…
-
I have attached the word fragment completion task that will work in OSWEB. Someone might be able to use it. https://forum.cogsci.nl/uploads/197/T87VK3BK745Y.osexp Thanks again Sebastiaan. Deiniol Skilli
-
Thank you @Sebastiaan. Moving the init item mad the experiment work. I think it make sense. With the init item in the original place, it would not reset the response on every sunsequent loop of the word_frag_loop. When you say "once you press…
-
Eduard, Fantastic. Thank you very much.
-
Hi Sebastiaan, Many thanks for your help. Yes, the pre release version fixed the problems with the srbox and correct variables. However, I have another problem. I have 500 experimental trials set to run sequentially. Repeat is set to "eac…
-
I've managed to get it working by using an inline script right after the srbox item (see below). Acc and correct are now calculated but total_correct still doesn't work (I can live with that). Would be nice to know what went wrong in the first plac…
-
Update, I still can't get this to work. Keyboard inputs work fine and ACC and correct variables are calculated but still no luck with the SR box. I also get an error when running the SRbox in dummy mode (see below). Don't know if this has anyth…
-
I've fixed it! used the following script if var.acc < 80: exp.items["PracticeLoop"].prepare() exp.items["PracticeLoop"].run() if var.acc > 80: exp.items["EndofPractice"].prepare() exp.items[&…
-
Jarik, Thank you for taking the time to reply. I looked up the example you posted http://forum.cogsci.nl/index.php?p=/discussion/comment/7616#Comment_7616 and have used the following script in an inline script that occurs after the practice block…