<?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: SYMB_POS_X   SYMB_POS_Y in Libraries &amp; objects</title>
    <link>https://community.graphisoft.com/t5/Libraries-objects/SYMB-POS-X-SYMB-POS-Y/m-p/32740#M30001</link>
    <description>I don't think GLOB_WORLD_ORIGO_OFFSET_X will help. If you try to use your both parameters in parameter script context: No chance. They are empty in this context.&lt;BR /&gt;
&lt;BR /&gt;
If you designed a fill by DEFINE FILL I recommend to use it with project origin, because DEFINE FILL creates ONE fill pattern, which is defined by the last object instance of the project file, which was executed. If you use more than one of this objects placed in your project, the fill origin will change out of control. You could define fill parameters named by the object-GUID, but this will mess up your fill pattern fly out.&lt;BR /&gt;
&lt;BR /&gt;
Would be helpful, you would post a script a screenshot.</description>
    <pubDate>Thu, 13 Sep 2007 06:03:20 GMT</pubDate>
    <dc:creator>Frank Beister</dc:creator>
    <dc:date>2007-09-13T06:03:20Z</dc:date>
    <item>
      <title>SYMB_POS_X   SYMB_POS_Y</title>
      <link>https://community.graphisoft.com/t5/Libraries-objects/SYMB-POS-X-SYMB-POS-Y/m-p/32738#M29999</link>
      <description>&lt;DIV class="actalk-migrated-content"&gt;&lt;T&gt;i am attempting to write a 2d part that requires a fill.  i  have managed to create the fill pattern but am now trying to relocated the fill origin point&lt;BR /&gt;
from the project origin to the cnr of the object.  &lt;BR /&gt;
&lt;BR /&gt;
to do this i think i need to to get  the x,y coordinates of the part.  i have been attempting to us the SYMB_POS_X  SYMB_POS_Y to achieve this but the figures for the above remain at 0 no matter where i locate the part&lt;BR /&gt;
&lt;BR /&gt;
i have used the SYMB_POS_Z command successfully in many parts, just cant seem to nut this one out&lt;BR /&gt;
&lt;BR /&gt;
i am making the assumptions that 0,0 is set at the project origin &amp;amp; this is&lt;BR /&gt;
unmovable &amp;amp; the insertion location of the part in 2D is X,Y&lt;/T&gt;&lt;/DIV&gt;</description>
      <pubDate>Mon, 10 Sep 2007 01:02:03 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/Libraries-objects/SYMB-POS-X-SYMB-POS-Y/m-p/32738#M29999</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2007-09-10T01:02:03Z</dc:date>
    </item>
    <item>
      <title>Re: SYMB_POS_X   SYMB_POS_Y</title>
      <link>https://community.graphisoft.com/t5/Libraries-objects/SYMB-POS-X-SYMB-POS-Y/m-p/32739#M30000</link>
      <description>Try GLOB_WORLD_ORIGO_OFFSET_X&lt;BR /&gt;
&lt;BR /&gt;
&lt;A href="http://www.selfgdl.com/9_diverse/globals/OBJECT/kompendium.php?glob=GLOB_WORLD_ORIGO_OFFSET_X" target="_blank"&gt;selfgdl&lt;/A&gt;</description>
      <pubDate>Wed, 12 Sep 2007 17:00:03 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/Libraries-objects/SYMB-POS-X-SYMB-POS-Y/m-p/32739#M30000</guid>
      <dc:creator>Jochen Suehlo</dc:creator>
      <dc:date>2007-09-12T17:00:03Z</dc:date>
    </item>
    <item>
      <title>Re: SYMB_POS_X   SYMB_POS_Y</title>
      <link>https://community.graphisoft.com/t5/Libraries-objects/SYMB-POS-X-SYMB-POS-Y/m-p/32740#M30001</link>
      <description>I don't think GLOB_WORLD_ORIGO_OFFSET_X will help. If you try to use your both parameters in parameter script context: No chance. They are empty in this context.&lt;BR /&gt;
