<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: You gotta try visibility-add-eng-v1.1 in Dynamic Blocks Forum</title>
    <link>https://forums.autodesk.com/t5/dynamic-blocks-forum/you-gotta-try-visibility-add-eng-v1-1/m-p/4414473#M28750</link>
    <description>&lt;P&gt;Yes and no. It is not Autodesk's, but it does work in AutoCAD 2011.&amp;nbsp; I do not think anyone ever got it working in AutoCAD 2012, and I tested in AutoCAD 2013 without success. Andre posted a 2012 version (1.5) in message #52 of this thread, but it had object model issues that never got fixed. The level of difficulty of his programming efforts was off the&amp;nbsp;charts, all I can do is thank him for his completed work - wonderful addition that hopefully Autodesk will eventually incorporate.&lt;/P&gt;</description>
    <pubDate>Tue, 10 Sep 2013 12:28:33 GMT</pubDate>
    <dc:creator>rapidcad</dc:creator>
    <dc:date>2013-09-10T12:28:33Z</dc:date>
    <item>
      <title>You gotta try visibility-add-eng-v1.1</title>
      <link>https://forums.autodesk.com/t5/dynamic-blocks-forum/you-gotta-try-visibility-add-eng-v1-1/m-p/2521041#M28577</link>
      <description>Ok, the instructions aren't the clearest, however, when you get the hang of &lt;BR /&gt;
it you'll love it.  Try to make my valve (attached) without using this lisp &lt;BR /&gt;
routine, you'll spend 10X longer.&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
Here are the steps I figured out:&lt;BR /&gt;
------------------------------------------------------------------------------&lt;BR /&gt;
Elements:&lt;BR /&gt;
Lines, arcs, splines, attributes, text, etc.&lt;BR /&gt;
&lt;BR /&gt;
1) Place all the elements.  The location doesn't matter at first, so make &lt;BR /&gt;
them easy to select by not stacking things on top of each other.&lt;BR /&gt;
&lt;BR /&gt;
2) Add all the parameters/actions you want - DO NOT add any visibility &lt;BR /&gt;
states or lookups yet.  Make sure your actions affect the things you want, &lt;BR /&gt;
and don't affect the things you don't want them to.&lt;BR /&gt;
&lt;BR /&gt;
3) Load visibility-add-eng.lsp.&lt;BR /&gt;
&lt;BR /&gt;
4) Add a visibility parameter using (visibility_add).  Rename the parameter &lt;BR /&gt;
accordingly.&lt;BR /&gt;
&lt;BR /&gt;
5) Set this new visibility parameter active using (visibility-up).  There is &lt;BR /&gt;
a little problem with the program here.  When you have one visibility &lt;BR /&gt;
parameter active and you set a new one active, it gets hung up.  Use the &lt;BR /&gt;
visibility state pulldown and select a state.  Note the command line will &lt;BR /&gt;
ask you for a visibility state.  Type ? to see those available, then type in &lt;BR /&gt;
any name you want.&lt;BR /&gt;
&lt;BR /&gt;
6) Add the states to the list of visibilities - DO NOT change the visibility &lt;BR /&gt;
of anything yet.&lt;BR /&gt;
&lt;BR /&gt;
7) Using (element-sel-current-del) select all the elements you do not want &lt;BR /&gt;
to be affected when you change this particular visibility state.&lt;BR /&gt;
For example:  If I'm working on the "actuator" visibility states, I don't &lt;BR /&gt;
want my valve type to change if a person wants to use a different actuator, &lt;BR /&gt;
therefore, I will select every element that is not an actuator.&lt;BR /&gt;
&lt;BR /&gt;
8) Now you can make elements visible or invisible in the states you've &lt;BR /&gt;
defined.  Do not bother changing the visibility of the elements you've &lt;BR /&gt;
removed.&lt;BR /&gt;
NOTE: if you draw a new object or copy something, it will not be removed &lt;BR /&gt;
from any visibility sets.&lt;BR /&gt;
&lt;BR /&gt;
9) Repeat steps 4 thru 8.&lt;BR /&gt;
-----------------------------------------------------------------------&lt;BR /&gt;
&lt;BR /&gt;
I did not list all the functions in this routine.  Many I don't even know &lt;BR /&gt;
how to use yet, or why.&lt;BR /&gt;
&lt;BR /&gt;
Todd</description>
      <pubDate>Fri, 10 Jul 2009 16:33:28 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/dynamic-blocks-forum/you-gotta-try-visibility-add-eng-v1-1/m-p/2521041#M28577</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2009-07-10T16:33:28Z</dc:date>
    </item>
    <item>
      <title>Re: You gotta try visibility-add-eng-v1.1</title>
      <link>https://forums.autodesk.com/t5/dynamic-blocks-forum/you-gotta-try-visibility-add-eng-v1-1/m-p/2521042#M28578</link>
      <description>This is really cool! There are so many blocks where I need multiple &lt;BR /&gt;
