Jump to content

Sheet Set Manager, How do I set Resource Drawing Locations


muck

Recommended Posts

How do I set Resource Drawing locations in Sheet Set Manager?

When I go to the SS properties dialog box I do not see Resource Drawing Locations.

I see Model View in its place.

Thank you,

Link to comment
Share on other sites

I believe you're after Model Views tab, right click 'Add New Location...' and select 'Add New Location...' menu item.

 

That said, I do not use Model Views tab at all to manage a project via SSM... I organize my entire project (i.e. exhibits, models [DREF/XREF drawings], sheets, etc.) using Subsets (which mirrors our project folder structure), and this simple code snippet in AcadDoc.lsp to automagically open model drawings to Model Space:

 

;;;--------------------------------------------------------------------;
;;; Activate model tab when opening models from ssm
(if
 (and
   (wcmatch (strcase (strcat (getvar 'dwgprefix) (getvar 'dwgname)))
            "*\\MODEL*,[color="red"]<YourFileNamingConventionHere>[/color]*.DWG"
   )
   (/= 1 (getvar 'tilemode))
 )
  (setvar 'tilemode 1)
)
;;;--------------------------------------------------------------------;

Link to comment
Share on other sites

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.

Guest
Unfortunately, your content contains terms that we do not allow. Please edit your content to remove the highlighted words below.
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...