<?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 Using SYMB_POS_X in Libraries &amp; objects</title>
    <link>https://community.graphisoft.com/t5/Libraries-objects/Using-SYMB-POS-X/m-p/73716#M40551</link>
    <description>&lt;DIV class="actalk-migrated-content"&gt;&lt;R&gt;So if in the parameters script I have:&lt;BR /&gt;

&lt;PRE&gt;n = REQUEST("SYMB_POS_X", xorgn)&lt;/PRE&gt;

Shouldnt the object get it's origin in the X axis relative to the model origin and place that numeric value in the parameter "xorgn"?&lt;BR /&gt;
&lt;BR /&gt;
I've been playing around with this global and havent had much sucess.&lt;/R&gt;&lt;/DIV&gt;</description>
    <pubDate>Mon, 21 Jun 2004 20:13:04 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2004-06-21T20:13:04Z</dc:date>
    <item>
      <title>Using SYMB_POS_X</title>
      <link>https://community.graphisoft.com/t5/Libraries-objects/Using-SYMB-POS-X/m-p/73716#M40551</link>
      <description>&lt;DIV class="actalk-migrated-content"&gt;&lt;R&gt;So if in the parameters script I have:&lt;BR /&gt;

&lt;PRE&gt;n = REQUEST("SYMB_POS_X", xorgn)&lt;/PRE&gt;

Shouldnt the object get it's origin in the X axis relative to the model origin and place that numeric value in the parameter "xorgn"?&lt;BR /&gt;
&lt;BR /&gt;
I've been playing around with this global and havent had much sucess.&lt;/R&gt;&lt;/DIV&gt;</description>
      <pubDate>Mon, 21 Jun 2004 20:13:04 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/Libraries-objects/Using-SYMB-POS-X/m-p/73716#M40551</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2004-06-21T20:13:04Z</dc:date>
    </item>
    <item>
      <title>Re: Using SYMB_POS_X</title>
      <link>https://community.graphisoft.com/t5/Libraries-objects/Using-SYMB-POS-X/m-p/73717#M40552</link>
      <description>Sean,&lt;BR /&gt;
&lt;BR /&gt;
You don't need the Request function. &lt;BR /&gt;
&lt;BR /&gt;
&lt;B&gt;SYMB_POS_X&lt;/B&gt; is the global that contains the value you are looking for.</description>
      <pubDate>Mon, 21 Jun 2004 22:47:18 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/Libraries-objects/Using-SYMB-POS-X/m-p/73717#M40552</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2004-06-21T22:47:18Z</dc:date>
    </item>
    <item>
      <title>Re: Using SYMB_POS_X</title>
      <link>https://community.graphisoft.com/t5/Libraries-objects/Using-SYMB-POS-X/m-p/73718#M40553</link>
      <description>I thought so, however, when I use it in conjunction with a print command in the 2D script, I keep getting a return of 0.&lt;BR /&gt;
&lt;BR /&gt;
You would think that I could create a length parameter and assign that global value to it like so:&lt;BR /&gt;

&lt;PRE&gt;PARAMETERS x1 = SYMB_POS_X&lt;/PRE&gt;

but for some reason I always get null values even when in plan.&lt;BR /&gt;
&lt;BR /&gt;
Basically I want the object (in this case a beam) to report the coordinates in plan view of each corner.</description>
      <pubDate>Tue, 22 Jun 2004 15:31:08 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/Libraries-objects/Using-SYMB-POS-X/m-p/73718#M40553</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2004-06-22T15:31:08Z</dc:date>
    </item>
    <item>
      <title>Re: Using SYMB_POS_X</title>
      <link>https://community.graphisoft.com/t5/Libraries-objects/Using-SYMB-POS-X/m-p/73719#M40554</link>
      <description>&lt;BLOCKQUOTE&gt;Sean wrote:&lt;BR /&gt;I thought so, however, when I use it in conjunction with a print command in the 2D script, I keep getting a return of 0.&lt;/BLOCKQUOTE&gt;
Try the following test in the 2D script:
&lt;PRE&gt;TEXT2 0, 0, SYMB_POS_X&lt;/PRE&gt;

&lt;BLOCKQUOTE&gt;Sean wrote:&lt;BR /&gt;You would think that I could create a length parameter and assign that global value to it like so: &lt;PRE&gt;PARAMETERS x1 = SYMB_POS_X&lt;/PRE&gt;
but for some reason I always get null values even when in plan.&lt;/BLOCKQUOTE&gt;
Using the PARAMETERS statement alone doesn't set the value of the variable. Try the following:
&lt;PRE&gt;PARAMETERS x1 = SYMB_POS_X
x1 = SYMB_POS_X&lt;/PRE&gt;</description>
      <pubDate>Tue, 22 Jun 2004 16:54:49 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/Libraries-objects/Using-SYMB-POS-X/m-p/73719#M40554</guid>
      <dc:creator>Ralph Wessel</dc:creator>
      <dc:date>2004-06-22T16:54:49Z</dc:date>
    </item>
    <item>
      <title>Re: Using SYMB_POS_X</title>
      <link>https://community.graphisoft.com/t5/Libraries-objects/Using-SYMB-POS-X/m-p/73720#M40555</link>
      <description>Interesting.......&lt;BR /&gt;

&lt;PRE&gt;&lt;I&gt;
&lt;/I&gt;mark1 = STR("%0.16ffi",SYMB_POS_X)
mark2 = STR("%0.16ffi",SYMB_POS_Y)
mark = mark1 + "," + mark2
xorgnstr = mark1
yorgnstr = mark2&lt;/PRE&gt;

