Over 1.096.000 registered users (EN+CZ).
AutoCAD tips, Inventor tips, Revit tips.
Try the new precise Engineering calculator and the updated Barcode generator.
New AutoCAD 2026 commands and variables.
Discussion forum
?CAD discussions, advices, exchange of experience

Please abide by the rules of this forum.
This is a peer-to-peer forum. The forum doesn't replace the official direct technical support provided by ARKANCE for its customers.
How to post questions: register or login, go to the specific forum and click the NEW TOPIC button.
|
Post Reply ![]() |
Author | |
roel-nahuis ![]() Newbie ![]() Joined: 20.Jun.2019 Location: Germany Using: AutoCAD2019 Status: Offline Points: 6 |
![]() Posted: 20.Jun.2019 at 08:12 |
hello,
is there an shortcut for draworder send to back and bring to front?
|
|
![]() |
|
rebellio ![]() Senior Member ![]() Joined: 04.Mar.2009 Location: Netherlands Using: Autocad 2018 Status: Offline Points: 125 |
![]() |
Hi,
Shortcut is "DR" Adjustable via "Aliasedit" if preferred. ![]() Regards
Edited by rebellio - 20.Jun.2019 at 12:44 |
|
![]() |
|
roel-nahuis ![]() Newbie ![]() Joined: 20.Jun.2019 Location: Germany Using: AutoCAD2019 Status: Offline Points: 6 |
![]() |
Thanks, it works!!!
|
|
![]() |
|
Kent Cooper ![]() Senior Member ![]() Joined: 12.Mar.2013 Location: United States Using: AutoCAD2020, 2023 Status: Offline Points: 686 |
![]() |
I use two little shortcut commands for not just the DRAWORDER command [which still requires you to specify Back or Front], but for the command with the Back or Front option included in the command operation, without your needing to answer for it [EDIT: just replaced with upgraded version that allows pre-selection]: ;; DraworderBackFront.lsp [command names: DB & DF] ;; To put selected objects at the Back or Front of the Draworder ;; Kent Cooper, last edited 20 June 2019 [work with pre-selection] (defun DBF (which / cmde ss) (setq cmde (getvar 'cmdecho)) (if (ssget "_I") (setq ss (ssget "_I")); then (progn ; else (prompt (strcat "\nTo move to " which " in draw order,")) (setq ss (ssget ":L")) ); progn ); if (if ss (progn ; then (setvar 'cmdecho 0) (sssetfirst nil nil); clear if via pre-selection (command "_.draworder" ss "" (strcat "_" which) "_.regen") (setvar 'cmdecho cmde) ); progn (prompt "\nNothing selected."); else ); if (princ) ) (defun C:DB () (DBF "Back") ) (defun C:DF ()
(DBF "Front") ) Edited by Kent Cooper - 20.Jun.2019 at 15:04 |
|
![]() |
|
Vladimir Michl ![]() Moderator Group ![]() Arkance Systems CZ Joined: 26.Jul.2007 Location: Czech Republic Using: Autodesk software Status: Offline Points: 2120 |
![]() |
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.
|
|
Vladimir Michl (moderator)
ARKANCE - https://arkance.world - Autodesk Platinum Partner |
|
![]() |
|
rebellio ![]() Senior Member ![]() Joined: 04.Mar.2009 Location: Netherlands Using: Autocad 2018 Status: Offline Points: 125 |
![]() |
"Borrowed" this one from you Kent, thanks for sharing
![]() |
|
![]() |
Post Reply ![]() |
|
Tweet
|
Forum Jump | Forum Permissions ![]() You cannot post new topics in this forum You cannot reply to topics in this forum You cannot delete your posts in this forum You cannot edit your posts in this forum You cannot create polls in this forum You cannot vote in polls in this forum |
This page was generated in 0,141 seconds.