See the top rated post in this thread. Click here

Page 2 of 2 FirstFirst 12
Results 11 to 13 of 13

Thread: Purging RegApps

  1. #11
    Certifiable AUGI Addict tedg's Avatar
    Join Date
    2005-06
    Location
    in the upper right corner
    Posts
    3,508
    Login to Give a bone
    0

    Default Re: Purging RegApps

    I purge allot including "regapps", this is within a lisp routine I run all the time.
    Code:
    ....
    (setq ce (getvar "cmdecho"))
        (setvar "cmdecho" 0)
        (command "purge" "a" "" "n")
        (command "purge" "regapps" "" "n")
        (command "purge" "a" "" "n")
       (setvar "cmdecho" ce)
    .......
    (princ)
    )

  2. #12
    I could stop if I wanted to sschwartz85916's Avatar
    Join Date
    2005-04
    Location
    Oakland County, Michigan
    Posts
    424
    Login to Give a bone
    0

    Default Re: Purging RegApps

    Quote Originally Posted by tedg View Post
    I purge allot including "regapps", this is within a lisp routine I run all the time.
    Code:
    ....
    (setq ce (getvar "cmdecho"))
        (setvar "cmdecho" 0)
        (command "purge" "a" "" "n")
        (command "purge" "regapps" "" "n")
        (command "purge" "a" "" "n")
       (setvar "cmdecho" ce)
    .......
    (princ)
    )
    I have a command on a tool palette. Pretty simple, looks like this:

    ^C^C-purge;r;*;n;

  3. #13
    Certifiable AUGI Addict tedg's Avatar
    Join Date
    2005-06
    Location
    in the upper right corner
    Posts
    3,508
    Login to Give a bone
    0

    Default Re: Purging RegApps

    Quote Originally Posted by sschwartz View Post
    I have a command on a tool palette. Pretty simple, looks like this:

    ^C^C-purge;r;*;n;
    Sweet.... I've dabbled a bit with tool palettes, but only for dragging blocks and other cadd work into drawings.

    Mine is part of a bigger routine that purges, zooms to extents and saves the drawing.

    Happy Thanksgiving.

Page 2 of 2 FirstFirst 12

Similar Threads

  1. Add REGAPPS to Purge
    By Wish List System in forum AutoCAD Wish List
    Replies: 2
    Last Post: 2013-03-25, 02:35 PM
  2. scalelist & regapps cleanup
    By mgonzales.224492 in forum AutoLISP
    Replies: 28
    Last Post: 2010-02-17, 06:08 AM
  3. Purge REGAPPS
    By gfreddog in forum AutoLISP
    Replies: 1
    Last Post: 2009-02-03, 08:14 PM
  4. regapps listing tool?
    By brandenz in forum AutoCAD General
    Replies: 3
    Last Post: 2008-06-05, 09:20 PM
  5. Regapps don't stay purged
    By jgrande26 in forum AutoCAD General
    Replies: 3
    Last Post: 2007-08-09, 08:24 PM

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •