<?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: error: autocad variable setting rejected &amp;quot;clayer&amp;quot; &amp;quot;0-wndr&amp;amp;quo in Visual LISP, AutoLISP and General Customization Forum</title>
    <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/error-autocad-variable-setting-rejected-quot-clayer-quot-quot-0/m-p/8431385#M96059</link>
    <description>&lt;P&gt;I'm trying to step through your code to find out what the error is, can you provide all the parts and pieces so that I can successfully run the code?&amp;nbsp; when I call the DR command, I'm getting a message:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;user cancelled dialognil&lt;/P&gt;</description>
    <pubDate>Wed, 28 Nov 2018 20:35:11 GMT</pubDate>
    <dc:creator>chriscowgill7373</dc:creator>
    <dc:date>2018-11-28T20:35:11Z</dc:date>
    <item>
      <title>error: autocad variable setting rejected "clayer" "0-wndr"</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/error-autocad-variable-setting-rejected-quot-clayer-quot-quot-0/m-p/8431361#M96058</link>
      <description>&lt;P&gt;Im receiving the above referenced error on a lisp routine, which up until now, I have never experienced. Its a routine to insert doors into a drawing. The routine previously allowed doors to be inserted on any layer named *-wndr.&amp;nbsp; (see attached pic of dialog box generated by the lisp, note the message at the top of the dialog box regarding "*-WNDR" layer) It will now only insert on "0-wndr" layer.&amp;nbsp; If I go in the code and rename "wndr" (toward the bottom of the script) the same error comes up with the new layer name I assign it, essentially looking for the '0". I don't know what changed (I did not make any edits to the routine).&amp;nbsp; Here is the code.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thank you in advance.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Here is the code:&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;
