up Inquisit Language Reference

hposition attribute

The hposition attribute determines the horizontal position at which to display the item on the screen.

Member of

<button> <clock> <html> <picture> <shape> <text> <video>

Syntax

/ hposition = x expression

Parameters

x expression The horizontal screen coordinate in pixels, percent(default), or points.

Remarks

The value is specified as a percentage of the horizontal plane of the screen, where 0.0 corresponds to the left edge of the screen and 100.0 to the right. The default value is 50.0, which corresponds to the center of the screen.

Examples

The following randomly selects the position of the text to be the right, left, or center of the screen:

<text sometext>
/ items = ("ipsum")
/ hposition = noreplace(0, 50, 100)
</text>

The following sets the position based on the trial number:

<text sometext>
/ items = ("ipsum")
/ hposition = trial.mytrial.currenttrialnumber * 5
</text>

Send comments on this topic:
Copyright Millisecond Software, LLC. All rights reserved.