<?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: How can I use MARKER_HEAD_ROT_MODE in a zone stamp in GDL</title>
    <link>https://community.graphisoft.com/t5/GDL/How-can-I-use-MARKER-HEAD-ROT-MODE-in-a-zone-stamp/m-p/249825#M4486</link>
    <description>So there is no way to know whether it is selected when using a zone stamp from within the GDL?</description>
    <pubDate>Tue, 02 Jun 2020 12:37:44 GMT</pubDate>
    <dc:creator>JGoode</dc:creator>
    <dc:date>2020-06-02T12:37:44Z</dc:date>
    <item>
      <title>How can I use MARKER_HEAD_ROT_MODE in a zone stamp</title>
      <link>https://community.graphisoft.com/t5/GDL/How-can-I-use-MARKER-HEAD-ROT-MODE-in-a-zone-stamp/m-p/249823#M4484</link>
      <description>&lt;DIV class="actalk-migrated-content"&gt;Hello,&lt;BR /&gt;&lt;BR /&gt;I have a query regarding using MARKER_HEAD_ROT_MODE in my custom zone stamp.&lt;BR /&gt;&lt;BR /&gt;I am trying to make it so that when MARKER_HEAD_ROT_MODE = 2, I have a rotation that removes the workspace rotation.&lt;BR /&gt;&lt;BR /&gt;Here is what I have but it doesn’t seem to work:&lt;BR /&gt;
&lt;PRE&gt;rrr = REQUEST ("View_Rotangle", "", textAngle)
if (MARKER_HEAD_ROT_MODE = 2) then
  rot2 -textAngle
endif&lt;/PRE&gt;
How can I make this work? Thanks&lt;/DIV&gt;</description>
      <pubDate>Mon, 26 Sep 2022 20:53:53 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/GDL/How-can-I-use-MARKER-HEAD-ROT-MODE-in-a-zone-stamp/m-p/249823#M4484</guid>
      <dc:creator>JGoode</dc:creator>
      <dc:date>2022-09-26T20:53:53Z</dc:date>
    </item>
    <item>
      <title>Re: How can I use MARKER_HEAD_ROT_MODE in a zone stamp</title>
      <link>https://community.graphisoft.com/t5/GDL/How-can-I-use-MARKER-HEAD-ROT-MODE-in-a-zone-stamp/m-p/249824#M4485</link>
      <description>MARKER_HEAD_ROT_MODE work only in Detail, Worksheet and Change Markers &lt;BR /&gt;