&lt;P&gt;;===================================================================================;&lt;BR /&gt; ; Error Handler Function ;&lt;BR /&gt; ;===================================================================================;&lt;BR /&gt;(defun drerr (errormsg) ; If an error (such as CTRL-C) occurs&lt;BR /&gt; ; while this command is active...&lt;BR /&gt; (if (/= errormsg "bad argument type: lselsetp nil")&lt;BR /&gt; (alert (strcat "\nError: " errormsg))&lt;BR /&gt; (alert "Error: Failure in wall/point selections.")&lt;BR /&gt; )&lt;BR /&gt; (setvar "osmode" orOSMODE)&lt;BR /&gt;(setvar "pickbox" orPICKBOX)&lt;BR /&gt;(setvar "aperture" orAPERTURE)&lt;BR /&gt;(setvar "cecolor" curCOLOR)&lt;BR /&gt;(command "undo" "end")&lt;BR /&gt;(princ)&lt;BR /&gt;(setq *error* olderr) ; restore old *error* handler&lt;BR /&gt; (princ)&lt;BR /&gt;)&lt;/P&gt;
&lt;P&gt;;===================================================================================;&lt;BR /&gt; ; Main Program ;&lt;BR /&gt; ;===================================================================================;&lt;/P&gt;
&lt;P&gt;&lt;BR /&gt;(defun c:dr (/&lt;BR /&gt; dcl_id&lt;BR /&gt; what_next&lt;BR /&gt; )&lt;BR /&gt; (setq dcl_id (load_dialog "dr.dcl"))&lt;BR /&gt; (new_dialog "dr" dcl_id)&lt;BR /&gt; &lt;BR /&gt; (action_tile "H" "(progn (mode_tile \"OFFCORN\" 0)(setq insert \"h\")(set_tile \"C\" \"0\"))")&lt;/P&gt;
&lt;P&gt;(action_tile "C" "(progn (mode_tile \"OFFCORN\" 1)(setq insert \"c\")(set_tile \"H\" \"0\"))")&lt;BR /&gt; &lt;BR /&gt; ;(action_tile "OFFCORN" "(if (not (numberp offcorn))(progn(set_tile \"error\" \"Must be a real number &amp;gt; 0.\")(mode_tile \"OFFCORN\" 2)))")&lt;BR /&gt; &lt;BR /&gt; (action_tile "DRSIZE" "(setq drsize (atof (get_tile \"DRSIZE\")))")&lt;/P&gt;
&lt;P&gt;;(action_tile "LEAFANGLE" "(setq leafangle (get_tile \"LEAFANGLE\"))")&lt;/P&gt;
&lt;P&gt;(action_tile "LEAFANGLE" "(progn (setq leafangle (get_tile \"LEAFANGLE\"))(set_tile \"slider_value\" leafangle))")&lt;BR /&gt; &lt;BR /&gt; (action_tile "pickpoints" "(done_dialog 4)")&lt;BR /&gt; (if (null doortype)(progn (set_tile "S" "1")(setq doortype "s")))&lt;BR /&gt; (if (null insert)(progn (set_tile "H" "1")(setq insert "h")))&lt;BR /&gt; (if (not (null offcorn))(set_tile "OFFCORN" (rtos offcorn))(progn(set_tile "OFFCORN" "6")(setq offcorn 6)))&lt;BR /&gt; (if (not (null drsize))(set_tile "DRSIZE" (rtos drsize))(progn(set_tile "DRSIZE" "30")(setq drsize 30)))&lt;BR /&gt; ;(if (null leafangle)(setq leafangle"45"))&lt;BR /&gt; (if (not (null leafangle))(set_tile "LEAFANGLE" leafangle)(setq leafangle"45"))&lt;BR /&gt; (set_tile "slider_value" leafangle)&lt;BR /&gt; (if (= doortype "d")(set_tile "D" "1")(set_tile "S" "1"))&lt;BR /&gt; (if (= insert "c")(progn (set_tile "C" "1")(set_tile "H" "0")(mode_tile "OFFCORN" 1)))&lt;BR /&gt; (if (= insert "h")(progn (set_tile "H" "1")(mode_tile "OFFCORN" 0)(set_tile "C" "0")))&lt;BR /&gt; (if (and (= insert "h")(null offcorn))(mode_tile "OFFCORN" 2))&lt;BR /&gt; &lt;BR /&gt; (setq what_next (start_dialog))&lt;BR /&gt; (cond&lt;BR /&gt; ((= what_next 4)&lt;BR /&gt; (getpnts)&lt;BR /&gt; )&lt;BR /&gt; ((= what_next 0)&lt;BR /&gt; (prompt "\nuser cancelled dialog")&lt;BR /&gt; )&lt;/P&gt;
&lt;P&gt;)&lt;/P&gt;
&lt;P&gt;(unload_dialog dcl_id)&lt;BR /&gt;)&lt;/P&gt;
&lt;P&gt;(defun getpnts (/ StartPt DirPt Ang oppo hypo&lt;BR /&gt; wallthickness HP1 HP2 LP1&lt;BR /&gt; wall_lay Tsset Tline2 Trm1 Trm2 Cpoint Hpt&lt;BR /&gt; ANG2 layprefix door_lay blockname mirror&lt;BR /&gt; xscale curCOLOR in_ang l Ang&lt;BR /&gt; )&lt;BR /&gt; (setq olderr *error* *error* drerr)&lt;BR /&gt; (setvar "cmdecho" 0)&lt;BR /&gt; (command "undo" "begin")&lt;BR /&gt; ; save system variables ;&lt;BR /&gt; (setq orAPERTURE (getvar "aperture")&lt;BR /&gt; orPICKBOX (getvar "pickbox")&lt;BR /&gt; orOSMODE (getvar "osmode")&lt;BR /&gt; curLAYER (getvar "clayer")&lt;BR /&gt; curCOLOR (getvar "cecolor")&lt;BR /&gt; )&lt;BR /&gt; ; get door points and angles ;&lt;/P&gt;
&lt;P&gt;&lt;BR /&gt; (if (= insert "h")&lt;BR /&gt; (progn&lt;BR /&gt; (setvar "osmode" 33)&lt;BR /&gt; (setq StartPt (getpoint "\nPick corner closest to the hinge: "))&lt;BR /&gt; (setvar "osmode" 512)&lt;BR /&gt; (setq DirPt (getpoint "\nPick a point on wall toward latch: "))&lt;BR /&gt; (setq oppo (getpoint "\nPick a point on wall face opposite the hinge/latch:"))&lt;BR /&gt; (setq Ang (angle StartPt DirPt)&lt;BR /&gt; Ang2 (angle StartPt oppo)&lt;BR /&gt; Hypo (distance StartPt oppo)&lt;BR /&gt; HP1 (polar StartPt Ang offcorn)&lt;BR /&gt; LP1 (polar HP1 Ang drsize)&lt;BR /&gt; ))&lt;BR /&gt; (progn&lt;BR /&gt; (setvar "osmode" orOSMODE)&lt;BR /&gt; (setq Cpoint (getpoint "\nPick the center point of opening on hinge/latch face of wall:"))&lt;BR /&gt; (setvar "osmode" 33)&lt;BR /&gt; (setq HPt (getpoint "\nPick a point close to either hinge: "))&lt;BR /&gt; (setvar "osmode" 512)&lt;BR /&gt; (setq oppo (getpoint "\nPick a point on wall face opposite the hinges:"))&lt;BR /&gt; (setq Ang (angle HPt Cpoint)&lt;BR /&gt; Ang2 (angle HPt oppo)&lt;BR /&gt; Hypo (distance HPt oppo)&lt;BR /&gt; HP1 (polar Cpoint (+ Ang pi)(/ drsize 2))&lt;BR /&gt; LP1 (polar HP1 Ang drsize)&lt;BR /&gt; )&lt;BR /&gt; )&lt;BR /&gt; )&lt;BR /&gt; (if (or(&amp;lt; Ang2 Ang)(and (&amp;lt; Ang (/ pi 2))(&amp;gt; Ang2 (* (/ 3 2) pi))))&lt;/P&gt;
&lt;P&gt;(setq perpAng (- Ang (/ pi 2)) mirror 1))&lt;/P&gt;
&lt;P&gt;(if (or(&amp;gt; Ang2 Ang)(and(&amp;lt; Ang2 (/ pi 2))(&amp;gt; Ang (* (/ 3 2) pi))))&lt;/P&gt;
&lt;P&gt;(setq perpAng (+ Ang (/ pi 2)) mirror (- 0 1)))&lt;/P&gt;
&lt;P&gt;(setq wallthickness (* hypo (sin (abs (- Ang Ang2)))))&lt;BR /&gt; ; create opening points ;&lt;BR /&gt; ; (setq HP1 (polar StartPt Ang offcorn)&lt;BR /&gt;; LP1 (polar HP1 Ang drsize)&lt;BR /&gt;;&lt;BR /&gt; ; )&lt;BR /&gt; ; draw and trim the opening ;&lt;BR /&gt; (setq sswall (ssget oppo))&lt;BR /&gt; (setq wall_lay (cdr (assoc 8 (entget (ssname sswall 0)))))&lt;BR /&gt; (setvar "clayer" wall_lay)&lt;BR /&gt; (setvar "pickbox" 1)&lt;BR /&gt; (setvar "aperture" 1)&lt;BR /&gt; (command "color" "bylayer")&lt;BR /&gt; (command "line" HP1 "per" oppo "")&lt;BR /&gt; (setq Tsset (ssget "L"))&lt;BR /&gt; (command "line" LP1 "per" oppo "")&lt;BR /&gt; (setq Tline2 (entlast))&lt;BR /&gt; (ssadd Tline2 Tsset)&lt;BR /&gt; (setq Trm1 (polar HP1 Ang (/ drsize 2)))&lt;BR /&gt; (setq Trm2 (polar Trm1 perpAng wallthickness))&lt;/P&gt;
&lt;P&gt;(command "trim" Tsset "f" "" Trm1 Trm2 "")&lt;BR /&gt; ; insert the door block ;&lt;BR /&gt; (setq layprefix (substr wall_lay 1 1))&lt;BR /&gt; (setq door_lay (strcat layprefix "-wndr"))&lt;BR /&gt; (setvar "clayer" door_lay)&lt;BR /&gt; (command "color" "10")&lt;/P&gt;
&lt;P&gt;(if (= doortype "s")&lt;BR /&gt; (setq blockname (strcat "dr-" leafangle))&lt;BR /&gt; (setq blockname (strcat "2dr-" leafangle))&lt;BR /&gt; )&lt;/P&gt;
&lt;P&gt;(setq xscale (* mirror drsize))&lt;BR /&gt; (if (= mirror -1)&lt;BR /&gt; (setq in_ang (+ Ang pi))&lt;BR /&gt; (setq in_ang Ang)&lt;BR /&gt; )&lt;BR /&gt; (setq in_ang (atof (angtos in_ang 0 4)))&lt;BR /&gt; (command "-insert" blockname HP1 xscale drsize in_ang)&lt;/P&gt;
&lt;P&gt;; release selection set memory ;&lt;BR /&gt; (setq Tsset nil&lt;BR /&gt; sswall nil&lt;BR /&gt; Tline2 nil&lt;BR /&gt; )&lt;BR /&gt; ; reset system variables ;&lt;BR /&gt; (setvar "osmode" orOSMODE)&lt;BR /&gt; (setvar "pickbox" orPICKBOX)&lt;BR /&gt; (setvar "aperture" orAPERTURE)&lt;BR /&gt; (setvar "clayer" curlayer)&lt;BR /&gt; (setvar "cecolor" curCOLOR)&lt;BR /&gt; (command "undo" "end")&lt;BR /&gt; (princ)&lt;BR /&gt;) ;end defun&lt;/P&gt;</description>
      <pubDate>Wed, 28 Nov 2018 20:23:51 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/error-autocad-variable-setting-rejected-quot-clayer-quot-quot-0/m-p/8431361#M96058</guid>
      <dc:creator>HAS140</dc:creator>
      <dc:date>2018-11-28T20:23:51Z</dc:date>
    </item>
    <item>
      <title>Re: error: autocad variable setting rejected "clayer" "0-wndr&amp;quo</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/error-autocad-variable-setting-rejected-quot-clayer-quot-quot-0/m-p/8431385#M96059</link>
      <description>&lt;P&gt;I'm trying to step through your code to find out what the error is, can you provide all the parts and pieces so that I can successfully run the code?&amp;nbsp; when I call the DR command, I'm getting a message:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;user cancelled dialognil&lt;/P&gt;</description>
      <pubDate>Wed, 28 Nov 2018 20:35:11 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/error-autocad-variable-setting-rejected-quot-clayer-quot-quot-0/m-p/8431385#M96059</guid>
      <dc:creator>chriscowgill7373</dc:creator>
      <dc:date>2018-11-28T20:35:11Z</dc:date>
    </item>
    <item>
      <title>Re: error: autocad variable setting rejected "clayer" "0-wndr&amp;amp</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/error-autocad-variable-setting-rejected-quot-clayer-quot-quot-0/m-p/8431410#M96060</link>
      <description>&lt;P&gt;Thank you! I have attached a zip file containing what I believe is to be all off the necessary files.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 28 Nov 2018 20:43:44 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/error-autocad-variable-setting-rejected-quot-clayer-quot-quot-0/m-p/8431410#M96060</guid>
      <dc:creator>HAS140</dc:creator>
      <dc:date>2018-11-28T20:43:44Z</dc:date>
    </item>
    <item>
      <title>Re: error: autocad variable setting rejected "clayer" "0-wndr&amp;amp</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/error-autocad-variable-setting-rejected-quot-clayer-quot-quot-0/m-p/8431462#M96061</link>
      <description>&lt;P&gt;stepping through makes it a whole lot easier.&amp;nbsp; You are setting the current layer to a layer that does not exist within the file you are working in.&amp;nbsp; You should modify your program to check to see if the layer exists prior to setting it current, and if not, create the layer.&lt;/P&gt;</description>
      <pubDate>Wed, 28 Nov 2018 20:58:26 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/error-autocad-variable-setting-rejected-quot-clayer-quot-quot-0/m-p/8431462#M96061</guid>
      <dc:creator>chriscowgill7373</dc:creator>
      <dc:date>2018-11-28T20:58:26Z</dc:date>
    </item>
    <item>
      <title>Re: error: autocad variable setting rejected "clayer" "0-wndr&amp;amp</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/error-autocad-variable-setting-rejected-quot-clayer-quot-quot-0/m-p/8431481#M96062</link>
      <description>&lt;P&gt;if I understand you correctly, you are suggesting that the "0-wndr" layer is non-existent and/or not current?&lt;/P&gt;
