Group: Forum Members
Posts: 9,
Visits: 213
|
I'm having some trouble getting html tags to work consistently within text and caption elements. There may be something I'm missing about how to make sure Inquisit is recognizing these as html.
Here's a simple example of trying to create a bulleted list. In the first text element, the list does not work correctly and the tags are simply reproduced as text when I run it. Only in the second text element, where I first use <b></b> tags to make a word bold, does the subsequent list correctly show up as bulleted.
It seems like Inquisit is not recognizing the tags in the first example. Am I missing something here?
<text list_doesnt_work> / items = ("Here is some example text: <ul><li>Here's the first bullet point.</li> <li>Here's the second bullet point.</li> </ul>Here's the concluding text") / position = (50%,20%) </text>
<text list_works> / items = ("Here is some <b>example</b> text: <ul><li>Here's the first bullet point.</li> <li>Here's the second bullet point.</li> </ul>Here's the concluding text") / position = (50%,70%) </text>
<trial test> / stimulusframes = [1=list_doesnt_work; 1=list_works] / validresponse = (" ") </trial>
|