Zone Stamp scale threshold change
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎2015-04-22 11:53 PM
‎2015-04-22
11:53 PM
Scott J. Newland, AIA
ArchiCAD 25
iMac running OS 11.5
ArchiCAD 25
iMac running OS 11.5
1 REPLY 1
Anonymous
Not applicable
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎2015-04-23 09:09 AM
‎2015-04-23
09:09 AM
Hy Scott,
the 1:50 scale limit is coded and can't be changed without changing the code.
In few words you have to:
1- duplicate "Zone_stamp 18" and "Zone_stammp_macro" with save as, let's say "My stamp" and "My stamp macro".
2-Enter gdl code, master script, of My stamp and change:
call "Zone_stamp_macro" parameters all gs_iDisplayStandards = gs_iDisplayStandards
into
call "My stamp macro" parameters all gs_iDisplayStandards = gs_iDisplayStandards
3-In My stamp macro go to master script and change:
if GLOB_SCALE < 50 + eps then _iScale = SCALE_50
into
if GLOB_SCALE < 32 + eps then _iScale = SCALE_50
4-In My stamp macro go to master script and change:
dim stDisplayScale[3]
stDisplayScale[1] = `1:50`
into
dim stDisplayScale[3]
stDisplayScale[1] = `1:32`
I think that will get the work done.
the 1:50 scale limit is coded and can't be changed without changing the code.
In few words you have to:
1- duplicate "Zone_stamp 18" and "Zone_stammp_macro" with save as, let's say "My stamp" and "My stamp macro".
2-Enter gdl code, master script, of My stamp and change:
call "Zone_stamp_macro" parameters all gs_iDisplayStandards = gs_iDisplayStandards
into
call "My stamp macro" parameters all gs_iDisplayStandards = gs_iDisplayStandards
3-In My stamp macro go to master script and change:
if GLOB_SCALE < 50 + eps then _iScale = SCALE_50
into
if GLOB_SCALE < 32 + eps then _iScale = SCALE_50
4-In My stamp macro go to master script and change:
dim stDisplayScale[3]
stDisplayScale[1] = `1:50`
into
dim stDisplayScale[3]
stDisplayScale[1] = `1:32`
I think that will get the work done.