Notifications
Clear all
[Closed] how to press dot.net button?
Apr 14, 2014 10:30 pm
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
Apr 14, 2014 10:30 pm
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.
1 Reply