visibility states. I only discovered this two days ago and I've already &lt;BR /&gt;
started making more powerful DB's. I too have notice that you need to &lt;BR /&gt;
construct the DB in a very deliberate way for it to work, but once you &lt;BR /&gt;
figure that out its great!&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
Thank you,&lt;BR /&gt;
&lt;BR /&gt;
Jim Dee&lt;BR /&gt;
&lt;BR /&gt;
www.caddee.com&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
"T Bennett" &lt;TBENNETT&gt; wrote in message &lt;BR /&gt;
news:6216794@discussion.autodesk.com...&lt;BR /&gt;
Ok, the instructions aren't the clearest, however, when you get the hang of&lt;BR /&gt;
it you'll love it.  Try to make my valve (attached) without using this lisp&lt;BR /&gt;
routine, you'll spend 10X longer.&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
Here are the steps I figured out:&lt;BR /&gt;
------------------------------------------------------------------------------&lt;BR /&gt;
Elements:&lt;BR /&gt;
Lines, arcs, splines, attributes, text, etc.&lt;BR /&gt;
&lt;BR /&gt;
1) Place all the elements.  The location doesn't matter at first, so make&lt;BR /&gt;
them easy to select by not stacking things on top of each other.&lt;BR /&gt;
&lt;BR /&gt;
2) Add all the parameters/actions you want - DO NOT add any visibility&lt;BR /&gt;
states or lookups yet.  Make sure your actions affect the things you want,&lt;BR /&gt;
and don't affect the things you don't want them to.&lt;BR /&gt;
&lt;BR /&gt;
3) Load visibility-add-eng.lsp.&lt;BR /&gt;
&lt;BR /&gt;
4) Add a visibility parameter using (visibility_add).  Rename the parameter&lt;BR /&gt;
accordingly.&lt;BR /&gt;
&lt;BR /&gt;
5) Set this new visibility parameter active using (visibility-up).  There is&lt;BR /&gt;
a little problem with the program here.  When you have one visibility&lt;BR /&gt;
parameter active and you set a new one active, it gets hung up.  Use the&lt;BR /&gt;
visibility state pulldown and select a state.  Note the command line will&lt;BR /&gt;
ask you for a visibility state.  Type ? to see those available, then type in&lt;BR /&gt;
any name you want.&lt;BR /&gt;
&lt;BR /&gt;
6) Add the states to the list of visibilities - DO NOT change the visibility&lt;BR /&gt;
of anything yet.&lt;BR /&gt;
&lt;BR /&gt;
7) Using (element-sel-current-del) select all the elements you do not want&lt;BR /&gt;
to be affected when you change this particular visibility state.&lt;BR /&gt;
For example:  If I'm working on the "actuator" visibility states, I don't&lt;BR /&gt;
want my valve type to change if a person wants to use a different actuator,&lt;BR /&gt;
therefore, I will select every element that is not an actuator.&lt;BR /&gt;
&lt;BR /&gt;
8) Now you can make elements visible or invisible in the states you've&lt;BR /&gt;
defined.  Do not bother changing the visibility of the elements you've&lt;BR /&gt;
removed.&lt;BR /&gt;
NOTE: if you draw a new object or copy something, it will not be removed&lt;BR /&gt;
from any visibility sets.&lt;BR /&gt;
&lt;BR /&gt;
9) Repeat steps 4 thru 8.&lt;BR /&gt;
-----------------------------------------------------------------------&lt;BR /&gt;
&lt;BR /&gt;
I did not list all the functions in this routine.  Many I don't even know&lt;BR /&gt;
how to use yet, or why.&lt;BR /&gt;
&lt;BR /&gt;
Todd&lt;/TBENNETT&gt;</description>
      <pubDate>Fri, 10 Jul 2009 17:30:55 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/dynamic-blocks-forum/you-gotta-try-visibility-add-eng-v1-1/m-p/2521042#M28578</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2009-07-10T17:30:55Z</dc:date>
    </item>
    <item>
      <title>Re: You gotta try visibility-add-eng-v1.1</title>
      <link>https://forums.autodesk.com/t5/dynamic-blocks-forum/you-gotta-try-visibility-add-eng-v1-1/m-p/2521043#M28579</link>
      <description>Are you confident such modifications will survive in other versions of&lt;BR /&gt;
