Hi Dave,
Sorry to bother you again, as I am new to inquisit as well to working with syntaxes I am struggling a bit.
1) I've been tryin to erase pictures of previous trial, but something doesn't work. Thers is already a <shape blank> element in the existing script of BART. It is positioned more or less where I want it to be.
<shape blank>
/ shape = rectangle
/ color = white
/ size = (235px, 309px)
/ position = (33%, 83%)
/ valign = bottom
</shape>
Therefore I tried using that one in the likert's stimulusframes, like this:
<likert emolikert>
/anchors=[1="very slightly/not at all"; 2="a little"; 3="moderately"; 4="quite a bit"; 5="very much"]
/position= (50%, 80%)
/mouse= true
/fontstyle = ("Arial", 2%, false, false, false, false, 5, 0)
/stimulusframes = [1-10 = emo_question, emotion, shape.blank]
/showmousecursor = true
</likert>
or like this:
<likert emolikert>
/anchors=[1="very slightly/not at all"; 2="a little"; 3="moderately"; 4="quite a bit"; 5="very much"]
/position= (50%, 80%)
/mouse= true
/fontstyle = ("Arial", 2%, false, false, false, false, 5, 0)
/stimulusframes = [1-10 = emo_question, emotion]
/stimulusframes = [1-10 = shape.blank]
/showmousecursor = true
</likert>
However, it gives an error saying that either 'shape blank content couldn't be located', or that 'stimulus sequence is already defined! I have also tried to change the 'erase' attributes in the picture elements, however then inquisit told me that is not valid. For exapmle:
<picture balloon>
/ items = ("balloon.jpg")
/ position = (33%, 83%)
/ valign = bottom
/ size = (100%, 100%)
/ erase = false >> I tried to change this into "true"
/ transparentcolor = white
</picture>
2) My second problem is with my emotion items (which works perfectly when it is in the end of the whole task) As I said before I want them to be appear on the screen together with its question after the first explosion of the balloon. When I try to run the experiment, however, inquisit displays only one item and then ends the trial. What I want is that after the first explosion it will display all 10 items, and then continue the BART from no. of baloon which was exploded till the end of the task. For your perusal, here is the script for my emotion scale:
***************EMOTION SCALE****************
*******items*********
<item emotion>
/1="happy"
/2="tense"
/3="excited"
/4="pleased"
/5="alarmed"
/6="sad"
/7="satisfied"
/8="afraid"
/9="relaxed"
/10="angry"
</item>
<item question>
/1="How do you feel right now? Please indicate by using the 5 point scale"
</item>
*******texts*********
<text emo_question>
/items=question
/vjustify = center
/position = (50%, 20%)
/fontstyle = ("Arial", 3%, false, false, false, false, 5, 0)
</text>
<text emotion>
/items=emotion
/ position = (50%,65%)
/ fontstyle = ("Arial", 3%, false, false, false, false, 5, 0)
/ select = noreplace
</text>
******likert options********
<likert emolikert>
/anchors=[1="very slightly/not at all"; 2="a little"; 3="moderately"; 4="quite a bit"; 5="very much"]
/position= (50%, 80%)
/mouse= true
/fontstyle = ("Arial", 2%, false, false, false, false, 5, 0)
/stimulusframes = [1-10 = emo_question, emotion]
/showmousecursor = true
</likert>
***blocks****
<block emoins>
/ trials = [1=instructions]
</block>
<block emo>
/trials=[1-10=emolikert]
/bgstim= (emo_question)
</block>
Thanks in advance, hope I didn't explain it too complicated. If you could help, I'd be appreciated.