Group: Administrators
Posts: 13K,
Visits: 104K
|
As for the instructions not being displayed completely (re. your screenshot), there are a couple of issues:
<instruct> / windowsize = (70%, 70%) / nextlabel = "Space Bar to Continue" / prevlabel = " " / wait = 1000 / font = ("Arial", -30, 700, 0, 34) / nextlabel = "Press the <P> key to continue" /nextkey=("P") / prevlabel = "Press the <Q> key to go back" /prevkey=("Q") /font = ("Arial", -30, 400, 0, 49) </instruct>
#1: Note that you have two conflicting /font definitions. Eliminate one. #2: Use the /fontstyle attribute instead of the legacy /font attribute. #3: Express the fontsize in screen percentages instead of absolute values. E.g
/ fontstyle = ("Arial", 3%, true)
#4: Consider using the <defaults> elements /canvasaspectratio, /canvassize and /canvasposition attributes to get more consistent results across varying screen resolutions and screen aspect ratios.
Hope this helps.
|