Var shufflesequence from Spreadsheet

PennController for IBEX Forums Support Var shufflesequence from Spreadsheet

  • This topic is empty.
Viewing 1 post (of 1 total)
  • Author
    Posts
  • #1804
    Matthew Hunt
    Guest

    Hi again,

    I am trying to run a simple scale experiment through a spreadsheet. It has 2 lines of dialogue. The first is always the same then the second is fed from the spreadsheet. The beginning of my code looks like this:

    var shuffleSequence = seq(randomize(“Sentence”);
    PennController.ResetPrefix(null);
    PennController.Template(

    row => PennController(
    newText(“left label”, “uneducated”)
    ,
    newText(“right label”, “educated”)
    ,
    newText( “question”, ” P1: I just got promoted at work”)
    .settings.italic()
    .settings.center()
    .print()
    ,
    newText( “Sentence” , row.Sentence )
    .settings.italic()
    .settings.center()
    .print()
    ,

    ——————-

    This is followed by a question and a scale of 1-7. It all works fine without the top line (starting var), but when I add that to randomise the sentence from the spreadsheet it says ‘ERROR: There must be some items in the running order!’ when I run the exp. Any ideas?

    Best,

    Matthew

Viewing 1 post (of 1 total)
  • You must be logged in to reply to this topic.