Author Topic: Toggling between model/paper space  (Read 6013 times)

0 Members and 1 Guest are viewing this topic.

idrawwithcad

  • Guest
Toggling between model/paper space
« on: March 17, 2005, 07:39:01 PM »
Gday folks,

Just wondering if anyone knows if it is possible to toggle between model space and paper space using keyboard commands?

Cheers
Dave

danny

  • Guest
Toggling between model/paper space
« Reply #1 on: March 17, 2005, 09:28:36 PM »
Dave,
i think the command your looking for is "tilemode"

CADmonkey

  • Guest
Toggling between model/paper space
« Reply #2 on: March 18, 2005, 04:41:30 AM »
Quote
Quick Tip - Cycle through your Layouts

Did you know you can use Ctrl+Page Up and Ctrol+Page Down to cycle through your layout tabs?  Great for you keyboard junkies!

from the following site: http://lynn.blogs.com/lynn_allens_blog/2004/12/index.html

this is what you're after? :wink:

Ta.

daron

  • Guest
Toggling between model/paper space
« Reply #3 on: March 18, 2005, 08:40:35 AM »
Or you could just say Ctrl+PageUP or PageDown.

MP

  • Seagull
  • Posts: 17750
  • Have thousands of dwgs to process? Contact me.
Toggling between model/paper space
« Reply #4 on: March 18, 2005, 08:41:21 AM »
<giggle.wav>
Engineering Technologist • CAD Automation Practitioner
Automation ▸ Design ▸ Drafting ▸ Document Control ▸ Client
cadanalyst@gmail.comhttp://cadanalyst.slack.comhttp://linkedin.com/in/cadanalyst

Artisan

  • Guest
Toggling between model/paper space
« Reply #5 on: March 18, 2005, 09:04:37 AM »
Quote from: Daron
Or you could just say Ctrl+PageUP or PageDown.


This doesn't work for me. I get nothing when I try that. I am using ADT, so it may be that.

I use "PS" to get me from model to paperspace when I have activated a viewport in paperspace. But I don't know if this is what you are looking for.

CADmonkey

  • Guest
Toggling between model/paper space
« Reply #6 on: March 18, 2005, 09:07:00 AM »
*yawn*
perhaps a little more info might have been required? as the site link has more stuff I've found useful in the past... nothing ventured, nothing gained and all that.

VerticalMojo

  • Guest
Toggling between model/paper space
« Reply #7 on: March 18, 2005, 09:12:35 AM »
heres a macro..... maybe you can use it to alter a HOTKEY

^C^Ctilemode;$M=$(-,1,$(getvar, tilemode))

MikePerry

  • Guest
Toggling between model/paper space
« Reply #8 on: March 18, 2005, 09:16:22 AM »
Quote from: Artisan
Quote from: Daron
Or you could just say Ctrl+PageUP or PageDown.


This doesn't work for me. I get nothing when I try that. I am using ADT, so it may be that.
Hi

AutoCAD 2004 (and vertical products) upwards.

Have a good one, Mike

JohnK

  • Administrator
  • Seagull
  • Posts: 10657
Toggling between model/paper space
« Reply #9 on: March 18, 2005, 09:46:08 AM »
Code: [Select]
; switch tilemodes0
(defun Toggle-TileMode ()
  (setvar "tilemode"  (boole 6 (getvar "tilemode") 1)) (princ))
(defun c:tm ()(Toggle-TileMode))
TheSwamp.org (serving the CAD community since 2003)
Member location map - Add yourself

Donate to TheSwamp.org

AfricaAD

  • Guest
Toggling between model/paper space
« Reply #10 on: March 18, 2005, 01:30:32 PM »
For 2002, its Ctrl+Tab

CADaver

  • Guest
Toggling between model/paper space
« Reply #11 on: March 18, 2005, 01:37:59 PM »
Quote from: AfricaAD
For 2002, its Ctrl+Tab
CTRL+TAB switches between DWG files, not "spaces".

AfricaAD

  • Guest
Toggling between model/paper space
« Reply #12 on: March 18, 2005, 02:07:43 PM »
Quote from: CADaver
Quote from: AfricaAD
For 2002, its Ctrl+Tab
CTRL+TAB switches between DWG files, not "spaces".


Opps! Did I post that?

I meant to say make a quickkey, for example, mine is TS0 & TS1.

CADaver

  • Guest
Toggling between model/paper space
« Reply #13 on: March 18, 2005, 02:40:21 PM »
Quote from: AfricaAD
I meant to say make a quickkey, for example, mine is TS0 & TS1.
If you take a look at the code se7en posted, you'll see that you only need one command.  If it's 1, it'll make it 0, if it's 0 it'll make it 1.

I dunno who first found the little (boole 6 (getvar "<whatever>) 1) trick, but I use it for a whole bunch of toggles.

ELOQUINTET

  • Guest
Toggling between model/paper space
« Reply #14 on: March 18, 2005, 04:41:07 PM »
ps and ms or am i missing something?