cancel
Showing results for 
Search instead for 
Did you mean: 

Get the name of the clicked button

Former Member
0 Kudos

Hi,

I begin in Adobe Interactive Forms and I just want to know :

If I have 2 buttons in the same form, how could I know which one was clicked ?

is there a command to know it ?

Regards,

Saï

Accepted Solutions (1)

Accepted Solutions (1)

nikhilkup
Active Participant
0 Kudos

You can create a field and when you click on the button assign the field as X, in mousedown event. for eg in for button 1

$record.FIELD1.DATA.FIELD = "X" and in the do_operations method check if this field is X if yes then continue and initialse the field value to space again.

Answers (1)

Answers (1)

Former Member
0 Kudos

It works fine.

Thank you.