This at least created the text in the plan view but it still does not place this information in the text parameters (xorgnstr, yorgnstr). I've done different things in the master, 2D and parameter scripts to no avail.</description>
      <pubDate>Tue, 22 Jun 2004 21:27:29 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/Libraries-objects/Using-SYMB-POS-X/m-p/73720#M40555</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2004-06-22T21:27:29Z</dc:date>
    </item>
    <item>
      <title>Re: Using SYMB_POS_X</title>
      <link>https://community.graphisoft.com/t5/Libraries-objects/Using-SYMB-POS-X/m-p/73721#M40556</link>
      <description>It's a bug. X~, Y~, and Z~ (SYMB_POS_X, _Y, _Z) all return zero in any context except the 2D and 3D window. That means, no reaction in the settings dialog, and no Listing X,Y positions of objects. They're 'working on it'.&lt;BR /&gt;
&lt;BR /&gt;
I was trying to get my tree objects to list their locations with respect to a grid... works perfectly, except for those pesky zeroes! Waiting for the fix.&lt;BR /&gt;
&lt;BR /&gt;
(Thanks to F. Beister who clued me in when I asked the same thing on GDL Talk last month.)</description>
      <pubDate>Wed, 23 Jun 2004 00:32:19 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/Libraries-objects/Using-SYMB-POS-X/m-p/73721#M40556</guid>
      <dc:creator>James Murray</dc:creator>
      <dc:date>2004-06-23T00:32:19Z</dc:date>
    </item>
    <item>
      <title>Re: Using SYMB_POS_X</title>
      <link>https://community.graphisoft.com/t5/Libraries-objects/Using-SYMB-POS-X/m-p/73722#M40557</link>
      <description>&lt;BLOCKQUOTE&gt;James wrote:&lt;BR /&gt;It's a bug. X~, Y~, and Z~ (SYMB_POS_X, _Y, _Z) all return zero in any context except the 2D and 3D window. That means, no reaction in the settings dialog, and no Listing X,Y positions of objects. They're 'working on it'.&lt;/BLOCKQUOTE&gt;

BAH! That figures.</description>
      <pubDate>Wed, 23 Jun 2004 18:26:33 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/Libraries-objects/Using-SYMB-POS-X/m-p/73722#M40557</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2004-06-23T18:26:33Z</dc:date>
    </item>
    <item>
      <title>Re: Using SYMB_POS_X</title>
      <link>https://community.graphisoft.com/t5/Libraries-objects/Using-SYMB-POS-X/m-p/73723#M40558</link>
      <description>No, it's not a bug!&lt;BR /&gt;
It's the feature &lt;IMG src="https://community.graphisoft.com/legacyfs/online/emojis/icon_biggrin.gif" style="display : inline;" /&gt;  &lt;BR /&gt;
&lt;BR /&gt;
The way it works: create component, which contains SYMB_POS_X and then get it by lister</description>
      <pubDate>Wed, 30 Jun 2004 22:27:59 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/Libraries-objects/Using-SYMB-POS-X/m-p/73723#M40558</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2004-06-30T22:27:59Z</dc:date>
    </item>
    <item>
      <title>Re: Using SYMB_POS_X</title>
      <link>https://community.graphisoft.com/t5/Libraries-objects/Using-SYMB-POS-X/m-p/73724#M40559</link>
      <description>&lt;BLOCKQUOTE&gt;Skywalker wrote:&lt;BR /&gt;No, it's not a bug!&lt;BR /&gt;
It's the feature &lt;IMG src="https://community.graphisoft.com/legacyfs/online/emojis/icon_biggrin.gif" style="display : inline;" /&gt;  &lt;BR /&gt;
&lt;BR /&gt;
The way it works: create component, which contains SYMB_POS_X and then get it by lister&lt;/BLOCKQUOTE&gt;

"Luke"&lt;BR /&gt;
I'm so frustrated in trying to get symbol positions to report in interactive schedules that I can't tell if your comment &lt;B&gt;"..It's the feature..."&lt;/B&gt; is serious or sarcasm.&lt;BR /&gt;
&lt;BR /&gt;
If it is serious, can you please explain a little more in detail how it works?&lt;BR /&gt;
&lt;BR /&gt;
thanks,&lt;BR /&gt;
Dan K</description>
      <pubDate>Mon, 13 Dec 2004 17:05:06 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/Libraries-objects/Using-SYMB-POS-X/m-p/73724#M40559</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2004-12-13T17:05:06Z</dc:date>
    </item>
    <item>
      <title>Re: Using SYMB_POS_X</title>
      <link>https://community.graphisoft.com/t5/Libraries-objects/Using-SYMB-POS-X/m-p/73725#M40560</link>
      <description>5 years later and this is still a bug. Ugh.&lt;BR /&gt;
&lt;BR /&gt;
Trying to write a simple library part to send X,Y coordinates to a schedule.&lt;BR /&gt;
I can get the coordinates to show up in plan view, but not in the schedule.&lt;BR /&gt;
&lt;BR /&gt;
Has anybody discovered a work-around?</description>
      <pubDate>Wed, 10 Jun 2009 17:48:14 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/Libraries-objects/Using-SYMB-POS-X/m-p/73725#M40560</guid>
      <dc:creator>Stuart Smith</dc:creator>
      <dc:date>2009-06-10T17:48:14Z</dc:date>
    </item>
  </channel>
</rss>

