See the top rated post in this thread. Click here

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

Thread: Is it possible to use Object specific fields in a lisp

  1. #11
    Past Vice President / AUGI Volunteer peter's Avatar
    Join Date
    2000-09
    Location
    Honolulu HI
    Posts
    1,106
    Login to Give a bone
    0

    Default Re: Is it possible to use Object specific fields in a lisp

    Hey Fixo...

    Quote Originally Posted by fixo View Post
    Code:
    (ssget "_+.:s:l" ...
    Can you explain the use of what appears to be an undocumented feature "_+.:s:l"

    In the vlide help the +, ., and :l are not listed in the help.

    Can you share your reference?

    Peter
    AutomateCAD

  2. #12
    Past Vice President / AUGI Volunteer peter's Avatar
    Join Date
    2000-09
    Location
    Honolulu HI
    Posts
    1,106
    Login to Give a bone
    0

    Default Re: Is it possible to use Object specific fields in a lisp

    Another thing I noticed was itoa returns the 64 bit object id

    Code:
    (itoa (vla-get-objectid objItem))
    instead of

    Code:
    (vlax-invoke-method
     (vla-get-Utility
      (vla-get-activedocument
       (vlax-get-acad-object)))
     "GetObjectIdString"
     objItem
     :vlax-False
    )
    AutomateCAD

  3. #13
    Certifiable AUGI Addict
    Join Date
    2001-03
    Location
    Tallahassee, FL USA
    Posts
    3,658
    Login to Give a bone
    0

    Default Re: Is it possible to use Object specific fields in a lisp

    The "+." puts (ssget) into "point" mode. It helps the ":S" single-mode act just like (entsel) by avoiding implied selection windows.
    Last edited by Tom Beauford; 2013-04-04 at 07:23 PM. Reason: It was wrong!

  4. #14
    AUGI Addict fixo's Avatar
    Join Date
    2005-05
    Location
    Pietari, Venäjä
    Posts
    1,269
    Login to Give a bone
    0

    Default Re: Is it possible to use Object specific fields in a lisp

    Sorry for the belating, in addition
    :L means selection on locked layers
    Regards,

    Oleg

  5. #15
    I could stop if I wanted to
    Join Date
    2012-11
    Location
    Brisbane, Australia
    Posts
    239
    Login to Give a bone
    1

    Default Re: Is it possible to use Object specific fields in a lisp

    Cheers for all the help

    It is working like a dream.

Page 2 of 2 FirstFirst 12

Similar Threads

  1. 3D Section Box, only specific object
    By DaleSmith in forum Revit Architecture - General
    Replies: 3
    Last Post: 2012-01-24, 04:01 PM
  2. object specific right click menu
    By cparvez in forum AMEP General
    Replies: 2
    Last Post: 2009-07-27, 07:57 PM
  3. How to turn a mass object into a specific item
    By abink in forum Revit Architecture - General
    Replies: 5
    Last Post: 2006-10-14, 12:41 AM
  4. Can i put a label on a specific object style ?
    By daniel.hurtubise70031 in forum Revit Architecture - General
    Replies: 2
    Last Post: 2005-04-16, 08:19 PM
  5. Object specific underlay on other views
    By Chad Smith in forum Revit Architecture - Wish List
    Replies: 0
    Last Post: 2003-11-25, 06:47 AM

Posting Permissions

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