<?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: SSX not recognised by Accoreconsole in AutoCAD Forum</title>
    <link>https://forums.autodesk.com/t5/autocad-forum/ssx-not-recogniosed-by-accoreconsole/m-p/9359160#M111614</link>
    <description>&lt;P&gt;I guess this is a message from ScripPro,&lt;/P&gt;
&lt;P&gt;with no informations for is.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;In your script as first thing,&lt;/P&gt;
&lt;P&gt;turn LOGFILEON&lt;/P&gt;
&lt;P&gt;and if you like change the LOGFILEPATH.&lt;/P&gt;
&lt;P&gt;So you can see what happen in this Autocad/ACC logfile.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Wed, 04 Mar 2020 22:46:41 GMT</pubDate>
    <dc:creator>cadffm</dc:creator>
    <dc:date>2020-03-04T22:46:41Z</dc:date>
    <item>
      <title>SSX not recogniosed by Accoreconsole</title>
      <link>https://forums.autodesk.com/t5/autocad-forum/ssx-not-recogniosed-by-accoreconsole/m-p/9354360#M111606</link>
      <description>&lt;P&gt;I am trying to create a script to run with ScriptPro. As part of the script I am using the "SSX" command to select blocks which I wish to delete. After running the script the ScriptPro logfile tells me "C o m m a n d : s s x U n k n o w n c o m m a n d " S S X " ".&lt;/P&gt;&lt;P&gt;Is there an alternative to SSX in scripting? My script is below...&lt;/P&gt;&lt;P&gt;TILEMODE&lt;BR /&gt;0&lt;BR /&gt;ssx&lt;BR /&gt;B&lt;BR /&gt;"Superseded Datum"&lt;BR /&gt;ERASE&lt;BR /&gt;P&lt;/P&gt;&lt;P&gt;ZOOM&lt;BR /&gt;EXTENTS&lt;BR /&gt;TILEMODE&lt;BR /&gt;1&lt;BR /&gt;ssx&lt;BR /&gt;B&lt;BR /&gt;"Superseded Datum"&lt;BR /&gt;ERASE&lt;BR /&gt;P&lt;/P&gt;&lt;P&gt;-PURGE&lt;BR /&gt;B&lt;BR /&gt;"Superseded Datum"&lt;BR /&gt;N&lt;BR /&gt;-PURGE&lt;BR /&gt;B&lt;BR /&gt;"Datum Shift"&lt;BR /&gt;N&lt;BR /&gt;-LAYER&lt;BR /&gt;M&lt;BR /&gt;"DATUM SHIFT"&lt;/P&gt;&lt;P&gt;-INSERT "P:\ESTATES\MERRIFIELD\Living to Business Park Datum Shift\Superseded Datum.dwg"&lt;BR /&gt;0,0&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;ZOOM&lt;BR /&gt;EXTENTS&lt;BR /&gt;QSAVE&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;Thanks,&lt;/P&gt;</description>
      <pubDate>Tue, 03 Mar 2020 04:26:32 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/autocad-forum/ssx-not-recogniosed-by-accoreconsole/m-p/9354360#M111606</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2020-03-03T04:26:32Z</dc:date>
    </item>
    <item>
      <title>Re: SSX not recogniosed by Accoreconsole</title>
      <link>https://forums.autodesk.com/t5/autocad-forum/ssx-not-recogniosed-by-accoreconsole/m-p/9354672#M111607</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;try to use lisp with (ssget ... instead, hope this works. I have not tried it, so it's more "I think it could work" &lt;span class="lia-unicode-emoji" title=":winking_face:"&gt;😉&lt;/span&gt;&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;_ERASE
