Author Topic: Modify Lee Lisp BFind to run on opened drawings only  (Read 351 times)

0 Members and 1 Guest are viewing this topic.

HasanCAD

  • Swamp Rat
  • Posts: 1422
Modify Lee Lisp BFind to run on opened drawings only
« on: April 17, 2024, 07:07:45 AM »
I am using LEE lisp BFind (thanks LEE)
How to modify the lisp to this setting and use as default.
- Only to run on opened drawings only.
- Clear saved list.

Thanks

HasanCAD

  • Swamp Rat
  • Posts: 1422
Re: Modify Lee Lisp BFind to run on opened drawings only
« Reply #1 on: April 22, 2024, 06:37:07 AM »
- Clear saved list.
Thanks
Line 1539
from
Code: [Select]
(or (findfile cfgfname)to
Code: [Select]
(or ;(findfile cfgfname)Is it correct?

PKENEWELL

  • Bull Frog
  • Posts: 320
Re: Modify Lee Lisp BFind to run on opened drawings only
« Reply #2 on: April 22, 2024, 09:39:05 AM »
Look at this area, specifically line 1537

Code - Auto/Visual Lisp: [Select]
  1. ;;-------------------------------------------------------------------------------;;
  2. ;;                          --=={  Setup Defaults  }==--                         ;;
  3. ;;-------------------------------------------------------------------------------;;
  4.  
  5.   (setq SymList '(*BFind_lst* *BFind_pat* *BFind_cur* *BFind_opn* *BFind_sub* *BFind_opt* *BFind_ser* *BFind_whr*)
  6.         ValList  (list 'nil cdir "0" "1" "1" (+ 1 8 16 32 64 128 256 512) "0" "0")) ;; Change 4th list item to "1" to set default to "Open Drawings"
  7. ;;                                    ^ HERE!
  8.  
"When you are asked if you can do a job, tell 'em, 'Certainly I can!' Then get busy and find out how to do it." - Theodore Roosevelt

ScottMC

  • Newt
  • Posts: 193
Re: Modify Lee Lisp BFind to run on opened drawings only
« Reply #3 on: April 24, 2024, 10:23:18 PM »
Thanks for that info Phil. Do appreciate your input.