<?xml version="1.0" encoding="utf-8" ?>
<?xml-stylesheet type="text/xsl" href="RSS_xslt_style.asp" version="1.0" ?>
<rss version="2.0" xmlns:WebWizForums="http://syndication.webwiz.co.uk/rss_namespace/">
 <channel>
  <title>CAD Forum discussion (EN) : shortcut draworder</title>
  <link>https://www.cadforum.cz/forum_en/</link>
  <description><![CDATA[This is an XML content feed of; CAD Forum discussion (EN) : AutoCAD : shortcut draworder]]></description>
  <pubDate>Sun, 31 May 2026 23:14:45 +0000</pubDate>
  <lastBuildDate>Fri, 21 Jun 2019 15:54:42 +0000</lastBuildDate>
  <docs>http://blogs.law.harvard.edu/tech/rss</docs>
  <generator>Web Wiz Forums 12.04</generator>
  <ttl>360</ttl>
  <WebWizForums:feedURL>https://www.cadforum.cz/forum_en/RSS_post_feed.asp?TID=13213</WebWizForums:feedURL>
  <image>
   <title><![CDATA[CAD Forum discussion (EN)]]></title>
   <url>https://www.cadforum.cz/forum_en/forum_images/web_wiz_forums.png</url>
   <link>https://www.cadforum.cz/forum_en/</link>
  </image>
  <item>
   <title><![CDATA[shortcut draworder : &amp;#034;Borrowed&amp;#034; this one...]]></title>
   <link>https://www.cadforum.cz/forum_en/forum_posts.asp?TID=13213&amp;PID=37016&amp;title=shortcut-draworder#37016</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="https://www.cadforum.cz/forum_en/member_profile.asp?PF=39979">rebellio</a><br /><strong>Subject:</strong> 13213<br /><strong>Posted:</strong> 21.Jun.2019 at 15:54<br /><br />"Borrowed" this one from you Kent, thanks for sharing&nbsp;<img src="https://www.cadforum.cz/forum_en/smileys/smiley2.gif" border="0" alt="Wink" title="Wink" />]]>
   </description>
   <pubDate>Fri, 21 Jun 2019 15:54:42 +0000</pubDate>
   <guid isPermaLink="true">https://www.cadforum.cz/forum_en/forum_posts.asp?TID=13213&amp;PID=37016&amp;title=shortcut-draworder#37016</guid>
  </item> 
  <item>
   <title><![CDATA[shortcut draworder :  There is also a menu macro predefined...]]></title>
   <link>https://www.cadforum.cz/forum_en/forum_posts.asp?TID=13213&amp;PID=37015&amp;title=shortcut-draworder#37015</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="https://www.cadforum.cz/forum_en/member_profile.asp?PF=3">Vladimir Michl</a><br /><strong>Subject:</strong> 13213<br /><strong>Posted:</strong> 21.Jun.2019 at 07:28<br /><br />There is also a menu macro predefined in CUI - you can assign any keyboard shortcut to it to invoke it faster than through the ribbon.]]>
   </description>
   <pubDate>Fri, 21 Jun 2019 07:28:32 +0000</pubDate>
   <guid isPermaLink="true">https://www.cadforum.cz/forum_en/forum_posts.asp?TID=13213&amp;PID=37015&amp;title=shortcut-draworder#37015</guid>
  </item> 
  <item>
   <title><![CDATA[shortcut draworder :   roel-nahuis wrote:... is there...]]></title>
   <link>https://www.cadforum.cz/forum_en/forum_posts.asp?TID=13213&amp;PID=37013&amp;title=shortcut-draworder#37013</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="https://www.cadforum.cz/forum_en/member_profile.asp?PF=353260">Kent Cooper</a><br /><strong>Subject:</strong> 13213<br /><strong>Posted:</strong> 20.Jun.2019 at 14:44<br /><br /><table width="99%"><tr><td class="BBquote"><img src="forum_images/quote_box.png" title="Originally posted by roel-nahuis" alt="Originally posted by roel-nahuis" style="vertical-align: text-bottom;" /> <strong>roel-nahuis wrote:</strong><br /><br />... is there an shortcut for draworder send to back and bring to front?</td></tr></table><div>&nbsp;</div><div>I use two little shortcut commands for not just the DRAWORDER command &#091;which still requires you to specify Back or Front&#093;, but for the command with the <strong>B</strong>ack or <strong>F</strong>ront option&nbsp;<em>included in the command operation,</em> without your needing to answer for it <font color="#cc6600">&#091;EDIT: just replaced with&nbsp;upgraded version that allows pre-selection&#093;</font>:</div><div>&nbsp;</div><div>;;&nbsp; DraworderBackFront.lsp &#091;command names: <strong>DB</strong> &amp; <strong>DF</strong>&#093;<br>;;&nbsp; To put selected objects at the Back or Front of the Draworder<br>;;&nbsp; Kent Cooper, last edited 20 June 2019 &#091;work with pre-selection&#093;</div><div>(defun DBF (which / cmde ss)<br>&nbsp; (setq cmde (getvar 'cmdecho))<br>&nbsp; (if (ssget "_I")<br>&nbsp;&nbsp;&nbsp; (setq ss (ssget "_I")); then<br>&nbsp;&nbsp;&nbsp; (progn ; else<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; (prompt (strcat "\nTo move to " which " in draw order,"))<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; (setq ss (ssget ":L"))<br>&nbsp;&nbsp;&nbsp; ); progn<br>&nbsp; ); if<br>&nbsp; (if ss<br>&nbsp;&nbsp;&nbsp; (progn ; then<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; (setvar 'cmdecho 0)<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; (sssetfirst nil nil); clear if via pre-selection<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; (command "_.draworder" ss "" (strcat "_" which) "_.regen")<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; (setvar 'cmdecho cmde)<br>&nbsp;&nbsp;&nbsp; ); progn<br>&nbsp;&nbsp;&nbsp; (prompt "\nNothing selected."); else<br>&nbsp; ); if<br>&nbsp; (princ)<br>)</div><div>(defun C:<strong>DB</strong> ()<br>&nbsp; (DBF "Back")<br>)</div><div>(defun C:<strong>DF</strong> ()<br>&nbsp; (DBF "Front")<br>)</div><div></div><span style="font-size:10px"><br /><br />Edited by Kent Cooper - 20.Jun.2019 at 15:04</span>]]>
   </description>
   <pubDate>Thu, 20 Jun 2019 14:44:25 +0000</pubDate>
   <guid isPermaLink="true">https://www.cadforum.cz/forum_en/forum_posts.asp?TID=13213&amp;PID=37013&amp;title=shortcut-draworder#37013</guid>
  </item> 
  <item>
   <title><![CDATA[shortcut draworder : Thanks, it works!!! ]]></title>
   <link>https://www.cadforum.cz/forum_en/forum_posts.asp?TID=13213&amp;PID=37012&amp;title=shortcut-draworder#37012</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="https://www.cadforum.cz/forum_en/member_profile.asp?PF=817414">roel-nahuis</a><br /><strong>Subject:</strong> 13213<br /><strong>Posted:</strong> 20.Jun.2019 at 10:24<br /><br />Thanks, it works!!!]]>
   </description>
   <pubDate>Thu, 20 Jun 2019 10:24:13 +0000</pubDate>
   <guid isPermaLink="true">https://www.cadforum.cz/forum_en/forum_posts.asp?TID=13213&amp;PID=37012&amp;title=shortcut-draworder#37012</guid>
  </item> 
  <item>
   <title><![CDATA[shortcut draworder : Hi,Shortcut is &amp;#034;DR&amp;#034;Adjustable...]]></title>
   <link>https://www.cadforum.cz/forum_en/forum_posts.asp?TID=13213&amp;PID=37011&amp;title=shortcut-draworder#37011</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="https://www.cadforum.cz/forum_en/member_profile.asp?PF=39979">rebellio</a><br /><strong>Subject:</strong> 13213<br /><strong>Posted:</strong> 20.Jun.2019 at 10:14<br /><br />Hi,<div><br></div><div>Shortcut is "DR"</div><div><br></div><div>Adjustable via "Aliasedit" if preferred.</div><div><br></div><div><img src="uploads/39979/Draworder.png" height="362" width="399" border="0" /><br></div><div><br></div><div>Regards&nbsp;<br><div><br></div><div><br></div></div><span style="font-size:10px"><br /><br />Edited by rebellio - 20.Jun.2019 at 12:44</span>]]>
   </description>
   <pubDate>Thu, 20 Jun 2019 10:14:03 +0000</pubDate>
   <guid isPermaLink="true">https://www.cadforum.cz/forum_en/forum_posts.asp?TID=13213&amp;PID=37011&amp;title=shortcut-draworder#37011</guid>
  </item> 
  <item>
   <title><![CDATA[shortcut draworder : hello,is there an shortcut for...]]></title>
   <link>https://www.cadforum.cz/forum_en/forum_posts.asp?TID=13213&amp;PID=37010&amp;title=shortcut-draworder#37010</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="https://www.cadforum.cz/forum_en/member_profile.asp?PF=817414">roel-nahuis</a><br /><strong>Subject:</strong> 13213<br /><strong>Posted:</strong> 20.Jun.2019 at 08:12<br /><br />hello,<div><br></div><div>is there an shortcut for draworder send to back and bring to front?</div>]]>
   </description>
   <pubDate>Thu, 20 Jun 2019 08:12:56 +0000</pubDate>
   <guid isPermaLink="true">https://www.cadforum.cz/forum_en/forum_posts.asp?TID=13213&amp;PID=37010&amp;title=shortcut-draworder#37010</guid>
  </item> 
 </channel>
</rss>