Cadax Posted December 11, 2009 Posted December 11, 2009 Hi everyone, I'm looking to find some information on if there is a way to have my LAYLOCKFADECTL set to two different values in two different workspace's. When setting up MEP sheets here at the office (in my 'sheet setup' workspace) I like to lock the xref layer after I alx them and have them show up dark in acad, but when drafting plumbing work (in my 'drafting workspace') I like them to show up at a brighter contrast. I've tried saving the two different workspaces to different values but they never stay. Anyone know a way to possibly make this happen? Thanks in advance to any help. Quote
lpseifert Posted December 11, 2009 Posted December 11, 2009 something like this maybe? (defun c:ws1 () (setvar "laylockfadectl" [color=Red]0[/color])[color=Red];edit as wanted[/color] (command "workspace" "c" "[color=Red]Workspace1[/color]")[color=Red];edit as wanted[/color] ) (defun c:ws2 () (setvar "laylockfadectl" [color=Red]50[/color])[color=Red];edit as wanted[/color] (command "workspace" "c" "[color=Red]Workspace2[/color]")[color=Red];edit as wanted[/color] ) Quote
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.