&lt;P&gt;Before I had this issue,&amp;nbsp;the lisp would&amp;nbsp;insert the door on my A-WNDR layer which is pre-set in my .dwt file and the layer did not have to be current. I don't know how this changed in the code, I didn't touch the script. So confused&lt;/P&gt;</description>
      <pubDate>Wed, 28 Nov 2018 21:04:17 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/error-autocad-variable-setting-rejected-quot-clayer-quot-quot-0/m-p/8431481#M96062</guid>
      <dc:creator>HAS140</dc:creator>
      <dc:date>2018-11-28T21:04:17Z</dc:date>
    </item>
    <item>
      <title>Re: error: autocad variable setting rejected "clayer" "0-wndr&amp;amp</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/error-autocad-variable-setting-rejected-quot-clayer-quot-quot-0/m-p/8431503#M96063</link>
      <description>&lt;P&gt;The program calls to set the A-WNDR layer current, it doesnt matter what the current layer is when you start the program, if&amp;nbsp;the A-WNDR layer does not exist in the file, then it cant set it current, which is the reason for the error message.&amp;nbsp; Did your template file change in the new version?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 28 Nov 2018 21:16:02 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/error-autocad-variable-setting-rejected-quot-clayer-quot-quot-0/m-p/8431503#M96063</guid>
      <dc:creator>chriscowgill7373</dc:creator>
      <dc:date>2018-11-28T21:16:02Z</dc:date>
    </item>
    <item>
      <title>Re: error: autocad variable setting rejected "clayer" "0-wndr</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/error-autocad-variable-setting-rejected-quot-clayer-quot-quot-0/m-p/8431533#M96064</link>
      <description>Do you mean the program calls to set it to 0-WNDR layer? It's not going on to my A-WNDR layer that is preset in my dwg. This is my issue. Where in the script is saying this? As I stated earlier, prior to this problem the door would be placed on any layer ending in *-WNDR and now it's forcing it to go on 0-WNDR... can you see anywhere in the script where it can be changed not look for the 0 to be in the layer?&lt;BR /&gt;</description>
      <pubDate>Wed, 28 Nov 2018 21:27:11 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/error-autocad-variable-setting-rejected-quot-clayer-quot-quot-0/m-p/8431533#M96064</guid>
      <dc:creator>HAS140</dc:creator>
      <dc:date>2018-11-28T21:27:11Z</dc:date>
    </item>
    <item>
      <title>Re: error: autocad variable setting rejected "clayer" "0-wndr</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/error-autocad-variable-setting-rejected-quot-clayer-quot-quot-0/m-p/8431567#M96065</link>
      <description>&lt;P&gt;Your program determines the layer of the wall you select&lt;/P&gt;
