Hi all,

I have a flash form that contains an input type="button" with an onclick event
that goes to an AS code. I need to be able to access the value of that button
so I can differentiate which one has been clicked.

Example:
<cfinput type="button" name="button1" width="104" value="Button 1"
onclick="#asode#" />
<cfinput type="button" name="butto21" width="104" value="Button 2"
onclick="#asode#" />

AS Code:
<cfsavecontent>
//check which button has been clicked, then do appropriate processing:

</cfsaveconten>

I appreciate any opinion!!!