Reply To: Progress bar

PennController for IBEX Forums Support Progress bar Reply To: Progress bar

#5889
Jeremy
Keymaster

Hi Sander,

Use .setOption on the PennController trials for which you want to hide the progress bar, e.g.:

newTrial("intro",
  newHtml("intro.html").print()
  ,
  newButton("Next").print().wait()
)
.setOption("hideProgressBar", true)

Template( row => 
  newTrial( "test" ,
    newButton(row.Text).print().wait()
  )
)

newTrial("end" ,
  newHtml("end.html").print()
  ,
  newButton().wait() // wait here forever
)
.setOption("hideProgressBar", true)
.setOption("countsForProgressBar", false)

Jeremy