AutoCAD?  I glanced at the code which all seemed very confusing.&lt;BR /&gt;
I didn't spend enough time with it to determine what it is actually doing&lt;BR /&gt;
but I hope for the sake of your time, all your new and improved blocks&lt;BR /&gt;
don't fall apart or cause corruption.&lt;BR /&gt;
&lt;BR /&gt;
Good luck.&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
"T Bennett" &lt;TBENNETT&gt; wrote in message &lt;BR /&gt;
news:6216794@discussion.autodesk.com...&lt;BR /&gt;
Ok, the instructions aren't the clearest, however, when you get the hang of&lt;BR /&gt;
it you'll love it.&lt;/TBENNETT&gt;</description>
      <pubDate>Mon, 13 Jul 2009 14:37:04 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/dynamic-blocks-forum/you-gotta-try-visibility-add-eng-v1-1/m-p/2521043#M28579</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2009-07-13T14:37:04Z</dc:date>
    </item>
    <item>
      <title>Re: You gotta try visibility-add-eng-v1.1</title>
      <link>https://forums.autodesk.com/t5/dynamic-blocks-forum/you-gotta-try-visibility-add-eng-v1-1/m-p/2521044#M28580</link>
      <description>No problem.  At the pace our company upgrades, we shouldn't have to worry &lt;BR /&gt;
about it for about 10 years.&lt;BR /&gt;
&lt;BR /&gt;
Win XP Pro SP2&lt;BR /&gt;
P4 3.06&lt;BR /&gt;
AutoCAD 2006&lt;BR /&gt;
&lt;BR /&gt;
Todd&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
"Jason Piercey" &lt;JASON&gt; wrote in message &lt;BR /&gt;
news:6217508@discussion.autodesk.com...&lt;BR /&gt;
Are you confident such modifications will survive in other versions of&lt;BR /&gt;
AutoCAD?  I glanced at the code which all seemed very confusing.&lt;BR /&gt;
I didn't spend enough time with it to determine what it is actually doing&lt;BR /&gt;
but I hope for the sake of your time, all your new and improved blocks&lt;BR /&gt;
don't fall apart or cause corruption.&lt;BR /&gt;
&lt;BR /&gt;
Good luck.&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
"T Bennett" &lt;TBENNETT&gt; wrote in message&lt;BR /&gt;
news:6216794@discussion.autodesk.com...&lt;BR /&gt;
Ok, the instructions aren't the clearest, however, when you get the hang of&lt;BR /&gt;
it you'll love it.&lt;/TBENNETT&gt;&lt;/JASON&gt;</description>
      <pubDate>Mon, 20 Jul 2009 17:59:53 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/dynamic-blocks-forum/you-gotta-try-visibility-add-eng-v1-1/m-p/2521044#M28580</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2009-07-20T17:59:53Z</dc:date>
    </item>
    <item>
      <title>Re: You gotta try visibility-add-eng-v1.1</title>
      <link>https://forums.autodesk.com/t5/dynamic-blocks-forum/you-gotta-try-visibility-add-eng-v1-1/m-p/2521045#M28581</link>
      <description>The best solution is for AutoDesk to just add the flexibility of multiple &lt;BR /&gt;
visibility states.  Until then, I'm going with this.&lt;BR /&gt;
&lt;BR /&gt;
Is anyone using it in AutoCAD 2010 or later?&lt;BR /&gt;
&lt;BR /&gt;
Todd&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
"Jason Piercey" &lt;JASON&gt; wrote in message &lt;BR /&gt;
news:6217508@discussion.autodesk.com...&lt;BR /&gt;
Are you confident such modifications will survive in other versions of&lt;BR /&gt;
AutoCAD?  I glanced at the code which all seemed very confusing.&lt;BR /&gt;
I didn't spend enough time with it to determine what it is actually doing&lt;BR /&gt;
but I hope for the sake of your time, all your new and improved blocks&lt;BR /&gt;
don't fall apart or cause corruption.&lt;BR /&gt;
&lt;BR /&gt;
Good luck.&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
"T Bennett" &lt;TBENNETT&gt; wrote in message&lt;BR /&gt;
news:6216794@discussion.autodesk.com...&lt;BR /&gt;
Ok, the instructions aren't the clearest, however, when you get the hang of&lt;BR /&gt;
it you'll love it.&lt;/TBENNETT&gt;&lt;/JASON&gt;</description>
      <pubDate>Mon, 20 Jul 2009 23:17:44 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/dynamic-blocks-forum/you-gotta-try-visibility-add-eng-v1-1/m-p/2521045#M28581</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2009-07-20T23:17:44Z</dc:date>
    </item>
    <item>
      <title>Re: You gotta try visibility-add-eng-v1.1</title>
      <link>https://forums.autodesk.com/t5/dynamic-blocks-forum/you-gotta-try-visibility-add-eng-v1-1/m-p/2521046#M28582</link>
      <description>In AutoCAD 2010 it is OK.&lt;BR /&gt;