(ssget "_X" '((0 . "INSERT")(2 . "YOUR BLOCKNAME")))

&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;- alfred -&lt;/P&gt;</description>
      <pubDate>Tue, 03 Mar 2020 08:19:58 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/autocad-forum/ssx-not-recogniosed-by-accoreconsole/m-p/9354672#M111607</guid>
      <dc:creator>Alfred.NESWADBA</dc:creator>
      <dc:date>2020-03-03T08:19:58Z</dc:date>
    </item>
    <item>
      <title>Betreff: SSX not recogniosed by Accoreconsole</title>
      <link>https://forums.autodesk.com/t5/autocad-forum/ssx-not-recogniosed-by-accoreconsole/m-p/9354867#M111608</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;@Anonymous&amp;nbsp; schrieb:&lt;BR /&gt;
&lt;P&gt;Is there an alternative to SSX in scripting? My script is below...&lt;/P&gt;
&lt;/BLOCKQUOTE&gt;
&lt;P&gt;&amp;nbsp;The problem is not your scripting, the problem is that&amp;nbsp; the ssx function is not loaded -&lt;/P&gt;
&lt;P&gt;so there is no command "SSX", -&amp;gt; unknown command&lt;/P&gt;
&lt;P&gt;(SSX is part of EXPRESStool, not a native AutoCAD command)&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;But you can use it without re-writing your Script, the function is compatible with the ACC, but you need to load the program first!&lt;/P&gt;
&lt;P&gt;Before u use the first time SSX in your script, add this line (as first or just one line befor your first ssx, no matter):&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;(load (findfile "ssx.lsp"))&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 03 Mar 2020 09:59:18 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/autocad-forum/ssx-not-recogniosed-by-accoreconsole/m-p/9354867#M111608</guid>
      <dc:creator>cadffm</dc:creator>
      <dc:date>2020-03-03T09:59:18Z</dc:date>
    </item>
    <item>
      <title>Betreff: SSX not recognised by Accoreconsole</title>
      <link>https://forums.autodesk.com/t5/autocad-forum/ssx-not-recogniosed-by-accoreconsole/m-p/9356835#M111609</link>
      <description>&lt;P&gt;Hi.&lt;/P&gt;&lt;P&gt;Thanks for the reply however the (load (findfile "ssx.lsp")) line did not work. I placed the code in the first line of the script. I also&amp;nbsp; attempted to place the ssx.lsp file in the same folder as the accoreconsole.exe and&amp;nbsp; included the complete path to ssx.lsp (i.e. (findfile "C:\\etc\\etc\\ssx.lsp")) but to no avail.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Any other suggestions?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 04 Mar 2020 03:39:52 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/autocad-forum/ssx-not-recogniosed-by-accoreconsole/m-p/9356835#M111609</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2020-03-04T03:39:52Z</dc:date>
    </item>
    <item>
      <title>Re: SSX not recognised by Accoreconsole</title>
      <link>https://forums.autodesk.com/t5/autocad-forum/ssx-not-recogniosed-by-accoreconsole/m-p/9356837#M111610</link>
      <description>&lt;P&gt;Hi. Thanks for the reply. Could you please let me know if the code you provided can work directly in a *.scr file which is being used by ScriptPro or is there a header that needs to be included in the *.scr file which will allow ScriptPro to read this lisp code?&lt;/P&gt;&lt;P&gt;I have included your line and while it works as a cut and paste into the command line of AutoCAD, it doesn't work when trying to run it with Scriptpro.&lt;/P&gt;</description>
      <pubDate>Wed, 04 Mar 2020 03:44:26 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/autocad-forum/ssx-not-recogniosed-by-accoreconsole/m-p/9356837#M111610</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2020-03-04T03:44:26Z</dc:date>
    </item>
    <item>
      <title>Re: SSX not recognised by Accoreconsole</title>
      <link>https://forums.autodesk.com/t5/autocad-forum/ssx-not-recogniosed-by-accoreconsole/m-p/9357084#M111611</link>
      <description>&lt;P&gt;"&lt;SPAN&gt;did not work"&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;And what is the problem?&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Please show us the log from windows console and/or from the ACC Logfile.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If the Lisp can be found but doesn't load,&amp;nbsp; check your secureload.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;SSGET - NoProblem&lt;/P&gt;
&lt;P&gt;Same thing, is your Script in a trustedpath?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;A href="https://help.autodesk.com/view/ACD/2020/ENU/?guid=GUID-2FB4611D-F141-48D5-9B6E-460EB59351AF" target="_blank"&gt;https://help.autodesk.com/view/ACD/2020/ENU/?guid=GUID-2FB4611D-F141-48D5-9B6E-460EB59351AF&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 04 Mar 2020 08:15:45 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/autocad-forum/ssx-not-recogniosed-by-accoreconsole/m-p/9357084#M111611</guid>
      <dc:creator>cadffm</dc:creator>
      <dc:date>2020-03-04T08:15:45Z</dc:date>
    </item>
    <item>
      <title>Re: SSX not recognised by Accoreconsole</title>
      <link>https://forums.autodesk.com/t5/autocad-forum/ssx-not-recogniosed-by-accoreconsole/m-p/9357107#M111612</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;FONT color="#333399"&gt;&lt;EM&gt;&amp;gt;&amp;gt; is there a header that needs to be included in the *.scr file&lt;/EM&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;Nothing needed to be loaded, LISP is available from start on.&lt;/P&gt;
&lt;P&gt;Only AutoCAD LT would not work with this, but then SSX also would not work.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;FONT color="#333399"&gt;&lt;EM&gt;&amp;gt;&amp;gt; it doesn't work when trying to run it with Scriptpro.&lt;/EM&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;Means what? Does not select, or does not end the selection (sending an additional &amp;lt;ENTER&amp;gt;) ... what does the output show?&lt;/P&gt;
&lt;P&gt;BTW, does it not work inside ScriptPro or also when you run the single script.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;It may help if you show us the script, at least the lines before and after the "(ssget ..." line&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;- alfred -&lt;/P&gt;</description>
      <pubDate>Wed, 04 Mar 2020 08:31:58 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/autocad-forum/ssx-not-recogniosed-by-accoreconsole/m-p/9357107#M111612</guid>
      <dc:creator>Alfred.NESWADBA</dc:creator>
      <dc:date>2020-03-04T08:31:58Z</dc:date>
    </item>
    <item>
      <title>Re: SSX not recognised by Accoreconsole</title>
      <link>https://forums.autodesk.com/t5/autocad-forum/ssx-not-recogniosed-by-accoreconsole/m-p/9359094#M111613</link>
      <description>&lt;P&gt;I'll run though my process...&lt;/P&gt;&lt;DIV class="mceNonEditable lia-copypaste-placeholder"&gt;&amp;nbsp;&lt;/DIV&gt;&lt;P&gt;This is my script (Forum.scr) which includes the "load ssx" line you suggested...&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;FONT size="2"&gt;(load (findfile "ssx.lsp"))&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT size="2"&gt;TILEMODE&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT size="2"&gt;0&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT size="2"&gt;ssx&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT size="2"&gt;B&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT size="2"&gt;"Superseded Datum"&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT size="2"&gt;ERASE&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT size="2"&gt;P&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT size="2"&gt;ZOOM&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT size="2"&gt;EXTENTS&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT size="2"&gt;TILEMODE&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT size="2"&gt;1&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT size="2"&gt;ssx&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT size="2"&gt;B&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT size="2"&gt;"Superseded Datum"&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT size="2"&gt;ERASE&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT size="2"&gt;P&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT size="2"&gt;-PURGE&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT size="2"&gt;B&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT size="2"&gt;"Superseded Datum"&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT size="2"&gt;N&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT size="2"&gt;-PURGE&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT size="2"&gt;B&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT size="2"&gt;"Datum Shift"&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT size="2"&gt;N&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT size="2"&gt;-LAYER&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT size="2"&gt;M&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT size="2"&gt;"DATUM SHIFT"&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT size="2"&gt;-INSERT "P:\ESTATES\MERRIFIELD\Living to Business Park Datum Shift\Superseded Datum.dwg"&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT size="2"&gt;0,0&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;FONT size="2"&gt;ZOOM&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT size="2"&gt;EXTENTS&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT size="2"&gt;QSAVE&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I load the script in Scriptpro using the accoreconsole.exe...&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="image.png" style="width: 574px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/737458i151E7864E3479B4B/image-size/large?v=v2&amp;amp;px=999" role="button" title="image.png" alt="image.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Status "Failed"&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Log file displays...&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;Project file:&lt;BR /&gt;Drawing file: P:\ESTATES\MERRIFIELD BUSINESS PARK\06_Stage 6 (Previous Stage 4) - Innovation Drive\3130503ADa.dwg&lt;/P&gt;&lt;P&gt;Processed by Computer: VA-03-C202&lt;/P&gt;&lt;P&gt;User name : M.Derango&lt;/P&gt;&lt;P&gt;[ Status summary ]&lt;BR /&gt;Failed&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;Error while reading log file for P:\ESTATES\MERRIFIELD BUSINESS PARK\06_Stage 6 (Previous Stage 4) - Innovation Drive\3130503ADa.dwg&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;DIV class="mceNonEditable lia-copypaste-placeholder"&gt;&amp;nbsp;&lt;/DIV&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 04 Mar 2020 22:19:43 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/autocad-forum/ssx-not-recogniosed-by-accoreconsole/m-p/9359094#M111613</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2020-03-04T22:19:43Z</dc:date>
    </item>
    <item>
      <title>Re: SSX not recognised by Accoreconsole</title>
      <link>https://forums.autodesk.com/t5/autocad-forum/ssx-not-recogniosed-by-accoreconsole/m-p/9359160#M111614</link>
      <description>&lt;P&gt;I guess this is a message from ScripPro,&lt;/P&gt;
&lt;P&gt;with no informations for is.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;In your script as first thing,&lt;/P&gt;
&lt;P&gt;turn LOGFILEON&lt;/P&gt;
&lt;P&gt;and if you like change the LOGFILEPATH.&lt;/P&gt;
&lt;P&gt;So you can see what happen in this Autocad/ACC logfile.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 04 Mar 2020 22:46:41 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/autocad-forum/ssx-not-recogniosed-by-accoreconsole/m-p/9359160#M111614</guid>
      <dc:creator>cadffm</dc:creator>
      <dc:date>2020-03-04T22:46:41Z</dc:date>
    </item>
    <item>
      <title>Betreff: SSX not recognised by Accoreconsole</title>
      <link>https://forums.autodesk.com/t5/autocad-forum/ssx-not-recogniosed-by-accoreconsole/m-p/9359209#M111615</link>
      <description>&lt;P&gt;You can't load the lisp file "ssx.lsp" in the core console, because it depends on "acetutil.arx" which could not be loaded in the core console.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;What you can try is to replace the function "acet-str-format" in ssx.lsp with your own version, which does not need the acetutil.arx.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;regards&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Markus&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 04 Mar 2020 23:22:30 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/autocad-forum/ssx-not-recogniosed-by-accoreconsole/m-p/9359209#M111615</guid>
      <dc:creator>m_latz</dc:creator>
      <dc:date>2020-03-04T23:22:30Z</dc:date>
    </item>
    <item>
      <title>Betreff: SSX not recognised by Accoreconsole</title>
      <link>https://forums.autodesk.com/t5/autocad-forum/ssx-not-recogniosed-by-accoreconsole/m-p/9359310#M111616</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;STRONG&gt;&lt;FONT size="4"&gt;It's all right&lt;/FONT&gt;, BUT a) you can load ssx and b) you can use ssx , regardless of the acet-str format problem.&lt;BR /&gt;That's why i wrote to the TO that it is working.&lt;BR /&gt;But i don't know why he can not load the ssx, so i ask for the logfile.&lt;BR /&gt;&lt;/STRONG&gt;&lt;/BLOCKQUOTE&gt;
&lt;BLOCKQUOTE&gt;&lt;EM&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/443014"&gt;@m_latz&lt;/a&gt;&amp;nbsp; schrieb:&lt;/EM&gt;&lt;BR /&gt;
&lt;P&gt;&lt;EM&gt;You can't load the lisp file "ssx.lsp" in the core console,&lt;/EM&gt;&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;That's wrong&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;EM&gt;because it depends on "acetutil.arx" which could not be loaded in the core console.&lt;/EM&gt;&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;Nothing to do with the ssx.lsp load process&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;EM&gt;What you can try is to replace the function "acet-str-format" in ssx.lsp with your own version, which does not need the acetutil.arx.&lt;/EM&gt;&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;It's correct, but the &lt;EM&gt;acet-str-format&lt;/EM&gt; call is in Lisp, it breaks "the Lisp"&amp;nbsp; - not the running script&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;and all what you want from ssx is done at this time: SSX created the last selectionset.&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;So: You can load AND USE ssx in a Script like the TO does.&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;Yes, quick&amp;amp;dirty but it works without problems in this case and if you are not able to help yourself (programming), why not.&lt;/P&gt;
&lt;P&gt;Here is the log&lt;/P&gt;
&lt;P&gt;----------------&lt;/P&gt;
&lt;P&gt;--snip--&lt;/P&gt;
&lt;P&gt;Befehl: ssx&lt;/P&gt;
&lt;P&gt;Select object &amp;lt;None&amp;gt;:&lt;/P&gt;
&lt;P&gt;Enter filter option [Block name/Color/Entity/Flag/LAyer/LType/Pick/Style/Thickness/Vector]: Color&lt;/P&gt;
&lt;P&gt;&amp;gt;&amp;gt;Enter color number to add [?] &amp;lt;RETURN to remove&amp;gt;: 1&lt;/P&gt;
&lt;P&gt;Current filter: ((62 . 1))&lt;BR /&gt;Enter filter option [Block name/Color/Entity/Flag/LAyer/LType/Pick/Style/Thickness/Vector]: &lt;BR /&gt;; Fehler: no function definition: ACET-STR-FORMAT&lt;/P&gt;
&lt;P&gt;Befehl: &lt;BR /&gt;Befehl: _move&lt;/P&gt;
&lt;P&gt;Objekte wählen: _p&lt;BR /&gt;2 gefunden&lt;/P&gt;
&lt;P&gt;Objekte wählen:&lt;/P&gt;
&lt;P&gt;Basispunkt oder [Verschiebung] &amp;lt;Verschiebung&amp;gt;: 0,0&lt;/P&gt;
&lt;P&gt;Zweiten Punkt angeben oder &amp;lt;ersten Punkt der Verschiebung verwenden&amp;gt;: 1,0&lt;/P&gt;
&lt;P&gt;Befehl: _qsave&lt;/P&gt;
&lt;P&gt;Befehl: _quit&lt;/P&gt;
&lt;P&gt;Befehl:&lt;/P&gt;</description>
      <pubDate>Thu, 05 Mar 2020 00:42:40 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/autocad-forum/ssx-not-recogniosed-by-accoreconsole/m-p/9359310#M111616</guid>
      <dc:creator>cadffm</dc:creator>
      <dc:date>2020-03-05T00:42:40Z</dc:date>
    </item>
    <item>
      <title>Re: SSX not recognised by Accoreconsole</title>
      <link>https://forums.autodesk.com/t5/autocad-forum/ssx-not-recogniosed-by-accoreconsole/m-p/9361926#M111617</link>
      <description>&lt;P&gt;Hi.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have added LOGFILEON etc to my script. I have tried to run ScriptPro again and have these results...&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;FONT size="2"&gt;[ AutoCAD - Fri Mar 06 11:50:38 2020 ]----------------------------------------&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT size="2"&gt;Command: (load (findfile "ssx.lsp"))&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT size="2"&gt;Type "ssx" at a Command: prompt or &lt;/FONT&gt;&lt;BR /&gt;&lt;FONT size="2"&gt;(ssx) at any object selection prompt.&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT size="2"&gt;Command: TILEMODE&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT size="2"&gt;Enter new value for TILEMODE &amp;lt;1&amp;gt;: 0&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT size="2"&gt;Regenerating layout.&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT size="2"&gt;Regenerating model - caching viewports.&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT size="2"&gt;Command: ssx&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT size="2"&gt;Select object &amp;lt;None&amp;gt;:&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT size="2"&gt;Enter filter option [Block name/Color/Entity/Flag/LAyer/LType/Pick/Style/Thickness/Vector]: B&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT size="2"&gt;&amp;gt;&amp;gt;Enter block name to add &amp;lt;RETURN to remove&amp;gt;: "Superseded Datum"&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT size="2"&gt;Current filter: ((2 . "Superseded Datum"))&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT size="2"&gt;Enter filter option [Block name/Color/Entity/Flag/LAyer/LType/Pick/Style/Thickness/Vector]: &lt;/FONT&gt;&lt;BR /&gt;&lt;FONT size="2"&gt;; error: no function definition: &lt;FONT color="#FF0000"&gt;&lt;STRONG&gt;ACET-STR-FORMAT&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT size="2"&gt;Command: &lt;/FONT&gt;&lt;BR /&gt;&lt;FONT size="2"&gt;Command: ERASE&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT size="2"&gt;Select objects: P&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT size="2"&gt;3 found&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT size="2"&gt;1 was not in current space.&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT size="2"&gt;Select objects:&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT size="2"&gt;Command: ZOOM&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT size="2"&gt;Specify corner of window, enter a scale factor (nX or nXP), or &lt;/FONT&gt;&lt;BR /&gt;&lt;FONT size="2"&gt;[All/Center/Dynamic/Extents/Previous/Scale/Window/Object] &amp;lt;real time&amp;gt;: EXTENTS&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT size="2"&gt;Regenerating model.&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT size="2"&gt;Command: TILEMODE&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT size="2"&gt;Enter new value for TILEMODE &amp;lt;0&amp;gt;: 1&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT size="2"&gt;Restoring cached viewports.&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT size="2"&gt;Command: ssx&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT size="2"&gt;Select object &amp;lt;None&amp;gt;:&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT size="2"&gt;Enter filter option [Block name/Color/Entity/Flag/LAyer/LType/Pick/Style/Thickness/Vector]: B&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT size="2"&gt;&amp;gt;&amp;gt;Enter block name to add &amp;lt;RETURN to remove&amp;gt;: "Superseded Datum"&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;FONT size="2"&gt;Could you please let me know what to do about ; error: no function definition: &lt;FONT color="#FF0000"&gt;&lt;STRONG&gt;ACET-STR-FORMAT&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 06 Mar 2020 00:55:47 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/autocad-forum/ssx-not-recogniosed-by-accoreconsole/m-p/9361926#M111617</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2020-03-06T00:55:47Z</dc:date>
    </item>
    <item>
      <title>Re: SSX not recognised by Accoreconsole</title>
      <link>https://forums.autodesk.com/t5/autocad-forum/ssx-not-recogniosed-by-accoreconsole/m-p/9362418#M111618</link>
      <description>&lt;P&gt;1. You can see: SSX loads and it is working!&lt;/P&gt;
&lt;P&gt;&amp;nbsp;The initial case is solved.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;2. Like m.latz wrote: you can define your own&amp;nbsp;&lt;STRONG&gt;ACET-STR-FORMAT&amp;nbsp;&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I am away from Acad, so i can not check how it must be.&lt;/P&gt;
&lt;P&gt;Without checking a first try:&lt;/P&gt;
&lt;P&gt;Add this line before you send the first SSX command:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;STRIKE&gt;(defun&amp;nbsp;&lt;STRONG&gt;ACET-STR-FORMAT (str) str)&lt;/STRONG&gt;&lt;/STRIKE&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;EDITED: (defun&amp;nbsp;ACET-STR-FORMAT (str n) (strcat "\nFound: " (if n n "0")))&lt;/STRONG&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 06 Mar 2020 08:55:45 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/autocad-forum/ssx-not-recogniosed-by-accoreconsole/m-p/9362418#M111618</guid>
      <dc:creator>cadffm</dc:creator>
      <dc:date>2020-03-06T08:55:45Z</dc:date>
    </item>
    <item>
      <title>Re: SSX not recognised by Accoreconsole</title>
      <link>https://forums.autodesk.com/t5/autocad-forum/ssx-not-recogniosed-by-accoreconsole/m-p/9368087#M111619</link>
      <description>&lt;P&gt;Thanks again for assisting with this issue.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;1. I have included your new line of code in my script and while it works when I cut and paste the whole script in the AutoCAD command line, it does not appear to work with ScriptPro. The script (when it works) deletes existing instances of a block in both model and paperspace of a drawing then inserts a new version of the block in model space only. The log file results show the new line has been accepted when using Scriptpro (see below)...&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;2. I also seem to be getting a reduced sized log file. It does not save all the commands throughout the complete script (script is also attached). Is there a command which can extend the log file?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;U&gt;LOG FILE&lt;/U&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;[ AutoCAD - Tue Mar 10 15:16:53 2020 ]----------------------------------------&lt;/P&gt;&lt;P&gt;Command: (load (findfile "ssx.lsp"))&lt;/P&gt;&lt;P&gt;Type "ssx" at a Command: prompt or&lt;BR /&gt;(ssx) at any object selection prompt.&lt;/P&gt;&lt;P&gt;Command: TILEMODE&lt;/P&gt;&lt;P&gt;Enter new value for TILEMODE &amp;lt;1&amp;gt;: 0&lt;BR /&gt;Regenerating layout.&lt;BR /&gt;Regenerating model - caching viewports.&lt;/P&gt;&lt;P&gt;Command: (defun ACET-STR-FORMAT (str n) (strcat "\nFound: " (if n n "0")))&lt;BR /&gt;ACET-STR-FORMAT&lt;/P&gt;&lt;P&gt;Command: ssx&lt;/P&gt;&lt;P&gt;Select object &amp;lt;None&amp;gt;:&lt;/P&gt;&lt;P&gt;Enter filter option [Block name/Color/Entity/Flag/LAyer/LType/Pick/Style/Thickness/Vector]: B&lt;/P&gt;&lt;P&gt;&amp;gt;&amp;gt;Enter block name to add &amp;lt;RETURN to remove&amp;gt;: "Superseded Datum"&lt;/P&gt;&lt;P&gt;Current filter: ((2 . "Superseded Datum"))&lt;BR /&gt;Enter filter option [Block name/Color/Entity/Flag/LAyer/LType/Pick/Style/Thickness/Vector]:&lt;/P&gt;&lt;P&gt;Found: 1&lt;/P&gt;&lt;P&gt;Command:&lt;BR /&gt;Command: ERASE&lt;/P&gt;&lt;P&gt;Select objects: P&lt;BR /&gt;1 found&lt;BR /&gt;1 was not in current space.&lt;/P&gt;&lt;P&gt;Select objects:&lt;/P&gt;&lt;P&gt;Command: ZOOM&lt;/P&gt;&lt;P&gt;Specify corner of window, enter a scale factor (nX or nXP), or&lt;BR /&gt;[All/Center/Dynamic/Extents/Previous/Scale/Window/Object] &amp;lt;real time&amp;gt;: EXTENTS&lt;/P&gt;&lt;P&gt;Command: TILEMODE&lt;/P&gt;&lt;P&gt;Enter new value for TILEMODE &amp;lt;0&amp;gt;: 1&lt;BR /&gt;Restoring cached viewports.&lt;BR /&gt;Regenerating 4 modified entities.&lt;/P&gt;&lt;P&gt;Command: (defun ACET-STR-FORMAT (str n) (strcat "\nFound: " (if n n "0")))&lt;BR /&gt;ACET-STR-FORMAT&lt;/P&gt;&lt;P&gt;Command: ssx&lt;/P&gt;&lt;P&gt;Select object &amp;lt;None&amp;gt;:&lt;/P&gt;&lt;P&gt;Enter filter option [Block name/Color/Entity/Flag/LAyer/LType/Pick/Style/Thickness/Vector]: B&lt;/P&gt;</description>
      <pubDate>Tue, 10 Mar 2020 04:28:22 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/autocad-forum/ssx-not-recogniosed-by-accoreconsole/m-p/9368087#M111619</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2020-03-10T04:28:22Z</dc:date>
    </item>
    <item>
      <title>Re: SSX not recognised by Accoreconsole</title>
      <link>https://forums.autodesk.com/t5/autocad-forum/ssx-not-recogniosed-by-accoreconsole/m-p/9368237#M111620</link>
      <description>&lt;P&gt;Thats not a problem of ACC and SSX, i am out.&lt;/P&gt;
&lt;P&gt;Sorry&lt;/P&gt;</description>
      <pubDate>Tue, 10 Mar 2020 07:07:54 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/autocad-forum/ssx-not-recogniosed-by-accoreconsole/m-p/9368237#M111620</guid>
      <dc:creator>cadffm</dc:creator>
      <dc:date>2020-03-10T07:07:54Z</dc:date>
    </item>
    <item>
      <title>Re: SSX not recogniosed by Accoreconsole</title>
      <link>https://forums.autodesk.com/t5/autocad-forum/ssx-not-recogniosed-by-accoreconsole/m-p/12968206#M111621</link>
      <description>&lt;P&gt;I know this is an old question, but try adding&amp;nbsp;(load "acetutil") at the beginning of your script.&amp;nbsp; I was getting errors when using the SSX command, but got no errors loading it.&amp;nbsp; Once I did that, SSX worked as expected.&lt;/P&gt;</description>
      <pubDate>Mon, 19 Aug 2024 18:22:24 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/autocad-forum/ssx-not-recogniosed-by-accoreconsole/m-p/12968206#M111621</guid>
      <dc:creator>jeffWY99S</dc:creator>
      <dc:date>2024-08-19T18:22:24Z</dc:date>
    </item>
  </channel>
</rss>

