Group: Forum Members
Posts: 3,
Visits: 27
|
Hello,
The following code displays a "smooth" slider on my Macbook Air running El Captain 10.11.1 with an integrated Intel 5000 graphics card. It has inquisit version 4.0.8.0. By smooth, I mean a slider that the user is able to adjust on a continuum. This smooth slider has a circle which the user can drag, and the bar turns blue as they adjust the slider. Also, the slider is vertically oriented and has the bottom position recognized as a value of "0" and the topmost position recognized as a "10".
I have windows computer running Microsoft Windows 7 Enterprise version 6.1.7601 Service Pack 1 Build 7061 (64 Bit) with a NVIDIA NVS 4200M integrated graphics card with the most up to date drivers. It is running inquisit 4.0.7.0. When this code is run on the windows machine, it does not display a smooth slider (one without ticks) even though the showticks = false. Instead, it displays a slider with the triangular pointer device and discrete selection values. In addition, it recognizes the topmost position as "0" and the bottommost position as "10."
I need the slider to display on the windows machine as it would display on the Mac machine, but I am unable to adjust the settings to do so. Please tell me how I can fix this.
Thanks,
<slider userIntensity> / caption = " Blast~nIntensity" /txcolor = black / fontstyle = ("Arial", 3%) / labels = ("10", "9", "8", "7", "6", "5", "4", "3", "2", "1", "0") / range = (0,10) / validresponse = ("0","1", "2", "3", "4", "5", "6", "7", "8", "9", "10") / orientation = vertical / responsefontstyle = ("Arial", 2%) / slidersize = (3.5%,55%) / position = (68.3%, 25%) / defaultresponse = ("0") /showticks = false </slider>
|