PennController for IBEX › Forums › Support › Progress bar › Reply To: Progress bar
August 4, 2020 at 9:03 pm
#5889
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