<?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>tema Autocad for mac - lisp to change floors en AutoCAD for Mac Forum</title>
    <link>https://forums.autodesk.com/t5/autocad-for-mac-forum/autocad-for-mac-lisp-to-change-floors/m-p/7751400#M30118</link>
    <description>&lt;P&gt;Hi guys, I have this lsp to quickly change and copy things from one floor to another. You first write the command PISOS to set the distance between floors in your paper space (for example 500) and the when you write the command UP or DOWN it changes floors. CU to copy UP, etc.&lt;/P&gt;&lt;P&gt;Does someone have an equivalent lsp that works in Autocad for mac?&lt;/P&gt;&lt;P&gt;Thanks!&lt;/P&gt;</description>
    <pubDate>Mon, 05 Feb 2018 12:03:36 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2018-02-05T12:03:36Z</dc:date>
    <item>
      <title>Autocad for mac - lisp to change floors</title>
      <link>https://forums.autodesk.com/t5/autocad-for-mac-forum/autocad-for-mac-lisp-to-change-floors/m-p/7751400#M30118</link>
      <description>&lt;P&gt;Hi guys, I have this lsp to quickly change and copy things from one floor to another. You first write the command PISOS to set the distance between floors in your paper space (for example 500) and the when you write the command UP or DOWN it changes floors. CU to copy UP, etc.&lt;/P&gt;&lt;P&gt;Does someone have an equivalent lsp that works in Autocad for mac?&lt;/P&gt;&lt;P&gt;Thanks!&lt;/P&gt;</description>
      <pubDate>Mon, 05 Feb 2018 12:03:36 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/autocad-for-mac-forum/autocad-for-mac-lisp-to-change-floors/m-p/7751400#M30118</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2018-02-05T12:03:36Z</dc:date>
    </item>
    <item>
      <title>Re: Autocad for mac - lisp to change floors</title>
      <link>https://forums.autodesk.com/t5/autocad-for-mac-forum/autocad-for-mac-lisp-to-change-floors/m-p/7752893#M30128</link>
      <description>&lt;P&gt;Welcome to Autodesk Forums!&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Hi&amp;nbsp;&lt;SPAN&gt;Maria,&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;I don't see anything in your AutoLISP routine which can prevent it from using in AutoCAD for Mac, except this strings:&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;(DEFUN setstline (/ stline)
 (get_imf)
 (SETQ
   stline (STRCAT
     "MAT PISOS: "		"$(RTOS,$(GETVAR,USERR1),2,0)"
     " - OSNAP: "		"$(getvar,osmode)"
     " - LTSCALE: "		"$(getvar,ltscale)"
     " - PSLTSCALE: "		"$(getvar,psltscale)"
     " - IMAGEFRAME: "		"$(getvar,useri5)"
     " - PROJECTNAME: "		"$(getvar,projectname)"
    )
 )
 (SETVAR "modemacro" stline)
)
(setstline)&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;I commented these lines in the routine and attached it to my post.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Can you test it now?&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Maxim&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 05 Feb 2018 19:11:58 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/autocad-for-mac-forum/autocad-for-mac-lisp-to-change-floors/m-p/7752893#M30128</guid>
      <dc:creator>maxim_k</dc:creator>
      <dc:date>2018-02-05T19:11:58Z</dc:date>
    </item>
    <item>
      <title>Re: Autocad for mac - lisp to change floors</title>
      <link>https://forums.autodesk.com/t5/autocad-for-mac-forum/autocad-for-mac-lisp-to-change-floors/m-p/7753410#M30129</link>
      <description>&lt;P&gt;Oh that works, that you so much Maxim!&lt;/P&gt;</description>
      <pubDate>Mon, 05 Feb 2018 21:59:31 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/autocad-for-mac-forum/autocad-for-mac-lisp-to-change-floors/m-p/7753410#M30129</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2018-02-05T21:59:31Z</dc:date>
    </item>
    <item>
      <title>Re: Autocad for mac - lisp to change floors</title>
      <link>https://forums.autodesk.com/t5/autocad-for-mac-forum/autocad-for-mac-lisp-to-change-floors/m-p/7753451#M30130</link>
      <description>&lt;P style="margin: 0in; margin-bottom: .0001pt;"&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I am glad to hear that it worked. I’ve just accepted the response to your&amp;nbsp;&lt;SPAN style="color: #808000;"&gt;&lt;STRONG&gt;post&lt;/STRONG&gt;&lt;/SPAN&gt;&amp;nbsp;as a solution so that others can benefit from the information.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;BR /&gt; In the future, please click on the &lt;SPAN style="color: #808000;"&gt;‘Accept as Solution’&lt;/SPAN&gt; button if/when relevant. Please feel free to let me know if you have any questions or concerns!&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 05 Feb 2018 22:26:15 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/autocad-for-mac-forum/autocad-for-mac-lisp-to-change-floors/m-p/7753451#M30130</guid>
      <dc:creator>john.vellek</dc:creator>
      <dc:date>2018-02-05T22:26:15Z</dc:date>
    </item>
  </channel>
</rss>

