Notifications
Clear all

[Closed] excute file automately when button pressed

uh, I want that when a button pressed , then excute a script file without open it
can any method do it?

2 Replies

rollout roll_test "test" (
button btn_test "test"
on btn_test pressed do ( fileIn "c:\somefolder\somefile.ms" )
)
createDialog roll_test

?
the main part (fileIn) would be similar for macroscripts (button on a toolbar/in menu/etc.)

thanks very much ,ZeBoxx2
that’s qiute what I need