Reply To: Trial judgement and present unequal fillers

PennController for IBEX Forums Support Trial judgement and present unequal fillers Reply To: Trial judgement and present unequal fillers

#9590
xkyan
Participant

Hi Jeremy,

Sorry it’s me again. When I tried to test the presentation of fillers, I encountered a problem that “Please wait while the resources are preloading. This may take up to 1min.” But I’ve waited for more than 15 mins and it still didn’t finish. I’m wondering if there’s sth wrong with my codes, or it was caused by some other problems (e.g. network connection, etc.).

Basically I just want to test if two kinds of fillers can be detected and presented in the right format. Here’s my code:


Sequence(randomize("fillers"))
// Define the template for filler trials
Template("items-fillers.csv", row =>

    newTrial("fillers",
        // newVar("RT").global().set("0"),
        // newVar("TFPress").global().set(false),
        newVar("kind", row.condition)
        ,
        // pic(row)
        getVar("kind")
            .test.is("flanker")
            .success(
                pic(row)
            )
            .failure(
                spr(row)
            )
    )
)

Thanks a lot in advance!