Message 1 of 5

Not applicable
05-25-2016
10:25 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
The macro below is to scale a selection set (title block and other text related items, which are in model space) to the scale of (/ 64.0 48), which actually changes the existing scale of 1/4" = 1'-0" to 3/16" = 1'-0".
I would also like to have this same macro change the annotation scale, in the lower right of the Autocad screen, to 3/16" = 1'-0".
I tried to introduce the cannoscale command and the system variable but could not get either to work.
^C^C(if (setq tb (ssget))(command "scale" tb "" '(0 0 0)(/ 64.0 48)))(command "zoom" "extents")
Solved! Go to Solution.