HTML changed text color doesn't occur during running the experiment
Hi Sebastiaan,
I used a sketchpad as an instruction page. One word of the instruction is supposed have red color (the word "rot"). Therefore I used html code, which makes the word appear in red color as I view it in the control menu. However, running the experiment, the word appears in black color like the rest of the text.
This is the syntax:
set duration 0
set description "Displays stimuli"
draw textline center=0 color="#000000" font_bold=yes font_family=mono font_italic=no font_size=19 html=yes show_if=always text="Lieber Teilnehmer, liebe Teilnehmerin,<br /><br /><br />im Folgenden werden Ihnen Aufgaben präsentiert, die sich aus jeweils drei<br /><br />Aussagen zusammensetzen. Die ersten beiden Aussagen sind in schwarzer Schrift <br /><br />geschrieben und beinhalten eine Wenn-Dann Aussage und einen Fakt.<br /><br />Die dritte Aussage ist in <font color=red>rot</font> geschrieben und ist eine Schlussfolgerung.<br />" x=-480 y=-320 z_index=0
draw textline center=0 color="#000000" font_bold=yes font_family=mono font_italic=no font_size=19 html=yes show_if=always text="Ihre Aufgabe besteht darin, anzugeben, wie sicher Sie sich sind, dass man <br /><br />diese Schlussfolgerung ziehen kann. Dazu stehen Ihnen Antworten von <br /><br /><i>sehr unsicher</i> bis <i>sehr sicher</i> zur Verfügung, die Sie mit Hilfe des <br /><br />Ziffernblocks angeben. Die Nummer 1 steht hierbei für <i>sehr unsicher</i> und <br /><br />7 für <i>sehr sicher</i>. Antworten Sie bitte so, wie Sie es auch in <br /><br />Alltagssituationen machen würden." x=-480 y=-32 z_index=0
draw textline center=1 color="#6a6a6a" font_bold=yes font_family=mono font_italic=no font_size=19 html=yes show_if=always text="[Weiter mit Leertaste]" x=-32 y=320 z_index=0
Can you help make the word appear in red color during the experiment?
Best regards,
Bruno
Comments
Hi Bruno,
Interesting that you call your participants 'sweet participant'
For historical reasons, OpenSesame uses a crippled dialect of HTML, as described here:
In other words, it's not
<font color='red></font'>
but<span color='red'></span>
.Cheers,
Sebastiaan
Check out SigmundAI.eu for our OpenSesame AI assistant!
Thank you, Sebastiaan, it's working.
I want to change the height of my lines, but this code doesn't work:
.
Do you have a crippled version for this as well. I couldn't find one in the manual.
Best regards
Bruno
"
<
p style=line-height:150%>"
Hi Bruno,
No that's not supported. OpenSesame doesn't have a full-fledged HTML engine in the runtime—just those tags that are described in the documentation. If you want to increase the line height, your best bet is to write an
inline_script
, or to generate bitmaps in other program, and then show them as images in OpenSesame.Cheers,
Sebastiaan
Check out SigmundAI.eu for our OpenSesame AI assistant!