Fixing Timer


Author
Message
Jin
Jin
Distinguished Member (3.5K reputation)Distinguished Member (3.5K reputation)Distinguished Member (3.5K reputation)Distinguished Member (3.5K reputation)Distinguished Member (3.5K reputation)Distinguished Member (3.5K reputation)Distinguished Member (3.5K reputation)Distinguished Member (3.5K reputation)Distinguished Member (3.5K reputation)
Group: Forum Members
Posts: 26, Visits: 103
Hi All,

I am trying to program Inquisit to display a Timer next to a picture. The subject is suppose to look at the picture and talk for 60sec, and I am trying to have a timer count down to let them know how much time they have left. Also I am having issue skipping through the "Wait" block; "ctrl-b" doesn't work for some reason.

---------------------
**Waiting Screens***
---------------------
<picture wait>
/ items = wait
/ position = (50, 50)
/ size = (75%, 75%)
</picture>

<item wait>
/1 = "WaitingScreen.jpg"
</item>

----------
**Timer**
----------

<clock Timer>
/ mode = timer
/ resetrate = trial
/ erase = false
/ txbgcolor = yellow
/ txbgcolor = black
/ timeout = 60000
/ position = (90%, 10%)
/ format = "mm:ss"
</clock>

<trial wait>
/ ontrialbegin = [clock.timer.start(0)]
/ stimulustimes = [0=wait]
/ validresponse = (57)
/ inputdevice = keyboard
/ responseinterrupt = immediate
/ trialduration = 60000
/ pretrialpause = 250
/ posttrialpause = 250
</trial>

Any help would be appreciated!!

Thanks You!!!




Tags
Dave
Dave
Supreme Being (1M reputation)Supreme Being (1M reputation)Supreme Being (1M reputation)Supreme Being (1M reputation)Supreme Being (1M reputation)Supreme Being (1M reputation)Supreme Being (1M reputation)Supreme Being (1M reputation)Supreme Being (1M reputation)
Group: Administrators
Posts: 12K, Visits: 98K
The <clock> element is a stimulus just like any other (<text>, <picture>, etc.). To actually display it, you need to include it via the <trial>'s /stimulustimes - or frames.

<trial wait>
/ ontrialbegin = [clock.timer.start(0)]
/ stimulustimes = [0=wait, timer]
/ validresponse = (57)
/ inputdevice = keyboard
/ responseinterrupt = immediate
/ trialduration = 60000
/ pretrialpause = 250
/ posttrialpause = 250
</trial>

> Also I am having issue skipping through the "Wait" block; "ctrl-b" doesn't work for some reason.

There is no wait *<block>* in the code you provided. There is only the wait *<trial>*. Hence I cannot speak to the issue. You cannot, however, skip a <trial> using CTRL+B, since a <trial> is not a <block>.

Jin
Jin
Distinguished Member (3.5K reputation)Distinguished Member (3.5K reputation)Distinguished Member (3.5K reputation)Distinguished Member (3.5K reputation)Distinguished Member (3.5K reputation)Distinguished Member (3.5K reputation)Distinguished Member (3.5K reputation)Distinguished Member (3.5K reputation)Distinguished Member (3.5K reputation)
Group: Forum Members
Posts: 26, Visits: 103
Thank you Dave!

GO

Merge Selected

Merge into selected topic...



Merge into merge target...



Merge into a specific topic ID...




Reading This Topic

Explore
Messages
Mentions
Search