Creating a Image Button Array to submit a value on click

Good evening-
I am trying to create a button array that would submit a value to a field when a form is submitted. Much like a Radio button, I only want one value submitted. Like a key pad on a cell phone, when “9” is selected, the value of “9” is saved when the form is submitted.

What is the best way to create this? Can it be done with native tools in Scriptcase 8.1?

Thanks
Mark

hello, why to use radio button scope? did you try to add a normal button and use as PHP then add the required code to apply your changes?

Do you have an example…this would be done in a controlled application with a series of image buttons?

if your buttons are limited, don’t use array

for example, create a field name {newfield} type text

in your onLoad event in the Control app, you can use something like


$button1='<a href=../'put_your_link_stuff_here'> <img border=0 src=../_lib/img/src=../_lib/img/sys__NM__ico__image1.gif></img></a>' ;   
$button2='<a href=../'put_your_link_stuff_here'> <img border=0 src=../_lib/img/src=../_lib/img/sys__NM__ico__image2.gif></img></a>' ;
$button3='<a href=../'put_your_link_stuff_here'> <img border=0 src=../_lib/img/src=../_lib/img/sys__NM__ico__image3.gif></img></a>' ;

{newfield}= $button1.'  '.$button2.'  '.$button3;