I'm preparing visibility-add-eng-v1.2 where some inaccuracies will be removed.</description>
      <pubDate>Tue, 21 Jul 2009 06:14:43 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/dynamic-blocks-forum/you-gotta-try-visibility-add-eng-v1-1/m-p/2521046#M28582</guid>
      <dc:creator>NikolayPoleshchuk</dc:creator>
      <dc:date>2009-07-21T06:14:43Z</dc:date>
    </item>
    <item>
      <title>Re: You gotta try visibility-add-eng-v1.1</title>
      <link>https://forums.autodesk.com/t5/dynamic-blocks-forum/you-gotta-try-visibility-add-eng-v1-1/m-p/2521047#M28583</link>
      <description>Version 1.2 is added. See commentary here: http://poleshchuk.spb.ru/cad/2009/tainypod12e.htm</description>
      <pubDate>Tue, 28 Jul 2009 09:29:17 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/dynamic-blocks-forum/you-gotta-try-visibility-add-eng-v1-1/m-p/2521047#M28583</guid>
      <dc:creator>NikolayPoleshchuk</dc:creator>
      <dc:date>2009-07-28T09:29:17Z</dc:date>
    </item>
    <item>
      <title>Re: You gotta try visibility-add-eng-v1.1</title>
      <link>https://forums.autodesk.com/t5/dynamic-blocks-forum/you-gotta-try-visibility-add-eng-v1-1/m-p/2521048#M28584</link>
      <description>Cool, I'll try it when I get a chance.&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
&lt;NIKOLAYPOLESHCHUK&gt; wrote in message news:6225878@discussion.autodesk.com...&lt;BR /&gt;
Version 1.2 is added. See commentary here: &lt;BR /&gt;
http://poleshchuk.spb.ru/cad/2009/tainypod12e.htm&lt;/NIKOLAYPOLESHCHUK&gt;</description>
      <pubDate>Fri, 31 Jul 2009 12:11:35 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/dynamic-blocks-forum/you-gotta-try-visibility-add-eng-v1-1/m-p/2521048#M28584</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2009-07-31T12:11:35Z</dc:date>
    </item>
    <item>
      <title>Re: You gotta try visibility-add-eng-v1.1</title>
      <link>https://forums.autodesk.com/t5/dynamic-blocks-forum/you-gotta-try-visibility-add-eng-v1-1/m-p/2521049#M28585</link>
      <description>Hello,&lt;BR /&gt;
&lt;BR /&gt;
This is what I was looking for!&lt;BR /&gt;
&lt;BR /&gt;
well, I have some doubts. still cannot make this work. &lt;BR /&gt;
&lt;BR /&gt;
after I add a visibility with visibility_add, what should I do? &lt;BR /&gt;
&lt;BR /&gt;
if I try to use the visibility up, I can not select the visibility parameter that I added before. &lt;BR /&gt;
&lt;BR /&gt;
if I try to add another parameter visibility, the program returns error. &lt;BR /&gt;
&lt;BR /&gt;
what am I doing wrong?&lt;BR /&gt;
&lt;BR /&gt;
I sending the file that I'm working. I want select what the elements in the legend I want.&lt;BR /&gt;
&lt;BR /&gt;
Sorry for the errors, I'm brazilian and I don't speak english very well. Google Translate help me #)

Edited by: rafa.fiss on Jul 31, 2009 5:58 PM</description>
      <pubDate>Fri, 31 Jul 2009 17:57:39 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/dynamic-blocks-forum/you-gotta-try-visibility-add-eng-v1-1/m-p/2521049#M28585</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2009-07-31T17:57:39Z</dc:date>
    </item>
    <item>
      <title>Re: You gotta try visibility-add-eng-v1.1</title>
      <link>https://forums.autodesk.com/t5/dynamic-blocks-forum/you-gotta-try-visibility-add-eng-v1-1/m-p/2521050#M28586</link>
      <description>AutoCAD sees only one visibilty parameter in the Block Editor while editing its visibility states. This parameter is at the top of an internal vis-parameters list.&lt;BR /&gt;
