<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: circle command in a script in Autocad 2015 in AutoCAD Forum</title>
    <link>https://forums.autodesk.com/t5/autocad-forum/circle-command-in-a-script-in-autocad-2015/m-p/5466515#M343897</link>
    <description>You ned to finish the command, your script does not most likely:&lt;BR /&gt;&lt;BR /&gt;circle&lt;BR /&gt;0.0350,3.7950 0.01&lt;BR /&gt;0.0750,3.6750 0.01&lt;BR /&gt;0.3150,3.0750 0.01 &lt;BR /&gt;&amp;lt;&amp;lt;&amp;lt;&amp;lt;THIS HERE NEEDS TO BE A BLACK SPACE AT THE END OF THE SCRIPT OF THE END OF THIS COMMAND RUN).&lt;BR /&gt;&lt;BR /&gt;or&lt;BR /&gt;circle 0.0350,3.7950 0.01 &lt;BR /&gt;&amp;lt;blank space&amp;gt;&lt;BR /&gt;circle 0.0350,3.7950 0.01 &lt;BR /&gt;&amp;lt;blank space&amp;gt;&lt;BR /&gt;circle 0.0350,3.7950 0.01 &lt;BR /&gt;&amp;lt;blank space&amp;gt;&lt;BR /&gt;&lt;BR /&gt;Don't actually type anything where I wrote between &amp;lt; &amp;gt;.</description>
    <pubDate>Mon, 12 Jan 2015 16:47:57 GMT</pubDate>
    <dc:creator>pendean</dc:creator>
    <dc:date>2015-01-12T16:47:57Z</dc:date>
    <item>
      <title>circle command in a script in Autocad 2015</title>
      <link>https://forums.autodesk.com/t5/autocad-forum/circle-command-in-a-script-in-autocad-2015/m-p/5464774#M343894</link>
      <description>&lt;P&gt;Hello.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;This seems to be a new issue in Autocad 2015 which did not exist in previous versions.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Until 2015 if I wanted to write a script (.SCR) that would plot multiple circles it would look like this:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;circle 0.0350,3.7950 0.01&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;circle 0.0350,3.7950 0.01&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;circle 0.0350,3.7950 0.01&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;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.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;If I write the script as follows:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;circle&lt;BR /&gt;0.0350,3.7950 0.01&lt;BR /&gt;0.0750,3.6750 0.01&lt;BR /&gt;0.3150,3.0750 0.01&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;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.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Is this a bug or the script command functionality has been changed?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Please let me know how to get it to work normally.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Eli&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 09 Jan 2015 22:50:59 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/autocad-forum/circle-command-in-a-script-in-autocad-2015/m-p/5464774#M343894</guid>
      <dc:creator>egurevich</dc:creator>
      <dc:date>2015-01-09T22:50:59Z</dc:date>
    </item>
    <item>
      <title>Re: circle command in a script in Autocad 2015</title>
      <link>https://forums.autodesk.com/t5/autocad-forum/circle-command-in-a-script-in-autocad-2015/m-p/5465215#M343895</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/2836792"&gt;@egurevich&lt;/a&gt; wrote:&lt;BR /&gt;
