![]() | |
| Home Page | Mark Forums Read | Today's Posts | My Replies | Classifieds | Reviews | Photo Gallery | Web Links | Share Files | Advertise With Us | Ad List |
| |||||||
| Autodesk Software (Autocad, Inventor etc) Discuss Autodesk Software (Autocad, Inventor etc) software here. |
| This forum is sponsored by: |
![]() |
| | LinkBack | Thread Tools | Search this Thread | Display Modes |
|
#1
| ||||
| ||||
How can I tab between paper space and model space without clicking on the tab button on the screen?
__________________ Thank You, Paul G Site Owner-Webmaster- Administrator www.rfqwork.com www.cnczone.com www.welderzone.com |
|
#2
| ||||
| ||||
| pspace and mspace commands. You can create shorter alias's to make it quicker. Gerry
__________________ Gerry Mach3 2010 Screenset http://home.comcast.net/~cncwoodworker/2010.html (Note: The opinions expressed in this post are my own and are not necessarily those of CNCzone and its management) |
|
#5
| ||||
| ||||
| Well ps ms does not work in 2002, and I already know about the doble click. I'm looking for one button that will move from opne to the other.
__________________ Thank You, Paul G Site Owner-Webmaster- Administrator www.rfqwork.com www.cnczone.com www.welderzone.com |
| Sponsored Links |
|
#6
| ||||
| ||||
| Then you have something configured wrong. I just pulled up AutoCAD to make sure I wasn't full of crap, and PS/MS still worked like a champ. You have to be under one of the layout tabs (doesn't matter which one).
__________________ Ryan Shanks Logic Industries LLC http://www.logic-industries.com |
|
#7
| ||||
| ||||
| Tilemode 0 or 1 I've written three very simple AutoLISP routines to toggle back and forth (defun C:TM () (setvar "cmdecho" 0) (command "tilemode" (abs (+ (getvar "tilemode") -1))) (setvar "cmdecho" 1) (princ) ); end tm.lsp (defun C:PS () (setvar "cmdecho" 0) (if (= (getvar "tilemode") 1) (setvar "tilemode" 0) ) (command "pspace") (setvar "cmdecho" 1) (princ) ) (defun C:MS () (setvar "cmdecho" 0) (if (= (getvar "tilemode") 1) (setvar "tilemode" 0) ) (command "mspace") (setvar "cmdecho" 1) (princ) ) HTH
__________________ Brent ------------- Sometimes people have a hard time reading my emails and posts, so thats why I type slower. So people can understand me then. |
|
#8
| ||||
| ||||
How does it work? How do I install it?
__________________ Thank You, Paul G Site Owner-Webmaster- Administrator www.rfqwork.com www.cnczone.com www.welderzone.com |
|
#9
| ||||
| ||||
| Copy and paste them into notepad. Save with the extension .LSP save preferably in a support directory In AutoCAD type appload Browse to were you saved the file. Select it and click load. You can also load it into the Startup Suite from appload. The C:XXX is the command name example Command: TM AutoLISP is a programming language for AutoCAD. These are very simple ones. I have tons of LISP programs written for varies applications HTH Brent
__________________ Brent ------------- Sometimes people have a hard time reading my emails and posts, so thats why I type slower. So people can understand me then. |
|
#10
| ||||
| ||||
| What's wrong with clicking the tabs? Are you looking for a faster way to switch? Or for some other reason? Gerry
__________________ Gerry Mach3 2010 Screenset http://home.comcast.net/~cncwoodworker/2010.html (Note: The opinions expressed in this post are my own and are not necessarily those of CNCzone and its management) |
| Sponsored Links |
|
#11
| ||||
| ||||
| Ger21, if your an original AutoCAD'r, like myself.....been using since days of DOS, you still type most commands. And I've gotten use to typing TM, MS and PS. I just tweaked these commands to toggle back and forth quickly. I've been using AutoCAD with LISP routines I've written for so long that I just think of the extra util's as normal AutoCAD commands. Take text editting, it sucks doing it. I've written a different DDEDIT like command. It can be used for DTEXT, MTEXT or DIMENSIONS with multiple selections. This is a BIG time save. ;;; Command Name: DE and ED ;; MULITPLE TEXT EDIT FOR MTEXT,DTEXT,DIMENSION,TOLERANCE OR ATTRIBUTES ;; ;-----------------------------------------------------------; (defun NOT_TEXT (/ ATT) (cond ((not (or (= (cdr (assoc 0 TXT)) "DIMENSION") (= (cdr (assoc 0 TXT)) "INSERT") (= (cdr (assoc 0 TXT)) "TOLERANCE"))) (princ (strcat "\nObject selected is not TEXT,MTEXT,DIMENSION,TOLERANCE or ATTRIBUTE. \n\tThis is a " (cdr (assoc 0 TXT)) ".")) ) (' t (if (= (cdr (assoc 0 TXT)) "INSERT") (progn (setq ATT (cdr (assoc 66 TXT))) (if (= ATT 1) (command "ddatte" (ssname SS CNT)) (princ "\nINSERT does NOT have ATTRIBUTES") ) ) ) (command "ddedit" (ssname SS CNT) "") ) ) ) ;-----------------------------------------------------------; (defun C:DE (/ SS NUM TXT OLD NEW TE CNT) (setvar "CMDECHO" 0) (command "undo" "m" "undo" "g") (princ "\n<Select DTEXT,MTEXT,DIMENSIONS,TOLERANCES or ATTRIBUTES>/Remove") (setq SS (ssget)) (if (= SS nil) (setq SS (ssget "p"))) (setq NUM (sslength SS) CNT 0) (repeat NUM (setq TXT (entget (ssname SS CNT))) (cond ((not (or (= (cdr (assoc 0 TXT)) "TEXT") (= (cdr (assoc 0 TXT)) "MTEXT"))) (NOT_TEXT) ) (' t (setq OLD (cdr (assoc 1 TXT)) TE (load_dialog "textedit") ) (if (and TE (new_dialog "textedit" TE)) (progn (set_tile "txt_edit" OLD) (action_tile "txt_edit" "(setq NEW $value)" ) (if (= (start_dialog) 1) (progn (setq TXT (subst (cons 1 NEW) (assoc 1 TXT) TXT ) ) (entmod TXT) ) ) (unload_dialog TE) ) (exit) ) ) ) (setq CNT (1+ CNT)) ) (setq SS nil) (command "undo" "e") (setvar "CMDECHO" 1) (princ) ) ;-----------------------------------------------------------; (defun C:ED (/ SS NUM CNT) (setvar "CMDECHO" 0) (command "undo" "mark" "undo" "group") (princ "MDDEDIT") (princ "\n<Select DTEXT,MTEXT,DIMENSIONS or TOLERANCES>/Remove") (setq SS (ssget)) (if (= SS nil) (setq SS (ssget "p"))) (setq NUM (sslength SS) CNT 0) (repeat NUM (command "ddedit" (ssname SS CNT) "") (setq CNT (1+ CNT)) ) (setq SS nil) (command "undo" "e") (setvar "CMDECHO" 1) (princ) )
__________________ Brent ------------- Sometimes people have a hard time reading my emails and posts, so thats why I type slower. So people can understand me then. |
![]() |
| Currently Active Users Viewing This Thread: 1 (0 members and 1 guests) | |
| Thread Tools | Search this Thread |
| Display Modes | |
| |
Similar Threads | ||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| BOBCAD Model Airplane Wing Design Script | cely | BobCad-Cam | 6 | 08-20-2009 10:11 PM |
| drilling peck chip break | fjd | G-Code Programing | 20 | 12-12-2004 06:10 PM |
| White Paper: Highspeed milling with micro-tools | HighSpeed | Product Announcements & Manufacturer News | 0 | 03-03-2004 08:29 AM |
| Model or paper space? | CNCadmin | Autodesk Software (Autocad, Inventor etc) | 9 | 07-02-2003 08:26 AM |