&lt;P&gt;It then strips out the rest of the name, except for the first character&lt;/P&gt;
&lt;P&gt;It then combines that first character with the WNDR&lt;/P&gt;
&lt;P&gt;It then sets that layer current&lt;/P&gt;
&lt;P&gt;It then inserts the door block&lt;/P&gt;
&lt;P&gt;It then resets all the variables back to their default values.&lt;/P&gt;
&lt;P&gt;There is no provision for if the layer does not exist.&lt;/P&gt;
&lt;P&gt;If the wall you select is on a layer called 0 or 0-WALL the layer the program is going to look for is going to be 0-WNDR&lt;/P&gt;
&lt;P&gt;If that layer does not exist, your program will fail.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;FONT color="#FF0000"&gt;&lt;U&gt;&lt;STRONG&gt;So, in your test file, what layer is your wall on?&lt;/STRONG&gt;&lt;/U&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;In my file the wall is on A-WALL&lt;/P&gt;
&lt;P&gt;The program strips it down to A&lt;/P&gt;
&lt;P&gt;Then adds A-WNDR&lt;/P&gt;
&lt;P&gt;I'm using the default template with no layers established&lt;/P&gt;
&lt;P&gt;I error out with &lt;FONT color="#FF0000"&gt;"error: autocad variable setting rejected "clayer" "A-wndr"&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;If I add the A-WNDR to my file, it works as designed&lt;/P&gt;
&lt;P&gt;Short of having inadequate error checking in the program, the program works as it should.&lt;/P&gt;</description>
      <pubDate>Wed, 28 Nov 2018 21:41:17 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/error-autocad-variable-setting-rejected-quot-clayer-quot-quot-0/m-p/8431567#M96065</guid>
      <dc:creator>chriscowgill7373</dc:creator>
      <dc:date>2018-11-28T21:41:17Z</dc:date>
    </item>
    <item>
      <title>Re: error: autocad variable setting rejected "clayer" "0-wndr</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/error-autocad-variable-setting-rejected-quot-clayer-quot-quot-0/m-p/8431600#M96066</link>
      <description>Now, that makes sense! Thank you so much for that clarification. And of course thank you for taking the time to look at this. I greatly appreciate that. I originally was trying to insert a door on somebody else's drawing and we layer nomenclature wasn't my own which is when I experienced the initial error. I then tried it on a clean drawing but was trying it on walls created on the Zero layer. For my own drawings I have always inserted doors in walls on a-wall layers. I left my office so I will give it a try in the morning. Thank you again for your help!&lt;BR /&gt;</description>
      <pubDate>Wed, 28 Nov 2018 21:50:11 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/error-autocad-variable-setting-rejected-quot-clayer-quot-quot-0/m-p/8431600#M96066</guid>
      <dc:creator>HAS140</dc:creator>
      <dc:date>2018-11-28T21:50:11Z</dc:date>
    </item>
    <item>
      <title>Re: error: autocad variable setting rejected "clayer" "0-wndr</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/error-autocad-variable-setting-rejected-quot-clayer-quot-quot-0/m-p/8431642#M96067</link>
      <description>&lt;P&gt;No problem.&amp;nbsp; I'll be around tomorrow when you get back in if you have any questions.&lt;/P&gt;</description>
      <pubDate>Wed, 28 Nov 2018 22:11:19 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/error-autocad-variable-setting-rejected-quot-clayer-quot-quot-0/m-p/8431642#M96067</guid>
      <dc:creator>chriscowgill7373</dc:creator>
      <dc:date>2018-11-28T22:11:19Z</dc:date>
    </item>
    <item>
      <title>Re: error: autocad variable setting rejected "clayer" "0-wndr</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/error-autocad-variable-setting-rejected-quot-clayer-quot-quot-0/m-p/8431648#M96068</link>
      <description>Again, thank you for time. I'll let you know how it goes!&lt;BR /&gt;</description>
      <pubDate>Wed, 28 Nov 2018 22:13:11 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/error-autocad-variable-setting-rejected-quot-clayer-quot-quot-0/m-p/8431648#M96068</guid>
      <dc:creator>HAS140</dc:creator>
      <dc:date>2018-11-28T22:13:11Z</dc:date>
    </item>
    <item>
      <title>Re: error: autocad variable setting rejected "clayer" "0-wndr</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/error-autocad-variable-setting-rejected-quot-clayer-quot-quot-0/m-p/8433298#M96069</link>
      <description>&lt;P&gt;yep. All is good. Thanks again. While I have you though, there is a slight issue with one door insertion. Cant get it to properly&amp;nbsp;cut in a door in a wall in X axis, with the hinge side on the top left and swinging up toward the Y axis.&lt;/P&gt;
