I haven't had this issue come up before, but here we go ...
Can I use different radio buttons and check boxes within the same survey?
I have 2 survey types within the one survey and I would ideally like to use red radio buttons and check boxes for Survey 1 and blue for Survey 2.
The survey type is controlled via a Merged Field called "RType".
I thought if I went in to Settings | General Settings | Respondent Input and inserted some Perl Script into the "Selected" options for radio buttons and check boxes, that would work.
I inserted this Perl script for the radio buttons ...
[%Begin Unverified Perl
my $RBSelectType="";
if (VALUE("RType")==1)
{
$RBSelectType="radiobutton_selected1.png";
}
else
{
$RBSelectType="radiobutton_selected2.png";
}
return $RBSelectType;
End Unverified%]
It didn't work? When I clicked on any of the answer options in a select question, the whole check box or radio button disappeared?
Is this a path issue?
Any help will be greatly appreciated. Thank you.