&lt;A href="https://gdl.graphisoft.com/reference-guide/marker-parameters" target="_blank"&gt;&lt;LINK_TEXT text="https://gdl.graphisoft.com/reference-gu ... parameters"&gt;https://gdl.graphisoft.com/reference-guide/marker-parameters&lt;/LINK_TEXT&gt;&lt;/A&gt;&lt;BR /&gt;
&lt;BR /&gt;
You can create custom Model View Options (&lt;A href="https://gdl.graphisoft.com/tips-and-tricks/custom-made-model-view-options-object" target="_blank"&gt;&lt;LINK_TEXT text="https://gdl.graphisoft.com/tips-and-tri ... ons-object"&gt;https://gdl.graphisoft.com/tips-and-tricks/custom-made-model-view-options-object&lt;/LINK_TEXT&gt;&lt;/A&gt;) with boolean parametr and read it in zone stamp.</description>
      <pubDate>Tue, 02 Jun 2020 12:01:34 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/GDL/How-can-I-use-MARKER-HEAD-ROT-MODE-in-a-zone-stamp/m-p/249824#M4485</guid>
      <dc:creator>kuvbur</dc:creator>
      <dc:date>2020-06-02T12:01:34Z</dc:date>
    </item>
    <item>
      <title>Re: How can I use MARKER_HEAD_ROT_MODE in a zone stamp</title>
      <link>https://community.graphisoft.com/t5/GDL/How-can-I-use-MARKER-HEAD-ROT-MODE-in-a-zone-stamp/m-p/249825#M4486</link>
      <description>So there is no way to know whether it is selected when using a zone stamp from within the GDL?</description>
      <pubDate>Tue, 02 Jun 2020 12:37:44 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/GDL/How-can-I-use-MARKER-HEAD-ROT-MODE-in-a-zone-stamp/m-p/249825#M4486</guid>
      <dc:creator>JGoode</dc:creator>
      <dc:date>2020-06-02T12:37:44Z</dc:date>
    </item>
    <item>
      <title>Re: How can I use MARKER_HEAD_ROT_MODE in a zone stamp</title>
      <link>https://community.graphisoft.com/t5/GDL/How-can-I-use-MARKER-HEAD-ROT-MODE-in-a-zone-stamp/m-p/249826#M4487</link>
      <description>MARKER_HEAD_ROT_MODE get state of "Marker Angle: Fixed Angle to Screen/Fixed Angle to Model", which is unavailable in ZONE STAMP. &lt;BR /&gt;
What is the ultimate goal? You can get information about whether an object is in an edit mode (GLOB_PREVIEW_MODE and GLOB_FEEDBACK_MODE), but I don’t quite understand why you need it.</description>
      <pubDate>Tue, 02 Jun 2020 12:49:03 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/GDL/How-can-I-use-MARKER-HEAD-ROT-MODE-in-a-zone-stamp/m-p/249826#M4487</guid>
      <dc:creator>kuvbur</dc:creator>
      <dc:date>2020-06-02T12:49:03Z</dc:date>
    </item>
    <item>
      <title>Re: How can I use MARKER_HEAD_ROT_MODE in a zone stamp</title>
      <link>https://community.graphisoft.com/t5/GDL/How-can-I-use-MARKER-HEAD-ROT-MODE-in-a-zone-stamp/m-p/249827#M4488</link>
      <description>So the situation is that I always want the text to be readable but also stay in the same position relative to the zone (our zone stamp has an additional ability to move the stamp so rotating means the stamp doesn't stay in position) &lt;BR /&gt;
&lt;BR /&gt;
When the buttons in the zone ("Angle fixed to Screen" and "Angle fixed to Model") are set, they both have a different effect so if it's set to "Angle fixed to Model" I want to minus the rotation of the plan orientation... I hope that makes a little bit of sense</description>
      <pubDate>Tue, 02 Jun 2020 13:18:55 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/GDL/How-can-I-use-MARKER-HEAD-ROT-MODE-in-a-zone-stamp/m-p/249827#M4488</guid>
      <dc:creator>JGoode</dc:creator>
      <dc:date>2020-06-02T13:18:55Z</dc:date>
    </item>
    <item>
      <title>Re: How can I use MARKER_HEAD_ROT_MODE in a zone stamp</title>
      <link>https://community.graphisoft.com/t5/GDL/How-can-I-use-MARKER-HEAD-ROT-MODE-in-a-zone-stamp/m-p/249828#M4489</link>
      <description>Just rotate after comand ADD&lt;BR /&gt;
for example
&lt;PRE&gt;	x = x_mm*PAPER_TO_MODEL
	y = y_mm*PAPER_TO_MODEL
	HOTSPOT2 x, 0, unID, y, 1+128+1024,y_mm: unID=unID+1
	HOTSPOT2 x, y, unID, y, 2+1024,y_mm: unID=unID+1
	HOTSPOT2 x,-1, unID, y, 3+1024,y_mm: unID=unID+1
	HOTSPOT2 0, y, unID, x, 1+128+1024, x_mm: unID=unID+1
	HOTSPOT2 x, y, unID, x, 2+1024, x_mm: unID=unID+1
	HOTSPOT2 -1, y, unID, x, 3+1024, x_mm: unID=unID+1
	
	add2 x, y
	!Rotate after add, before place text
	bRotate = 0
	success = LIBRARYGLOBAL ("Libraryflobals-test", "bRotate", bRotate) !Create Libraryflobals-test with parametr bRotate
	if bRotate then
		textAngle = 0
		rrr = REQUEST ("View_Rotangle", "", textAngle)
		rot2 -textAngle
	endif&lt;/PRE&gt;</description>
      <pubDate>Tue, 02 Jun 2020 13:41:16 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/GDL/How-can-I-use-MARKER-HEAD-ROT-MODE-in-a-zone-stamp/m-p/249828#M4489</guid>
      <dc:creator>kuvbur</dc:creator>
      <dc:date>2020-06-02T13:41:16Z</dc:date>
    </item>
    <item>
      <title>Re: How can I use MARKER_HEAD_ROT_MODE in a zone stamp</title>
      <link>https://community.graphisoft.com/t5/GDL/How-can-I-use-MARKER-HEAD-ROT-MODE-in-a-zone-stamp/m-p/249829#M4490</link>
      <description>Perhaps MARKER_HEAD_ROT_MODE isn't the correct thing to use. Do you know how I can work out whether a Zone Stamp is set to "Angle fixed to Model" ? and is there a way that I can see the "Set Zone Stamp Angle" box in GDL?&lt;BR /&gt;
&lt;BR /&gt;
thanks</description>
      <pubDate>Tue, 02 Jun 2020 14:16:00 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/GDL/How-can-I-use-MARKER-HEAD-ROT-MODE-in-a-zone-stamp/m-p/249829#M4490</guid>
      <dc:creator>JGoode</dc:creator>
      <dc:date>2020-06-02T14:16:00Z</dc:date>
    </item>
    <item>
      <title>Re: How can I use MARKER_HEAD_ROT_MODE in a zone stamp</title>
      <link>https://community.graphisoft.com/t5/GDL/How-can-I-use-MARKER-HEAD-ROT-MODE-in-a-zone-stamp/m-p/249830#M4491</link>
      <description>Exemple in attach, may it help</description>
      <pubDate>Tue, 02 Jun 2020 15:01:21 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/GDL/How-can-I-use-MARKER-HEAD-ROT-MODE-in-a-zone-stamp/m-p/249830#M4491</guid>
      <dc:creator>kuvbur</dc:creator>
      <dc:date>2020-06-02T15:01:21Z</dc:date>
    </item>
  </channel>
</rss>

