Forum Replies Created
-
AuthorPosts
-
ediachek
ParticipantThank you for double-checking… Maybe the problem is that I don’t see the latest submission. When I download the data, I can only see one submission even though last week it was 4. I have seen that other people have similar issues. Should I try refreshing?
ediachek
ParticipantI didn’t initially but then I did, ran an additional participant, and it didn’t work again… Here is the link to the study: https://farm.pcibex.net/r/LAfkkh/
ediachek
ParticipantThank you for that! It worked!
A quick follow-up on it — for some reason, in my collected datafile, participants’ prolific ids are recorded as “PROLIFIC ID” instead of their actual ids. Is there a way to fix that?
ediachek
ParticipantHi Jeremy,
I am ready to run my experiment (yay) and I want to be able to get participants’ Prolific ID from the URL, so I followed the instructions from here: https://doc.pcibex.net/how-to-guides/using-prolific/. I copied and pasted your code (see below) but it gives me an error:
//Validation newTrial("final" , newText("<p>Thank you for your participation!</p>") .center() .print() , newText("<p><a href='https://app.prolific.co/submissions/complete?cc=CGL9GN20'+ GetURLParameter("id")+"' target='_blank'>Click here to confirm your participation on Prolific.</a></p> <p>This is a necessary step in order for you to receive participation credit!</p>") .center() .print() , newButton("void") .wait() )
Do you have any suggestions on how to fix this? Here is also the link to the experiment: https://farm.pcibex.net/r/LAfkkh/
ediachek
ParticipantHi Jeremy,
I’m sorry I’m bugging you with a simple question again. I want to display 3 words in a random order horizontally in one line. When I’m using your trick above, I am losing 1 word and there are no spaces between them. Can I add spaces between and move it down a bit? Do you have any suggestions on how to fix it?
Template("triplets_English_version3.csv", row => newTrial("trials", newText("agent",row.agent).bold().color("red"), newText("verb",row.verb).bold().color("red"), newText("patient",row.patient).bold().color("red"), getText("agent") .after(getText("verb") .after(getText("patient"))) .print() , newSelector("triads") .add(getText("agent"),getText("verb"),getText("patient")) .shuffle() .disableClicks() .center() , newText("instructions","Please make up a sentence using all 3 words above and type it in the box below"), newTextInput("answer", "") .size(400,200) .center() .print() .log() , newCanvas("trial_display", 1000, 500) .add("center at 50%", "middle at 20%", getSelector("triads")) .add("center at 50%", "middle at 40%", getText("instructions") ) .add("center at 50%", "middle at 65%", getTextInput("answer") ) .print() ,
ediachek
ParticipantThis is embarrassing! Thanks so much!
ediachek
ParticipantHi Jeremy,
I am experiencing an odd issue! I am loading my images for the study from Amazon using a .zip file. The files load well except for the images with the number “3” in the filename (e.g., 84.3.jpg or 12.3.jpg). I changed the filenames to include “three” instead of “3”, i.e., 84.three.jpg but that didn’t work. Do you know what might be the issue?
Here is the link to my project: https://farm.pcibex.net/r/IFjZFn/
Best,
Yevediachek
ParticipantThis is incredible! Thank you so much!
ediachek
ParticipantHi Jeremy,
I am using an Amazon S3 server to host my materials for the study. However, because there are so many items for each list, it takes a really long time to preload them all, so I was thinking that it would be helpful to set up a conditional statement that will grab list number and will only preload the materials for that list. Can you please advise on how to make that possible?
So far, I have this:
getVar("group").test.is(1) .success(PreloadZip("https://s3.us-east-2.amazonaws.com/bell.bottoms.pcibex/bell_bottoms_list1.zip"))
But I also have 16 lists and was hoping to make it more efficient! Thank you for your help.
Here is the link to my study: https://farm.pcibex.net/r/IFjZFn/
-
This reply was modified 2 years, 7 months ago by
ediachek.
-
This reply was modified 2 years, 7 months ago by
-
AuthorPosts