So you cannot edit visibility parameter until it becames up on the top in the block definition. If you want to do something with a parameter you should first make it uppest (use visibility-up) and only then edit it. After that you can put another vis-parameter to the top (use visibility-up again but pick another parameter) and then edit it.&lt;BR /&gt;
And so on.</description>
      <pubDate>Sat, 01 Aug 2009 08:20:02 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/dynamic-blocks-forum/you-gotta-try-visibility-add-eng-v1-1/m-p/2521050#M28586</guid>
      <dc:creator>NikolayPoleshchuk</dc:creator>
      <dc:date>2009-08-01T08:20:02Z</dc:date>
    </item>
    <item>
      <title>Re: You gotta try visibility-add-eng-v1.1</title>
      <link>https://forums.autodesk.com/t5/dynamic-blocks-forum/you-gotta-try-visibility-add-eng-v1-1/m-p/2521051#M28587</link>
      <description>My only question is, if you figured this out, why couldn't Autodesk?</description>
      <pubDate>Wed, 19 Aug 2009 15:07:44 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/dynamic-blocks-forum/you-gotta-try-visibility-add-eng-v1-1/m-p/2521051#M28587</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2009-08-19T15:07:44Z</dc:date>
    </item>
    <item>
      <title>Re: You gotta try visibility-add-eng-v1.1</title>
      <link>https://forums.autodesk.com/t5/dynamic-blocks-forum/you-gotta-try-visibility-add-eng-v1-1/m-p/2521052#M28588</link>
      <description>Autodesk knows about this improvement. But they say that the problem is not in their nearest plans.</description>
      <pubDate>Thu, 20 Aug 2009 02:26:30 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/dynamic-blocks-forum/you-gotta-try-visibility-add-eng-v1-1/m-p/2521052#M28588</guid>
      <dc:creator>NikolayPoleshchuk</dc:creator>
      <dc:date>2009-08-20T02:26:30Z</dc:date>
    </item>
    <item>
      <title>Re: You gotta try visibility-add-eng-v1.1</title>
      <link>https://forums.autodesk.com/t5/dynamic-blocks-forum/you-gotta-try-visibility-add-eng-v1-1/m-p/2521053#M28589</link>
      <description>&lt;P&gt;