&lt;P&gt;It cuts the door in with the hinge on the top left, but swings the door down toward the Y axis.&amp;nbsp;&amp;nbsp;All other doors work fine.&amp;nbsp;I have attached a pic, see the door with the cloud.&amp;nbsp; Can you see anything in the script that would cause this?&lt;/P&gt;</description>
      <pubDate>Thu, 29 Nov 2018 13:57:40 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/error-autocad-variable-setting-rejected-quot-clayer-quot-quot-0/m-p/8433298#M96069</guid>
      <dc:creator>HAS140</dc:creator>
      <dc:date>2018-11-29T13:57:40Z</dc:date>
    </item>
    <item>
      <title>Re: error: autocad variable setting rejected "clayer" "0-wndr</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/error-autocad-variable-setting-rejected-quot-clayer-quot-quot-0/m-p/8433549#M96070</link>
      <description>&lt;P&gt;can you provide your test drawing? that shows the door not working?&lt;/P&gt;</description>
      <pubDate>Thu, 29 Nov 2018 15:18:55 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/error-autocad-variable-setting-rejected-quot-clayer-quot-quot-0/m-p/8433549#M96070</guid>
      <dc:creator>chriscowgill7373</dc:creator>
      <dc:date>2018-11-29T15:18:55Z</dc:date>
    </item>
    <item>
      <title>Re: error: autocad variable setting rejected "clayer" "0-wndr</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/error-autocad-variable-setting-rejected-quot-clayer-quot-quot-0/m-p/8433595#M96071</link>
      <description>&lt;P&gt;sure thing, see attached&lt;/P&gt;</description>
      <pubDate>Thu, 29 Nov 2018 15:31:30 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/error-autocad-variable-setting-rejected-quot-clayer-quot-quot-0/m-p/8433595#M96071</guid>
      <dc:creator>HAS140</dc:creator>
      <dc:date>2018-11-29T15:31:30Z</dc:date>
    </item>
  </channel>
</rss>

