Group: Administrators
Posts: 13K,
Visits: 105K
|
/ canvasaspectratio = (4,3) restricts the screen area Inquisit draws on to a 4:3 screen region, i.e., that area is smaller than the total (horizontal) surface your widescreen monitor (16:9 ratio) provides. The idea behind /canvasaspectratio is to facilitate consistent results in terms of (relative) stimulus sizing and spacing across varying display ratios. Now, when you click *outside* of the designated 4:3 area, the returned coordinates will (and should be) negative.
To illustrate, run
<defaults> / canvasaspectratio = (4,3) / canvasposition = (50%, 50%) / screencolor = white </defaults>
<values> / x = -1 / y = -1 </values>
<block myblock> / trials = [1-4=mytrial] </block>
<trial mytrial> / ontrialend = [values.x = trial.mytrial.responsex; values.y = trial.mytrial.responsey] / stimulusframes = [1=myshape] / inputdevice = mouse / validresponse = (lbuttondown) </trial>
<shape myshape> / shape = rectangle / color = black / size = (100%, 100%) </shape>
<data> / columns = [trialnum trialcode values.x values.y] / separatefiles = true </data>
The black area is the designated 4:3 section. If you click the 4 "corners" of the screen in the *white* area, you'll see negative x-coordinates.
Hope this clarifies.
|