- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
Hello.
This seems to be a new issue in Autocad 2015 which did not exist in previous versions.
Until 2015 if I wanted to write a script (.SCR) that would plot multiple circles it would look like this:
circle 0.0350,3.7950 0.01
circle 0.0350,3.7950 0.01
circle 0.0350,3.7950 0.01
In 2015 that does not work anymore, because after the first circle gets drawn it prompts for the next circle coordinates, but the script does not pass it to the second circle command. So there is a hanging prompt for coordinates and the script stops.
If I write the script as follows:
circle
0.0350,3.7950 0.01
0.0750,3.6750 0.01
0.3150,3.0750 0.01
It works, but after the last circle instead of terminating the command and stopping the script, it prompts for another cicle (which is not in the script) and waits for coordinates again. So I don't know how to terminate this script.
Is this a bug or the script command functionality has been changed?
Please let me know how to get it to work normally.
Thanks
Eli
Solved! Go to Solution.