&lt;BR /&gt;
If you designed a fill by DEFINE FILL I recommend to use it with project origin, because DEFINE FILL creates ONE fill pattern, which is defined by the last object instance of the project file, which was executed. If you use more than one of this objects placed in your project, the fill origin will change out of control. You could define fill parameters named by the object-GUID, but this will mess up your fill pattern fly out.&lt;BR /&gt;
&lt;BR /&gt;
Would be helpful, you would post a script a screenshot.</description>
      <pubDate>Thu, 13 Sep 2007 06:03:20 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/Libraries-objects/SYMB-POS-X-SYMB-POS-Y/m-p/32740#M30001</guid>
      <dc:creator>Frank Beister</dc:creator>
      <dc:date>2007-09-13T06:03:20Z</dc:date>
    </item>
    <item>
      <title>Re: SYMB_POS_X   SYMB_POS_Y</title>
      <link>https://community.graphisoft.com/t5/Libraries-objects/SYMB-POS-X-SYMB-POS-Y/m-p/32741#M30002</link>
      <description>Maybe GLOB_WORLD_ORIGO_OFFSET_X helps together with SYMB_POS_X:&lt;BR /&gt;
I do not know waht you exacltly want, bu´t try this little script for experimentation.&lt;BR /&gt;
&lt;BR /&gt;
HOTSPOT2 0,0&lt;BR /&gt;
HOTSPOT2 A,0&lt;BR /&gt;
HOTSPOT2 A,B&lt;BR /&gt;
HOTSPOT2 0,B&lt;BR /&gt;
&lt;BR /&gt;
	GX=GLOB_WORLD_ORIGO_OFFSET_X+SYMB_POS_X&lt;BR /&gt;
	GY=GLOB_WORLD_ORIGO_OFFSET_Y+SYMB_POS_Y&lt;BR /&gt;
&lt;BR /&gt;
TEXT2 0,0,GX&lt;BR /&gt;
TEXT2 0,-1,GY&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
DEFINE FILL "Quadrat" 32,16+64,8+128,16+64,32,0,0,0,&lt;BR /&gt;
! skalierung,winkel,n&lt;BR /&gt;
0.75, 000, 1,&lt;BR /&gt;
! Linie 1 - frequenz,richtung,verschiebungX,verschiebungY,m&lt;BR /&gt;
1.00, 0.00, 		GX, GY, 	1, 1&lt;BR /&gt;
&lt;BR /&gt;
FILL "Quadrat"&lt;BR /&gt;
&lt;BR /&gt;
poly2_B 4,2+4,SYMB_VIEW_PEN,0, 0,0,0, a,0,0, a,b,0, 0,b,0</description>
      <pubDate>Thu, 13 Sep 2007 17:46:54 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/Libraries-objects/SYMB-POS-X-SYMB-POS-Y/m-p/32741#M30002</guid>
      <dc:creator>Jochen Suehlo</dc:creator>
      <dc:date>2007-09-13T17:46:54Z</dc:date>
    </item>
    <item>
      <title>Re: SYMB_POS_X   SYMB_POS_Y</title>
      <link>https://community.graphisoft.com/t5/Libraries-objects/SYMB-POS-X-SYMB-POS-Y/m-p/32742#M30003</link>
      <description>thanks very much was able to get part running successfully, not really sure yet about the actual coding requirements for the DEFINE FILL command especially the status coding, managed to get to work thru trial &amp;amp; error though.&lt;BR /&gt;
&lt;BR /&gt;
thanks again</description>
      <pubDate>Mon, 17 Sep 2007 00:36:02 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/Libraries-objects/SYMB-POS-X-SYMB-POS-Y/m-p/32742#M30003</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2007-09-17T00:36:02Z</dc:date>
    </item>
  </channel>
</rss>