I love the sound of this lisp, it's exactly what I've been looking for but I can't get it to work.&lt;BR /&gt;
I can add a visibility parameter using (visibility_add) which it does but with errors;&lt;BR /&gt;
&lt;BR /&gt;
{color:#3366ff}Command: _appload visibility-add-eng.lsp successfully loaded.&lt;BR /&gt;
Command:&lt;BR /&gt;
Command:&lt;BR /&gt;
Command: (visibility_add)&lt;BR /&gt;
Select point for placing Visibility Set: _.BParameter&lt;BR /&gt;
Enter parameter type &lt;BR /&gt;
[Alignment/Base/pOint/Linear/Polar/Xy/Rotation/Flip/Visibility/looKup]: _V&lt;BR /&gt;
Specify parameter location or [Name/Label/Description/Palette]: _L&lt;BR /&gt;
Enter visibility property label : Visibility-1&lt;BR /&gt;
Specify parameter location or [Name/Label/Description/Palette]:&lt;BR /&gt;
Enter number of grips [0/1] &amp;lt;1&amp;gt;:&lt;BR /&gt;
Command: _.BSAVE&lt;BR /&gt;
Command: ; error: quit / exit abort&lt;BR /&gt;
&lt;BR /&gt;
{color:#000000}I then rename the parameter as in step 4. And try to set the new parameter active using (visibility-up) but I get the following error;&lt;BR /&gt;
{color}&lt;BR /&gt;
Command: (visibility-up)&lt;BR /&gt;
Select required Visibility Set: ; error: bad argument type: numberp: nil&lt;BR /&gt;
{color}
&lt;/P&gt;
&lt;BR /&gt;
Am I missing something?&lt;BR /&gt;
&lt;BR /&gt;
I am using AutoCAD 2010.&lt;BR /&gt;
&lt;BR /&gt;
Any help would be greatly appreciated.&lt;BR /&gt;
&lt;BR /&gt;
Thanks.&lt;BR /&gt;
&lt;BR /&gt;
Gemma</description>
      <pubDate>Tue, 25 Aug 2009 04:10:56 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/dynamic-blocks-forum/you-gotta-try-visibility-add-eng-v1-1/m-p/2521053#M28589</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2009-08-25T04:10:56Z</dc:date>
    </item>
    <item>
      <title>Re: You gotta try visibility-add-eng-v1.1</title>
      <link>https://forums.autodesk.com/t5/dynamic-blocks-forum/you-gotta-try-visibility-add-eng-v1-1/m-p/2521054#M28590</link>
      <description>&lt;DIV id="jive-html-wrapper-div"&gt;
&lt;BR /&gt;
&lt;DIV&gt;&lt;FONT face="Arial" size="2"&gt;I guess the guy made a &lt;BR /&gt;
visibility-add-eng-v1.2.&amp;nbsp; Are you using this or&amp;nbsp;version &lt;BR /&gt;
1.1?&lt;/FONT&gt;&lt;/DIV&gt;&lt;BR /&gt;
&lt;DIV&gt;&lt;FONT face="Arial" size="2"&gt;&lt;/FONT&gt;&amp;nbsp;&lt;/DIV&gt;&lt;BR /&gt;
&lt;DIV&gt;&lt;FONT face="Arial" size="2"&gt;I used&amp;nbsp;version 1.1&amp;nbsp;on AutoCAD 2006 with &lt;BR /&gt;
no problems.&amp;nbsp; We have recently&amp;nbsp;upgraded to&amp;nbsp;2008, but I haven't &lt;BR /&gt;
tried either version since.&amp;nbsp; However, Nikolay Poleshchuk said it worked &lt;BR /&gt;
with 2010.&lt;/FONT&gt;&lt;/DIV&gt;&lt;BR /&gt;
&lt;DIV&gt;&lt;FONT face="Arial" size="2"&gt;&lt;/FONT&gt;&amp;nbsp;&lt;/DIV&gt;&lt;BR /&gt;
&lt;DIV&gt;&lt;FONT face="Arial" size="2"&gt;P.S. I snipped this from a previous &lt;BR /&gt;
post:&lt;/FONT&gt;&lt;/DIV&gt;&lt;BR /&gt;
&lt;DIV&gt;&lt;FONT face="Arial" size="2"&gt;&amp;lt;&amp;lt;&lt;/FONT&gt;Instructions for using are given in &lt;BR /&gt;
English at the bottom of the page (6 steps):&amp;gt;&amp;gt;&lt;/DIV&gt;&lt;BR /&gt;
&lt;DIV&gt;&amp;lt;&amp;lt;&lt;A&gt;&lt;BR /&gt;
href="http://www.private.peterlink.ru/poleshchuk/cad/2009/tainypod12e.htm#moveProps"&amp;gt;http://www.private.peterlink.ru/poleshchuk/cad/2009/tainypod12e.htm#moveProps&lt;/A&gt;&lt;FONT&gt;&lt;BR /&gt;
face=Arial size=2&amp;gt;&amp;gt;&amp;gt;&lt;/FONT&gt;&lt;/DIV&gt;&lt;BR /&gt;
&lt;DIV&gt;&lt;FONT face="Arial" size="2"&gt;&lt;/FONT&gt;&amp;nbsp;&lt;/DIV&gt;&lt;BR /&gt;
&lt;DIV&gt;&lt;FONT face="Arial" size="2"&gt;The instructions could be better, but there's a &lt;BR /&gt;
lost-in-translation thing, I'm sure.&lt;/FONT&gt;&lt;/DIV&gt;&lt;BR /&gt;
&lt;DIV&gt;&lt;FONT face="Arial" size="2"&gt;&lt;/FONT&gt;&amp;nbsp;&lt;/DIV&gt;&lt;BR /&gt;
&lt;DIV&gt;&lt;FONT face="Arial" size="2"&gt;Todd&lt;/FONT&gt;&lt;/DIV&gt;&lt;BR /&gt;
&lt;BLOCKQUOTE&gt;&lt;BR /&gt;
style="PADDING-RIGHT: 0px; PADDING-LEFT: 5px; MARGIN-LEFT: 5px; BORDER-LEFT: #000000 2px solid; MARGIN-RIGHT: 0px"&amp;gt;&lt;BR /&gt;
  &lt;DIV&gt;&amp;lt;GemT&amp;gt; wrote in message &lt;A&gt;&lt;BR /&gt;
  href="news:6242557@discussion.autodesk.com"&amp;gt;news:6242557@discussion.autodesk.com&lt;/A&gt;...&lt;/DIV&gt;&lt;BR /&gt;
  &lt;P&gt;I love the sound of this lisp, it's exactly what I've been looking for but &lt;BR /&gt;
  I can't get it to work.&lt;BR /&gt;I can add a visibility parameter using &lt;BR /&gt;
  (visibility_add) which it does but with errors;&lt;BR /&gt;&lt;BR /&gt;{color:#3366ff}Command: &lt;BR /&gt;
  _appload visibility-add-eng.lsp successfully &lt;BR /&gt;
  loaded.&lt;BR /&gt;Command:&lt;BR /&gt;Command:&lt;BR /&gt;Command: (visibility_add)&lt;BR /&gt;Select point &lt;BR /&gt;
  for placing Visibility Set: _.BParameter&lt;BR /&gt;Enter parameter type &lt;BR /&gt;
  &lt;BR /&gt;[Alignment/Base/pOint/Linear/Polar/Xy/Rotation/Flip/Visibility/looKup]: &lt;BR /&gt;
  _V&lt;BR /&gt;Specify parameter location or [Name/Label/Description/Palette]: &lt;BR /&gt;
  _L&lt;BR /&gt;Enter visibility property label : Visibility-1&lt;BR /&gt;Specify parameter &lt;BR /&gt;
  location or [Name/Label/Description/Palette]:&lt;BR /&gt;Enter number of grips [0/1] &lt;BR /&gt;
  &amp;lt;1&amp;gt;:&lt;BR /&gt;Command: _.BSAVE&lt;BR /&gt;Command: ; error: quit / exit &lt;BR /&gt;
  abort&lt;BR /&gt;&lt;BR /&gt;{color:#000000}I then rename the parameter as in step 4. And try &lt;BR /&gt;
  to set the new parameter active using (visibility-up) but I get the following &lt;BR /&gt;
  error;&lt;BR /&gt;{color}&lt;BR /&gt;Command: (visibility-up)&lt;BR /&gt;Select required Visibility &lt;BR /&gt;
  Set: ; error: bad argument type: numberp: nil&lt;BR /&gt;{color} &lt;/P&gt;&lt;BR /&gt;Am I missing &lt;BR /&gt;
  something?&lt;BR /&gt;&lt;BR /&gt;I am using AutoCAD 2010.&lt;BR /&gt;&lt;BR /&gt;Any help would be greatly &lt;BR /&gt;
  appreciated.&lt;BR /&gt;&lt;BR /&gt;Thanks.&lt;BR /&gt;&lt;BR /&gt;Gemma&lt;/BLOCKQUOTE&gt;
&lt;/DIV&gt;</description>
      <pubDate>Tue, 25 Aug 2009 17:27:46 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/dynamic-blocks-forum/you-gotta-try-visibility-add-eng-v1-1/m-p/2521054#M28590</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2009-08-25T17:27:46Z</dc:date>
    </item>
    <item>
      <title>Re: You gotta try visibility-add-eng-v1.1</title>
      <link>https://forums.autodesk.com/t5/dynamic-blocks-forum/you-gotta-try-visibility-add-eng-v1-1/m-p/2521055#M28591</link>
      <description>Ok I got it to work. It was the way I was opening the block in the block editor. I was inserting the block into a dwg and editing it that way when I should have opened the actual block file.&lt;BR /&gt;
&lt;BR /&gt;
 Anyway I have another problem now. All my elements have disappeared??? I set all my visibility parameters up, tested it, all worked ok then closed the block editor (after saving etc). Then went to reopen it and all the elements that I removed in each visibility parameter had disappeared. How can I get them back. They don't appear if I insert the block into a drawing either.&lt;BR /&gt;
&lt;BR /&gt;
Help.&lt;BR /&gt;
&lt;BR /&gt;
Gemma</description>
      <pubDate>Thu, 27 Aug 2009 02:01:10 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/dynamic-blocks-forum/you-gotta-try-visibility-add-eng-v1-1/m-p/2521055#M28591</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2009-08-27T02:01:10Z</dc:date>
    </item>
    <item>
      <title>Re: You gotta try visibility-add-eng-v1.1</title>
      <link>https://forums.autodesk.com/t5/dynamic-blocks-forum/you-gotta-try-visibility-add-eng-v1-1/m-p/2521056#M28592</link>
      <description>Well I got around that by deleting all the vp's and starting again...lets try again.&lt;BR /&gt;
&lt;BR /&gt;
Gemma</description>
      <pubDate>Thu, 27 Aug 2009 04:13:48 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/dynamic-blocks-forum/you-gotta-try-visibility-add-eng-v1-1/m-p/2521056#M28592</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2009-08-27T04:13:48Z</dc:date>
    </item>
    <item>
      <title>Re: You gotta try visibility-add-eng-v1.1</title>
      <link>https://forums.autodesk.com/t5/dynamic-blocks-forum/you-gotta-try-visibility-add-eng-v1-1/m-p/2521057#M28593</link>
      <description>&lt;DIV id="jive-html-wrapper-div"&gt;
&lt;BR /&gt;
&lt;DIV&gt;&lt;FONT face="Arial" size="2"&gt;Sorry dude.&amp;nbsp; I can't say I'm an expert by any &lt;BR /&gt;
stretch.&amp;nbsp; I made one that works great, but when I tried to modify it later, &lt;BR /&gt;
it wouldn't work.&amp;nbsp; Of course I made it in 2006 using v1.1 and tried to &lt;BR /&gt;
modify it in 2008 using v1.2.&amp;nbsp; I haven't had time to mess with it &lt;BR /&gt;
since.&lt;/FONT&gt;&lt;/DIV&gt;&lt;BR /&gt;
&lt;DIV&gt;&lt;FONT face="Arial" size="2"&gt;&lt;/FONT&gt;&amp;nbsp;&lt;/DIV&gt;&lt;BR /&gt;
&lt;DIV&gt;&lt;FONT face="Arial" size="2"&gt;I believe that one of the sub routines needs to be &lt;BR /&gt;
run before you start.&lt;/FONT&gt;&lt;/DIV&gt;&lt;BR /&gt;
&lt;BLOCKQUOTE&gt;&lt;BR /&gt;
style="PADDING-RIGHT: 0px; PADDING-LEFT: 5px; MARGIN-LEFT: 5px; BORDER-LEFT: #000000 2px solid; MARGIN-RIGHT: 0px"&amp;gt;&lt;BR /&gt;
  &lt;DIV&gt;&amp;lt;GemT&amp;gt; wrote in message &lt;A&gt;&lt;BR /&gt;
  href="news:6244223@discussion.autodesk.com"&amp;gt;news:6244223@discussion.autodesk.com&lt;/A&gt;...&lt;/DIV&gt;Well &lt;BR /&gt;
  I got around that by deleting all the vp's and starting again...lets try &lt;BR /&gt;
  again.&lt;BR /&gt;&lt;BR /&gt;Gemma&lt;/BLOCKQUOTE&gt;
&lt;/DIV&gt;</description>
      <pubDate>Thu, 03 Sep 2009 20:37:34 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/dynamic-blocks-forum/you-gotta-try-visibility-add-eng-v1-1/m-p/2521057#M28593</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2009-09-03T20:37:34Z</dc:date>
    </item>
    <item>
      <title>Re: You gotta try visibility-add-eng-v1.1</title>
      <link>https://forums.autodesk.com/t5/dynamic-blocks-forum/you-gotta-try-visibility-add-eng-v1-1/m-p/2521058#M28594</link>
      <description>Hi, I managed to get this lisp going on my first attempt and was impressed with what it can do. &lt;BR /&gt;
&lt;BR /&gt;
I have a couple of questions about it &lt;BR /&gt;
&lt;BR /&gt;
1) After running it successfully the first time I have since discovered that 9 times out of 10 when I run visibility_add it asks me to select the point for the visibility set and when I click on the spot I want it fails with the error &lt;BR /&gt;
&lt;BR /&gt;
"; error: bad argument type: lentityp &lt;BR /&gt;
nil" &lt;BR /&gt;
&lt;BR /&gt;
Any idea what is causing this? &lt;BR /&gt;
&lt;BR /&gt;
2) If I already have an existing block with a visibility set and I want to expand on it by adding a second visibility parameter what do I need to do? It seems that I can't keep an existing visibility parameter and add more with this lisp?</description>
      <pubDate>Sun, 06 Sep 2009 04:09:42 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/dynamic-blocks-forum/you-gotta-try-visibility-add-eng-v1-1/m-p/2521058#M28594</guid>
      <dc:creator>nbawden</dc:creator>
      <dc:date>2009-09-06T04:09:42Z</dc:date>
    </item>
    <item>
      <title>Re: You gotta try visibility-add-eng-v1.1</title>
      <link>https://forums.autodesk.com/t5/dynamic-blocks-forum/you-gotta-try-visibility-add-eng-v1-1/m-p/2521059#M28595</link>
      <description>Sorry, you've long since tapped my knowledge of this program.&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
&lt;NBAWDEN&gt; wrote in message news:6249912@discussion.autodesk.com...&lt;BR /&gt;
Hi, I managed to get this lisp going on my first attempt and was impressed &lt;BR /&gt;
with what it can do.&lt;BR /&gt;
&lt;BR /&gt;
I have a couple of questions about it&lt;BR /&gt;
&lt;BR /&gt;
1) After running it successfully the first time I have since discovered that &lt;BR /&gt;
9 times out of 10 when I run visibility_add it asks me to select the point &lt;BR /&gt;
for the visibility set and when I click on the spot I want it fails with the &lt;BR /&gt;
error&lt;BR /&gt;
&lt;BR /&gt;
"; error: bad argument type: lentityp&lt;BR /&gt;
nil"&lt;BR /&gt;
&lt;BR /&gt;
Any idea what is causing this?&lt;BR /&gt;
&lt;BR /&gt;
2) If I already have an existing block with a visibility set and I want to &lt;BR /&gt;
expand on it by adding a second visibility parameter what do I need to do? &lt;BR /&gt;
It seems that I can't keep an existing visibility parameter and add more &lt;BR /&gt;
with this lisp?&lt;/NBAWDEN&gt;</description>
      <pubDate>Wed, 09 Sep 2009 15:51:30 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/dynamic-blocks-forum/you-gotta-try-visibility-add-eng-v1-1/m-p/2521059#M28595</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2009-09-09T15:51:30Z</dc:date>
    </item>
    <item>
      <title>Re: You gotta try visibility-add-eng-v1.1</title>
      <link>https://forums.autodesk.com/t5/dynamic-blocks-forum/you-gotta-try-visibility-add-eng-v1-1/m-p/2521060#M28596</link>
      <description>&lt;P&gt;
Try version 1.3: &lt;A href="http://www.private.peterlink.ru/poleshchuk/cad/2009/tainypod12e.htm"&gt;http://www.private.peterlink.ru/poleshchuk/cad/2009/tainypod12e.htm&lt;/A&gt;
&lt;/P&gt;</description>
      <pubDate>Sun, 25 Oct 2009 07:41:19 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/dynamic-blocks-forum/you-gotta-try-visibility-add-eng-v1-1/m-p/2521060#M28596</guid>
      <dc:creator>NikolayPoleshchuk</dc:creator>
      <dc:date>2009-10-25T07:41:19Z</dc:date>
    </item>
  </channel>
</rss>