&lt;P&gt;....&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Until 2015 if I wanted to write a script (.SCR) that would plot multiple circles it would look like this:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;circle 0.0350,3.7950 0.01&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;circle 0.0350,3.7950 0.01&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;circle 0.0350,3.7950 0.01&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;In 2015 that does not work anymore, because after the first circle gets drawn it prompts for the next circle coordinates, ....&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If I write the script as follows:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;circle&lt;BR /&gt;0.0350,3.7950 0.01&lt;BR /&gt;0.0750,3.6750 0.01&lt;BR /&gt;0.3150,3.0750 0.01&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;It works, but after the last circle instead of terminating the command and stopping the script, it prompts for another cicle... So I don't know how to terminate this script.&lt;/P&gt;
&lt;P&gt;....&amp;nbsp;&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;Are you using some overlay program?&amp;nbsp; My vanilla AutoCAD 2015 does not&amp;nbsp; behave that way, so I'm guessing you have a redefined command.&amp;nbsp; Try&amp;nbsp;your first one&amp;nbsp;with a &lt;SPAN style="color: #ff0000;"&gt;period&lt;/SPAN&gt; before the command names, to dig down to the native command definition:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;&lt;SPAN style="color: #ff0000;"&gt;&lt;STRONG&gt;.&lt;/STRONG&gt;&lt;/SPAN&gt;circle 0.0350,3.7950 0.01&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;&lt;SPAN style="color: #ff0000;"&gt;&lt;STRONG&gt;.&lt;/STRONG&gt;&lt;/SPAN&gt;circle 0.0350,3.7950 0.01&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;&lt;SPAN style="color: #ff0000;"&gt;&lt;STRONG&gt;.&lt;/STRONG&gt;&lt;/SPAN&gt;circle 0.0350,3.7950 0.01&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Alternatively, it looks as though the redefined command just needs an Enter to finish it, as&amp;nbsp;do various commands that return to an option prompt, such as&amp;nbsp;LAYER or CHPROP.&amp;nbsp; Try adding another Enter at the end of the Script in your second version [&lt;EM&gt;without&lt;/EM&gt; the period], so that if you hit Ctrl+End, the cursor is &lt;EM&gt;two lines below&lt;/EM&gt; the last line with content.&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Sat, 10 Jan 2015 20:18:22 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/autocad-forum/circle-command-in-a-script-in-autocad-2015/m-p/5465215#M343895</guid>
      <dc:creator>Kent1Cooper</dc:creator>
      <dc:date>2015-01-10T20:18:22Z</dc:date>
    </item>
    <item>
      <title>Re: circle command in a script in Autocad 2015</title>
      <link>https://forums.autodesk.com/t5/autocad-forum/circle-command-in-a-script-in-autocad-2015/m-p/5466496#M343896</link>
      <description>&lt;P&gt;I tried both of these options before and it does not change anything. My Autocad is standard so the command is not redefined. The only thing I can think of is that there is some bug somewhere.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 12 Jan 2015 16:38:26 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/autocad-forum/circle-command-in-a-script-in-autocad-2015/m-p/5466496#M343896</guid>
      <dc:creator>egurevich</dc:creator>
      <dc:date>2015-01-12T16:38:26Z</dc:date>
    </item>
    <item>
      <title>Re: circle command in a script in Autocad 2015</title>
      <link>https://forums.autodesk.com/t5/autocad-forum/circle-command-in-a-script-in-autocad-2015/m-p/5466515#M343897</link>
      <description>You ned to finish the command, your script does not most likely:&lt;BR /&gt;&lt;BR /&gt;circle&lt;BR /&gt;0.0350,3.7950 0.01&lt;BR /&gt;0.0750,3.6750 0.01&lt;BR /&gt;0.3150,3.0750 0.01 &lt;BR /&gt;&amp;lt;&amp;lt;&amp;lt;&amp;lt;THIS HERE NEEDS TO BE A BLACK SPACE AT THE END OF THE SCRIPT OF THE END OF THIS COMMAND RUN).&lt;BR /&gt;&lt;BR /&gt;or&lt;BR /&gt;circle 0.0350,3.7950 0.01 &lt;BR /&gt;&amp;lt;blank space&amp;gt;&lt;BR /&gt;circle 0.0350,3.7950 0.01 &lt;BR /&gt;&amp;lt;blank space&amp;gt;&lt;BR /&gt;circle 0.0350,3.7950 0.01 &lt;BR /&gt;&amp;lt;blank space&amp;gt;&lt;BR /&gt;&lt;BR /&gt;Don't actually type anything where I wrote between &amp;lt; &amp;gt;.</description>
      <pubDate>Mon, 12 Jan 2015 16:47:57 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/autocad-forum/circle-command-in-a-script-in-autocad-2015/m-p/5466515#M343897</guid>
      <dc:creator>pendean</dc:creator>
      <dc:date>2015-01-12T16:47:57Z</dc:date>
    </item>
    <item>
      <title>Re: circle command in a script in Autocad 2015</title>
      <link>https://forums.autodesk.com/t5/autocad-forum/circle-command-in-a-script-in-autocad-2015/m-p/5466522#M343898</link>
      <description>&lt;P&gt;I have a blank space at the end of each line. It still does it. THe problem is only the with CIRCLE. If I do a similar script for PLINE or LINE it works fine.&lt;/P&gt;</description>
      <pubDate>Mon, 12 Jan 2015 16:52:03 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/autocad-forum/circle-command-in-a-script-in-autocad-2015/m-p/5466522#M343898</guid>
      <dc:creator>egurevich</dc:creator>
      <dc:date>2015-01-12T16:52:03Z</dc:date>
    </item>
    <item>
      <title>Re: circle command in a script in Autocad 2015</title>
      <link>https://forums.autodesk.com/t5/autocad-forum/circle-command-in-a-script-in-autocad-2015/m-p/5466533#M343899</link>
      <description>Post your actual SCR file then, I'm only copy/pasting from here and they seem to work as I described only.</description>
      <pubDate>Mon, 12 Jan 2015 16:56:21 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/autocad-forum/circle-command-in-a-script-in-autocad-2015/m-p/5466533#M343899</guid>
      <dc:creator>pendean</dc:creator>
      <dc:date>2015-01-12T16:56:21Z</dc:date>
    </item>
    <item>
      <title>Re: circle command in a script in Autocad 2015</title>
      <link>https://forums.autodesk.com/t5/autocad-forum/circle-command-in-a-script-in-autocad-2015/m-p/5466551#M343900</link>
      <description>&lt;P&gt;attached. Had to change extension to TXT to post.&lt;/P&gt;</description>
      <pubDate>Mon, 12 Jan 2015 17:05:14 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/autocad-forum/circle-command-in-a-script-in-autocad-2015/m-p/5466551#M343900</guid>
      <dc:creator>egurevich</dc:creator>
      <dc:date>2015-01-12T17:05:14Z</dc:date>
    </item>
    <item>
      <title>Re: circle command in a script in Autocad 2015</title>
      <link>https://forums.autodesk.com/t5/autocad-forum/circle-command-in-a-script-in-autocad-2015/m-p/5466555#M343901</link>
      <description>&lt;P&gt;one more thing. I ran REDEFINE command on CIRCLE and it did not fix anything. Also installed SP2 and that did not fix anything either. Any other ideas?&lt;/P&gt;</description>
      <pubDate>Mon, 12 Jan 2015 17:06:40 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/autocad-forum/circle-command-in-a-script-in-autocad-2015/m-p/5466555#M343901</guid>
      <dc:creator>egurevich</dc:creator>
      <dc:date>2015-01-12T17:06:40Z</dc:date>
    </item>
    <item>
      <title>Re: circle command in a script in Autocad 2015</title>
      <link>https://forums.autodesk.com/t5/autocad-forum/circle-command-in-a-script-in-autocad-2015/m-p/5466605#M343902</link>
      <description>&lt;P&gt;You have too many blank spaces and even more blank lines to keep track of, that's the problem.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Both scripts work fine, I've re-written them to aid in troubleshooting in the future (this is how I like to write script files): I avoid adding blank spaces on the same line as other words, there is no way to keep track of them. Consider changing your script writing methods.&lt;/P&gt;</description>
      <pubDate>Mon, 12 Jan 2015 17:43:34 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/autocad-forum/circle-command-in-a-script-in-autocad-2015/m-p/5466605#M343902</guid>
      <dc:creator>pendean</dc:creator>
      <dc:date>2015-01-12T17:43:34Z</dc:date>
    </item>
    <item>
      <title>Re: circle command in a script in Autocad 2015</title>
      <link>https://forums.autodesk.com/t5/autocad-forum/circle-command-in-a-script-in-autocad-2015/m-p/5466613#M343903</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/2836792"&gt;@egurevich&lt;/a&gt; wrote:&lt;BR /&gt;
