Millisecond Forums

Radiobuttons acting strange

https://forums.millisecond.com/Topic28845.aspx

By natash - 4/23/2020

Hey everyone, 

I have an intelligence figural test, where the participants see a sequence of images and have to respond which two images would follow the sequence if it would be continued like this. 
The script was already finished and worked perfectly in Inquisit 5. Now I have to work with Inquisit 6 and the radiobuttons started acting strange and I don't know how to fix it.
In some surveypages I am not able to click on the radiobuttons anymore but in others I am, even though everything is defined the same. I attached the script, maybe somebody knows why I can't choose the radiobuttons anymore in some cases.

You would help me a lot!

Thank you!

Natasa
By natash - 4/23/2020

natash - 4/24/2020
Hey everyone, 

I have an intelligence figural test, where the participants see a sequence of images and have to respond which two images would follow the sequence if it would be continued like this. 
The script was already finished and worked perfectly in Inquisit 5. Now I have to work with Inquisit 6 and the radiobuttons started acting strange and I don't know how to fix it.
In some surveypages I am not able to click on the radiobuttons anymore but in others I am, even though everything is defined the same. I attached the script, maybe somebody knows why I can't choose the radiobuttons anymore in some cases.

You would help me a lot!

Thank you!

Natasa

Ah and here are some images as an example what we're using
By natash - 4/23/2020

natash - 4/24/2020
natash - 4/24/2020
Hey everyone, 

I have an intelligence figural test, where the participants see a sequence of images and have to respond which two images would follow the sequence if it would be continued like this. 
The script was already finished and worked perfectly in Inquisit 5. Now I have to work with Inquisit 6 and the radiobuttons started acting strange and I don't know how to fix it.
In some surveypages I am not able to click on the radiobuttons anymore but in others I am, even though everything is defined the same. I attached the script, maybe somebody knows why I can't choose the radiobuttons anymore in some cases.

You would help me a lot!

Thank you!

Natasa

Ah and here are some images as an example what we're using

By Dave - 4/24/2020

natash - 4/24/2020
natash - 4/24/2020
natash - 4/24/2020
Hey everyone, 

I have an intelligence figural test, where the participants see a sequence of images and have to respond which two images would follow the sequence if it would be continued like this. 
The script was already finished and worked perfectly in Inquisit 5. Now I have to work with Inquisit 6 and the radiobuttons started acting strange and I don't know how to fix it.
In some surveypages I am not able to click on the radiobuttons anymore but in others I am, even though everything is defined the same. I attached the script, maybe somebody knows why I can't choose the radiobuttons anymore in some cases.

You would help me a lot!

Thank you!

Natasa

Ah and here are some images as an example what we're using


Please provide all files the script requires to run.
By natash - 4/24/2020

Dave - 4/24/2020
natash - 4/24/2020
natash - 4/24/2020
natash - 4/24/2020
Hey everyone, 

I have an intelligence figural test, where the participants see a sequence of images and have to respond which two images would follow the sequence if it would be continued like this. 
The script was already finished and worked perfectly in Inquisit 5. Now I have to work with Inquisit 6 and the radiobuttons started acting strange and I don't know how to fix it.
In some surveypages I am not able to click on the radiobuttons anymore but in others I am, even though everything is defined the same. I attached the script, maybe somebody knows why I can't choose the radiobuttons anymore in some cases.

You would help me a lot!

Thank you!

Natasa

Ah and here are some images as an example what we're using


Please provide all files the script requires to run.

Here you go with the adapted script, thanks a lot! I hope it's alright like that, I couldn't find a way to upload a whole folder 
By Dave - 4/24/2020

natash - 4/24/2020
Dave - 4/24/2020
natash - 4/24/2020
natash - 4/24/2020
natash - 4/24/2020
Hey everyone, 

I have an intelligence figural test, where the participants see a sequence of images and have to respond which two images would follow the sequence if it would be continued like this. 
The script was already finished and worked perfectly in Inquisit 5. Now I have to work with Inquisit 6 and the radiobuttons started acting strange and I don't know how to fix it.
In some surveypages I am not able to click on the radiobuttons anymore but in others I am, even though everything is defined the same. I attached the script, maybe somebody knows why I can't choose the radiobuttons anymore in some cases.

You would help me a lot!

Thank you!

Natasa

Ah and here are some images as an example what we're using


Please provide all files the script requires to run.

Here you go with the adapted script, thanks a lot! I hope it's alright like that, I couldn't find a way to upload a whole folder 

The problem is basically that -- on some pages -- you're drawing the image on top of the radiobuttons instead of the other way around. E.g.

<surveypage 3>
/ finishlabel = "Weiter"
/ backlabel = "Zurück"
/ nextbuttonposition = (80%, 70%)
/ backbuttonposition = (20, 70%)
/ questions = [1=left3,right3,item3]
/ timeout = 840000
/ showbackbutton = false
</surveypage>

If you consistently switch the order to image -> left radiobutton -> right radiobutton as in

<surveypage 3>
/ finishlabel = "Weiter"
/ backlabel = "Zurück"
/ nextbuttonposition = (80%, 70%)
/ backbuttonposition = (20, 70%)
/ questions = [1=item3,left3,right3]
/ timeout = 840000
/ showbackbutton = false
</surveypage>

things should work fine.
By natash - 4/24/2020

Dave - 4/24/2020
natash - 4/24/2020
Dave - 4/24/2020
natash - 4/24/2020
natash - 4/24/2020
natash - 4/24/2020
Hey everyone, 

I have an intelligence figural test, where the participants see a sequence of images and have to respond which two images would follow the sequence if it would be continued like this. 
The script was already finished and worked perfectly in Inquisit 5. Now I have to work with Inquisit 6 and the radiobuttons started acting strange and I don't know how to fix it.
In some surveypages I am not able to click on the radiobuttons anymore but in others I am, even though everything is defined the same. I attached the script, maybe somebody knows why I can't choose the radiobuttons anymore in some cases.

You would help me a lot!

Thank you!

Natasa

Ah and here are some images as an example what we're using


Please provide all files the script requires to run.

Here you go with the adapted script, thanks a lot! I hope it's alright like that, I couldn't find a way to upload a whole folder 

The problem is basically that -- on some pages -- you're drawing the image on top of the radiobuttons instead of the other way around. E.g.

<surveypage 3>
/ finishlabel = "Weiter"
/ backlabel = "Zurück"
/ nextbuttonposition = (80%, 70%)
/ backbuttonposition = (20, 70%)
/ questions = [1=left3,right3,item3]
/ timeout = 840000
/ showbackbutton = false
</surveypage>

If you consistently switch the order to image -> left radiobutton -> right radiobutton as in

<surveypage 3>
/ finishlabel = "Weiter"
/ backlabel = "Zurück"
/ nextbuttonposition = (80%, 70%)
/ backbuttonposition = (20, 70%)
/ questions = [1=item3,left3,right3]
/ timeout = 840000
/ showbackbutton = false
</surveypage>

things should work fine.

thanks a lot!! You saved my day :)