Results 1 to 3 of 3

Thread: To filter a SSGET by APPID

  1. #1
    I could stop if I wanted to
    Join Date
    2005-06
    Location
    CORDOBA-ARGENTINA
    Posts
    275
    Login to Give a bone
    0

    Default To filter a SSGET by APPID

    How it can be filter a SSGET by it´s APPID name ??


    In a lot off enty I have lot of 3dsolid with it´s APPID name , How I can do a SSGET to be filter by such appid?
    plain acad 2007

  2. #2
    Administrator BlackBox's Avatar
    Join Date
    2009-11
    Posts
    5,719
    Login to Give a bone
    0

    Default Re: To filter a SSGET by APPID

    Most do not SSGET by APP (DXF -1), as it changes each time a drawing opens. You SSGET by TYPE (DXF 0), and iterate that to do what you need, or use VLAX-FOR to check for ObjectId.

    More information on DXF here:

    http://www.autodesk.com/techpubs/aut...F_22164_DXF_06

    http://www.autodesk.com/techpubs/aut...lid_dxf_06.htm


    HTH
    "How we think determines what we do, and what we do determines what we get."

    Sincpac C3D ~ Autodesk Exchange Apps

    Computer Specs:
    Dell Precision 3660, Core i9-12900K 5.2GHz, 64GB DDR5 RAM, PCIe 4.0 M.2 SSD (RAID 0), 16GB NVIDIA RTX A4000

  3. #3
    I could stop if I wanted to
    Join Date
    2005-06
    Location
    CORDOBA-ARGENTINA
    Posts
    275
    Login to Give a bone
    0

    Default Re: To filter a SSGET by APPID

    Maybe I miss spell some item

    At the dwg , that come from CADWORKS , have appid named "CPD1" and "CPD2" .
    It is a pipe 3d layout .
    I use it

    Code:
    (setq ent (ssname (ssget ":s" '(( 0 . "3DSOLID"))) 0))
    
    (setq appid-name  (caadr(assoc -3 (entget ent (list "*")))))
    Will the APPID-name, change next time , or will it be constant??

    Thanks in advance.

Similar Threads

  1. 2014: Filter - create Filter by Reference Level.
    By swapr78 in forum Revit MEP - General
    Replies: 2
    Last Post: 2015-01-17, 11:13 PM
  2. ssget with filter
    By blubossa in forum AutoLISP
    Replies: 9
    Last Post: 2010-10-12, 10:15 PM
  3. ssget filter
    By rken.laws in forum AutoLISP
    Replies: 3
    Last Post: 2009-01-07, 02:23 PM
  4. Replies: 6
    Last Post: 2007-06-07, 02:08 PM
  5. SSGET returns error - bad SSGET list
    By tany0070 in forum AutoLISP
    Replies: 2
    Last Post: 2007-03-09, 07:26 AM

Tags for this Thread

Posting Permissions

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