&lt;P&gt;attached. ....&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;In Scripts, unlike in AutoLISP, spaces matter.&amp;nbsp; Try the coordinates-on-each-line version &lt;EM&gt;without the spaces&lt;/EM&gt; at the ends of each line other than the first, and with an &lt;EM&gt;additional Enter&lt;/EM&gt; at the end so that [as I suggested earlier] when you press Ctrl+End, the cursor is two lines below the last line with content.&amp;nbsp; [I'm not currently where I have 2015 to test it.]&lt;/P&gt;</description>
      <pubDate>Mon, 12 Jan 2015 17:49:47 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/autocad-forum/circle-command-in-a-script-in-autocad-2015/m-p/5466613#M343903</guid>
      <dc:creator>Kent1Cooper</dc:creator>
      <dc:date>2015-01-12T17:49:47Z</dc:date>
    </item>
    <item>
      <title>Re: circle command in a script in Autocad 2015</title>
      <link>https://forums.autodesk.com/t5/autocad-forum/circle-command-in-a-script-in-autocad-2015/m-p/5466620#M343904</link>
      <description>&lt;P&gt;Thanks. This worked. Is there some kind of documentation for proper script wrting?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I use Excel to generate the scripts using the CONCATENATE excel formula. So it's easier if the whole command comes out in one line. The way you have it would make the Excel spreadsheet a lot more complicated.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Any suggestions on how to generate this script in Excel so that one CIRCLE command uses up only one line?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 12 Jan 2015 17:49:00 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/autocad-forum/circle-command-in-a-script-in-autocad-2015/m-p/5466620#M343904</guid>
      <dc:creator>egurevich</dc:creator>
      <dc:date>2015-01-12T17:49:00Z</dc:date>
    </item>
    <item>
      <title>Re: circle command in a script in Autocad 2015</title>
      <link>https://forums.autodesk.com/t5/autocad-forum/circle-command-in-a-script-in-autocad-2015/m-p/5466711#M343905</link>
      <description>There is no 'proper', just do what is easiest to circumvent having to count blank spaces you cannot see,&lt;BR /&gt;&lt;BR /&gt;See these for your second question: &lt;A href="http://thecadgeek.com/blog/2007/09/creating-script-files-with-excel/" target="_blank"&gt;http://thecadgeek.com/blog/2007/09/creating-script-files-with-excel/&lt;/A&gt;&lt;BR /&gt;&lt;A href="http://www.cadforum.cz/cadforum_en/qaID.asp?tip=6606" target="_blank"&gt;http://www.cadforum.cz/cadforum_en/qaID.asp?tip=6606&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;And I have never tried it but this looks interesting &lt;A href="http://www.scriptsheets.com/" target="_blank"&gt;http://www.scriptsheets.com/&lt;/A&gt;</description>
      <pubDate>Mon, 12 Jan 2015 18:47:24 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/autocad-forum/circle-command-in-a-script-in-autocad-2015/m-p/5466711#M343905</guid>
      <dc:creator>pendean</dc:creator>
      <dc:date>2015-01-12T18:47:24Z</dc:date>
    </item>
    <item>
      <title>Re: circle command in a script in Autocad 2015</title>
      <link>https://forums.autodesk.com/t5/autocad-forum/circle-command-in-a-script-in-autocad-2015/m-p/5466837#M343906</link>
      <description>&lt;P&gt;Thanks.&lt;/P&gt;&lt;P&gt;I played around with it and what I see is that I was missing an enter on the last line that it apparently wanted. Without the enter on the last line it gets stuck inside the CIRCLE command. But for some reason the space at the end of the line does not work here. It does no interpret the space as an enter.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 12 Jan 2015 20:25:54 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/autocad-forum/circle-command-in-a-script-in-autocad-2015/m-p/5466837#M343906</guid>
      <dc:creator>egurevich</dc:creator>
      <dc:date>2015-01-12T20:25:54Z</dc:date>
    </item>
    <item>
      <title>Re: circle command in a script in Autocad 2015</title>
      <link>https://forums.autodesk.com/t5/autocad-forum/circle-command-in-a-script-in-autocad-2015/m-p/5466881#M343907</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/2836792"&gt;@egurevich&lt;/a&gt; wrote:&lt;BR /&gt;
&lt;P&gt;...&amp;nbsp;I was missing an enter on the last line that it apparently wanted. .... But for some reason the space at the end of the line does not work here. It does no interpret the space as an enter.&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;The Customization Guide says about Scripts&amp;nbsp;that the last line of a Script file must be blank.&amp;nbsp; [That's also true of certain other file types, such as hatch pattern and linetype definitions.]&amp;nbsp; I don't see anything there about the last character in a line, but I do recall that in &lt;EM&gt;menu&lt;/EM&gt; [.mnu] files, the end of a line of code is&amp;nbsp;read as&amp;nbsp;Enter &lt;EM&gt;unless&lt;/EM&gt; it is one of certain control characters [such as a backslash for User input, or ^H for backspace -- I don't remember all&amp;nbsp;the possibilities without some digging].&amp;nbsp; It could be that similarly, a space at the &lt;EM&gt;end&lt;/EM&gt; of a line in a Script doesn't register in the same way as it does &lt;EM&gt;within&lt;/EM&gt; the line, but I'm not positive.&lt;/P&gt;</description>
      <pubDate>Mon, 12 Jan 2015 20:53:47 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/autocad-forum/circle-command-in-a-script-in-autocad-2015/m-p/5466881#M343907</guid>
      <dc:creator>Kent1Cooper</dc:creator>
      <dc:date>2015-01-12T20:53:47Z</dc:date>
    </item>
    <item>
      <title>Re: circle command in a script in Autocad 2015</title>
      <link>https://forums.autodesk.com/t5/autocad-forum/circle-command-in-a-script-in-autocad-2015/m-p/5466900#M343908</link>
      <description>Thanks</description>
      <pubDate>Mon, 12 Jan 2015 21:06:23 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/autocad-forum/circle-command-in-a-script-in-autocad-2015/m-p/5466900#M343908</guid>
      <dc:creator>egurevich</dc:creator>
      <dc:date>2015-01-12T21:06:23Z</dc:date>
    </item>
    <item>
      <title>Re: circle command in a script in Autocad 2015</title>
      <link>https://forums.autodesk.com/t5/autocad-forum/circle-command-in-a-script-in-autocad-2015/m-p/6265268#M343909</link>
      <description>Hi, I am having the same problem with circle command within my script - my script works in other CAD software such as Draftsight however, now using AutoCAD 2016 and my script terminates at the last circle command and awaits input for a new circle that is not in the script.&lt;BR /&gt;&lt;BR /&gt;Like you, my script file is generated from an Excel spreadsheet and, no matter what I try to change ie no spaces at end of last line, two spaces at end of last line or one blank line or two blank lines after last command none of these makes any difference.&lt;BR /&gt;&lt;BR /&gt;Would it be possible for you to post your solution please?&lt;BR /&gt;&lt;BR /&gt;Kind regards&lt;BR /&gt;&lt;BR /&gt;Dave.</description>
      <pubDate>Tue, 12 Apr 2016 08:15:09 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/autocad-forum/circle-command-in-a-script-in-autocad-2015/m-p/6265268#M343909</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2016-04-12T08:15:09Z</dc:date>
    </item>
    <item>
      <title>Re: circle command in a script in Autocad 2015</title>
      <link>https://forums.autodesk.com/t5/autocad-forum/circle-command-in-a-script-in-autocad-2015/m-p/9770018#M343910</link>
      <description>&lt;P&gt;Very helpful!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Dan&lt;/P&gt;</description>
      <pubDate>Sat, 26 Sep 2020 14:48:42 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/autocad-forum/circle-command-in-a-script-in-autocad-2015/m-p/9770018#M343910</guid>
      <dc:creator>cdnrfguy</dc:creator>
      <dc:date>2020-09-26T14:48:42Z</dc:date>
    </item>
  </channel>
</rss>

