+xSupreme being off all kind,
After finally getting all my damn code set in inquisit 4, I'm having compatibility issues on inquisit 5 and the web player. Any scripts both created by me and standard premade scripts (ipanant) that have htm instructions are not running properly; it shows blank screens that does not forward. I thought it was initially a mac and. PC problem but having recoded an htm instructions to trial/picture script that worked on a PC using inquisit 4, even that does not run on the web player or inquisit 5. I thiught Inquisit 5 was backwards compatible but am I missing something?
Could you post the respective script's <instruct> elements here? Particularly, their /windowsize attributes. There may be a few cases where Inquisit 5 interprets the values given there differently than Inquisit 4. For example,
<instruct>
/ windowsize = (800, 600)
...
</instruct>
would by default be interpreted as percentages, i.e. the instruction pages would be much "larger" than the visible screen area, leading to the impression of a "white screen".
The fail-safe option is to always specify the unit. I.e., if you want the pages cover 80% of the display area's width and 90% of its height, specify
<instruct>
/ windowsize = (80%, 90%)
...
</instruct>
Similarly, for an area of 800 by 600 pixels, /windowsize would read
<instruct>
/ windowsize = (800px, 600px)
...
</instruct>
Hope this helps.