Notifications
Clear all

[Closed] how to press dot.net button?

I have to give command in code that given button should be pressed.
In maxscript it`s: button_name.pressed() and how can I do this same in case of dotnet button.
Action for my button is:

on ckb56_efects mouseDown senderArg arg do
(
action…
)
Can anybody have a any clue with this?

3 Replies

Put the “action” code to a function. Then you can use:


on ckb56_efects mouseDown senderArg arg do
 (
    call the function
 )

and anywhere in your script you can call the same function, which is the same as pressing the button.

but i have 100 buttons and tons of code,is there any different way?

1 Reply
(@denist)
Joined: 1 year ago

Posts: 0

you can do it on the fly but only for dotnet button objects (not controls)