Group: Moderators
Posts: 13,
Visits: 199
|
The problem turns out to have been a mix of the old style text manipulation to convert the WordRecognitionProgressBarLength to size and the German locale on some of your systems. Unfortunately, in this case, the German locale was creating a number like "4,137" that matches the display expectation for the locale while Inquisit the inquisit parser expected "4.137". This is why when you concatenated px to then end and used it as a size it failed.
For this particular script in Inquisit 6 you'll get the best results by using the modern display.getpercentx() method: /WordRecognitionProgressBarLength = display.getpercentx(values.WordRecognitionProgressBarLength)
Thanks and Enjoy, Erik
Developer at Millisecond Software, LLC.
|