Message 1 of 11
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
Hi,
Apologies in advance... I have very little experience of writing lisp code...
I have the lisp code below that runs a script file. The script file take a few minutes to run and it is not obvious to the user when the script file has finished running.
How do I add a simple message box into the lisp code, that displays after the Script file has finished running???
(defun C:Run_Script ()
(if (findfile "C:/Block data/A2 Data Output/1 Data Output.scr")
(command "_script" "C:/Block data/A2 Data Output/1 Data Output.scr")
); end if
); end function
Solved! Go to Solution.