<?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: DEFINE SYMBOL_FILL in Libraries &amp; objects</title>
    <link>https://community.graphisoft.com/t5/Libraries-objects/DEFINE-SYMBOL-FILL/m-p/94772#M35319</link>
    <description>&lt;BLOCKQUOTE&gt;F. wrote:&lt;BR /&gt;Has anyone successfully used the &lt;B&gt;DEFINE SYMBOL_FILL&lt;/B&gt;-command? If I use it slavishly like in the manual I get a "need numeric parameter"-error in the section of the macro-call. Am I doing something wrong or is it a bug? I attach a simple (not working) example.&lt;/BLOCKQUOTE&gt;

F. Beister:&lt;BR /&gt;
&lt;BR /&gt;
I have not used this command, but I see that you have a "get ( 8 )" as one of the parameters, but no "put" statement. When I substituted 8 numbers for the get ( 8 ), the error message went away.&lt;BR /&gt;
&lt;BR /&gt;
&lt;FONT color="blue"&gt;DEFINE SYMBOL_FILL name 1, 1, 1, 1, 1, 1, 1, 1, &lt;BR /&gt;
  frequenzX, frequenzY, verschiebungX, verschiebungY,&lt;BR /&gt;
  winkel, skalierungX, skalierungY,&lt;BR /&gt;
  macroname PARAMETERS a=1.1, b=1.1, h=hoch&lt;/FONT&gt;&lt;BR /&gt;
&lt;BR /&gt;
HTH&lt;BR /&gt;
&lt;BR /&gt;
David</description>
    <pubDate>Mon, 12 Dec 2005 13:24:29 GMT</pubDate>
    <dc:creator>David Maudlin</dc:creator>
    <dc:date>2005-12-12T13:24:29Z</dc:date>
    <item>
      <title>DEFINE SYMBOL_FILL</title>
      <link>https://community.graphisoft.com/t5/Libraries-objects/DEFINE-SYMBOL-FILL/m-p/94771#M35318</link>
      <description>&lt;DIV class="actalk-migrated-content"&gt;&lt;R&gt;Has anyone successfully used the &lt;B&gt;DEFINE SYMBOL_FILL&lt;/B&gt;-command? If I use it slavishly like in the manual I get a "need numeric parameter"-error in the section of the macro-call. Am I doing something wrong or is it a bug? I attach a simple (not working) example.&lt;/R&gt;&lt;/DIV&gt;</description>
      <pubDate>Mon, 12 Dec 2005 09:19:28 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/Libraries-objects/DEFINE-SYMBOL-FILL/m-p/94771#M35318</guid>
      <dc:creator>Frank Beister</dc:creator>
      <dc:date>2005-12-12T09:19:28Z</dc:date>
    </item>
    <item>
      <title>Re: DEFINE SYMBOL_FILL</title>
      <link>https://community.graphisoft.com/t5/Libraries-objects/DEFINE-SYMBOL-FILL/m-p/94772#M35319</link>
      <description>&lt;BLOCKQUOTE&gt;F. wrote:&lt;BR /&gt;Has anyone successfully used the &lt;B&gt;DEFINE SYMBOL_FILL&lt;/B&gt;-command? If I use it slavishly like in the manual I get a "need numeric parameter"-error in the section of the macro-call. Am I doing something wrong or is it a bug? I attach a simple (not working) example.&lt;/BLOCKQUOTE&gt;

F. Beister:&lt;BR /&gt;
&lt;BR /&gt;
I have not used this command, but I see that you have a "get ( 8 )" as one of the parameters, but no "put" statement. When I substituted 8 numbers for the get ( 8 ), the error message went away.&lt;BR /&gt;
&lt;BR /&gt;
&lt;FONT color="blue"&gt;DEFINE SYMBOL_FILL name 1, 1, 1, 1, 1, 1, 1, 1, &lt;BR /&gt;
  frequenzX, frequenzY, verschiebungX, verschiebungY,&lt;BR /&gt;
  winkel, skalierungX, skalierungY,&lt;BR /&gt;
  macroname PARAMETERS a=1.1, b=1.1, h=hoch&lt;/FONT&gt;&lt;BR /&gt;
&lt;BR /&gt;
HTH&lt;BR /&gt;
&lt;BR /&gt;
David</description>
      <pubDate>Mon, 12 Dec 2005 13:24:29 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/Libraries-objects/DEFINE-SYMBOL-FILL/m-p/94772#M35319</guid>
      <dc:creator>David Maudlin</dc:creator>
      <dc:date>2005-12-12T13:24:29Z</dc:date>
    </item>
    <item>
      <title>Re: DEFINE SYMBOL_FILL</title>
      <link>https://community.graphisoft.com/t5/Libraries-objects/DEFINE-SYMBOL-FILL/m-p/94773#M35320</link>
      <description>Thanks David. Seems to be the hint. I have extracted the demonstartion object out of a larger one, where I calculated the bitmap pattern out of an text array. I forgot to substitute this or the demo.&lt;BR /&gt;
&lt;BR /&gt;
But I think, that it's a bug in AC:&lt;BR /&gt;

&lt;PRE&gt;name="Test"
frequenzX=1.5 : frequenzY=0.15
verschiebungX=1 : verschiebungY=0.1
winkel=0
skalierungX=1 : skalierungY=1

DEFINE SYMBOL_FILL name 1,1,1,1,1,1,1,1,
  frequenzX, frequenzY, verschiebungX, verschiebungY,
  winkel, skalierungX, skalierungY,
  macroname PARAMETERS a=1.1, b=1.1, h=hoch&lt;/PRE&gt;

works.&lt;BR /&gt;

&lt;PRE&gt;&lt;I&gt;
&lt;/I&gt;name="Test"
frequenzX=1.5 : frequenzY=0.15
verschiebungX=1 : verschiebungY=0.1
winkel=0
skalierungX=1 : skalierungY=1
put 1,1,1,1,1,1,1,1

DEFINE SYMBOL_FILL name get(8),
  frequenzX, frequenzY, verschiebungX, verschiebungY,
  winkel, skalierungX, skalierungY,
  macroname PARAMETERS a=1.1, b=1.1, h=hoch&lt;/PRE&gt;

stops by reorting an error.&lt;BR /&gt;
&lt;BR /&gt;
Thanks again.</description>
      <pubDate>Mon, 12 Dec 2005 15:28:23 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/Libraries-objects/DEFINE-SYMBOL-FILL/m-p/94773#M35320</guid>
      <dc:creator>Frank Beister</dc:creator>
      <dc:date>2005-12-12T15:28:23Z</dc:date>
    </item>
  </channel>
</rss>

