TheNovice Posted November 12, 2018 Share Posted November 12, 2018 Hi, I have multiple buttons which changes color when clicked. Is there any way I can click the button programmatically. Something like in javascript/jquery ($button.click()) so that it can run the actions specified in the button's properties. Thanks!! Link to comment Share on other sites More sharing options...
AzeoTech Posted November 15, 2018 Share Posted November 15, 2018 No. This is an unusual feature of Javascript/jquery not typical to most programming languages. Usually the way you would handle this is to put whatever script you have that runs when you click inside a function (Sequence) and have the button call that function. Then you can also call that function from anywhere else. Link to comment Share on other sites More sharing options...
TheNovice Posted November 16, 2018 Author Share Posted November 16, 2018 Yes, I understand it's not a usual feature. Thanks, I appreciate your help!! Link to comment Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.