View and Layout ID
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
ā2007-09-05 05:18 PM
- Labels:
-
BIM Management

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
ā2007-09-05 05:49 PM
I think the more pressing issue is how you want to make it easier to find drawings? You can get a lot of info out of the Drawing Manager and if you right click on the header section, you get more categories to choose from. The Source View category may be all you need. You can also get info from right clicking on the drawing, either on the layout or in the Navigator/Organizer.
What kind of info are you after?
Cheers,
Link.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
ā2007-09-05 06:58 PM

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
ā2007-09-05 07:21 PM
Cheers,
Link.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
ā2007-09-05 07:57 PM

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
ā2007-09-05 08:09 PM
Tom wrote:Are you trying to do this through the built-in title types or through your own GDL work?
The challenge occurs with wantingbothview ID and layout ID in the same title type - ArchiCAD allows you to toggle between the two but so far I can't figure out how to have both....
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
ā2007-09-06 02:43 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
ā2007-09-06 04:06 AM
Tom wrote:it looks to me as though the title objects pull information for "AC_DrawingNumber" in some hard-coded fashion based on whatever selection you have made in the 'Drawing ID' field of the drawing settings dialogue. i can't see any documented global variables or requests that let you get to it either . . .
I am writing the GDL code and have it all written except for a way to pull the view ID from the project map. Is there a variable for the view ID or reference ID? I tried all the autotext options but they seem to want to pull info from the layout, not the info from the project & view maps.
sorry.
~/archiben
b f [a t ] p l a n b a r c h i t e c t u r e [d o t] n z
archicad | sketchup | morpholio | phpp
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
ā2007-09-06 05:16 AM
I have run into the same problem lately (trying to do exactly the same) when updating our drawing titles. Apparently <DRAWINGID> is a virtual variable so it just copies and displays the value from the source as set in the Drawing Settings/Identification Tab. I have tried to use Drawing Name (when set to Name+ID option) to split the string up but the nature of autotext feature does not allow any string operations over it. So in other words the autotext (<ANYTHING>) variables are beyond the rich of GDL in terms of their content modification.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
ā2007-09-06 03:19 PM
Rob wrote:Yes and no.
Tom,
I have run into the same problem lately (trying to do exactly the same) when updating our drawing titles. Apparently <DRAWINGID> is a virtual variable so it just copies and displays the value from the source as set in the Drawing Settings/Identification Tab. I have tried to use Drawing Name (when set to Name+ID option) to split the string up but the nature of autotext feature does not allow any string operations over it. So in other words the autotext (<ANYTHING>) variables are beyond the rich of GDL in terms of their content modification.
Yes, <DRAWINGID> is controlled from within Archicad. Inside an object, though, you can use the string variables AC_DrawingNumber and AC_DrawingName. With these, you can perform other string functions like cutting them down and splitting them apart.