<?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: Custom symbol in drawing title in Libraries &amp; objects</title>
    <link>https://community.graphisoft.com/t5/Libraries-objects/Custom-symbol-in-drawing-title/m-p/51111#M31532</link>
    <description>This is the gdl scrip i need to edit / add to. some how i can not seem to get it in there.&lt;BR /&gt;
&lt;BR /&gt;
my gdl knowledge are not to great, i know the basics.&lt;BR /&gt;
&lt;BR /&gt;
100:&lt;BR /&gt;
! ==============================================================================&lt;BR /&gt;
! Drawing title marker symbol&lt;BR /&gt;
! ==============================================================================&lt;BR /&gt;
! in:&lt;BR /&gt;
!	titleWidth:&lt;BR /&gt;
!	titleHeight:&lt;BR /&gt;
! out:&lt;BR /&gt;
!	upperLineDx:&lt;BR /&gt;
!	middleLineDx:&lt;BR /&gt;
!	bottomLineDx&lt;BR /&gt;
! ==============================================================================&lt;BR /&gt;
&lt;BR /&gt;
	if not(gs_show_symbol) then		! Off&lt;BR /&gt;
&lt;BR /&gt;
		bHaveMarkerData = 0&lt;BR /&gt;
		if iTitleConfig = 1 &amp;amp; (gs_show_drawing_number | gs_show_layout_number) then bHaveMarkerData = 1&lt;BR /&gt;
&lt;BR /&gt;
		if bHaveMarkerData then&lt;BR /&gt;
			if gs_symbol_style = mSymbolStyle[1] then		! Circle&lt;BR /&gt;
				middleLineDx	= titleHeight&lt;BR /&gt;
			endif&lt;BR /&gt;
			if gs_symbol_style = mSymbolStyle[2] then		! Elliptoid&lt;BR /&gt;
				ovalRatio = 1.5&lt;BR /&gt;
				middleLineDx	= ovalRatio * titleHeight&lt;BR /&gt;
			endif&lt;BR /&gt;
			if gs_symbol_style = mSymbolStyle[3] then		! Rectangular&lt;BR /&gt;
				middleLineDx	= titleHeight&lt;BR /&gt;
			endif&lt;BR /&gt;
			if gs_symbol_style = mSymbolStyle[4] then		! Pentagonal&lt;BR /&gt;
				middleLineDx	= pentX1 + pentX2&lt;BR /&gt;
			endif&lt;BR /&gt;
			upperLineDx		= middleLineDx&lt;BR /&gt;
			bottomLineDx	= middleLineDx&lt;BR /&gt;
		else&lt;BR /&gt;
			upperLineDx		= 0&lt;BR /&gt;
			bottomLineDx	= 0&lt;BR /&gt;
			middleLineDx	= 0&lt;BR /&gt;
		endif&lt;BR /&gt;
	else&lt;BR /&gt;
		pen gs_symbol_pen&lt;BR /&gt;
		fill gs_symbol_fill&lt;BR /&gt;
&lt;BR /&gt;
		if gs_symbol_style = mSymbolStyle[1] then		! Circle&lt;BR /&gt;
			hotarc2 titleHeight / 2, -titleHeight / 2, titleHeight / 2, 0, 180&lt;BR /&gt;
			hotarc2 titleHeight / 2, -titleHeight / 2, titleHeight / 2, 180, 0&lt;BR /&gt;
&lt;BR /&gt;
			poly2_b 2, 7, gs_symbol_fill_fg, gs_symbol_fill_bg,&lt;BR /&gt;
				titleHeight / 2, -titleHeight / 2, 901,&lt;BR /&gt;
				titleHeight / 2, 360, 4001&lt;BR /&gt;
&lt;BR /&gt;
			upperLineDx		= titleHeight / 2&lt;BR /&gt;
			middleLineDx	= titleHeight&lt;BR /&gt;
			bottomLineDx	= titleHeight / 2&lt;BR /&gt;
		endif&lt;BR /&gt;
&lt;BR /&gt;
		if gs_symbol_style = mSymbolStyle[2] then		! Elliptoid&lt;BR /&gt;
			ovalRatio = 1.5&lt;BR /&gt;
&lt;BR /&gt;
			mul2 ovalRatio, 1&lt;BR /&gt;
&lt;BR /&gt;
			hotarc2 titleHeight / 2, -titleHeight / 2, titleHeight / 2, 0, 180&lt;BR /&gt;
			hotarc2 titleHeight / 2, -titleHeight / 2, titleHeight / 2, 180, 0&lt;BR /&gt;
&lt;BR /&gt;
			poly2_b 2, 7, gs_symbol_fill_fg, gs_symbol_fill_bg,&lt;BR /&gt;
				titleHeight / 2, -titleHeight / 2, 901,&lt;BR /&gt;
				titleHeight / 2, 360, 4001&lt;BR /&gt;
&lt;BR /&gt;
			del 1&lt;BR /&gt;
&lt;BR /&gt;
			upperLineDx		= ovalRatio * titleHeight / 2&lt;BR /&gt;
			middleLineDx	= ovalRatio * titleHeight&lt;BR /&gt;
			bottomLineDx	= ovalRatio * titleHeight / 2&lt;BR /&gt;
		endif&lt;BR /&gt;
&lt;BR /&gt;
		if gs_symbol_style = mSymbolStyle[3] then		! Rectangular&lt;BR /&gt;
&lt;BR /&gt;
			hotline2 0,			 0,			 0,				-titleHeight&lt;BR /&gt;
			hotline2 titleHeight,0,			 titleHeight,	-titleHeight&lt;BR /&gt;
			hotline2 0,			 0,			 titleHeight,	 0&lt;BR /&gt;
			hotline2 0,			-titleHeight,titleHeight,	-titleHeight&lt;BR /&gt;
&lt;BR /&gt;
			poly2_b 4, 7, gs_symbol_fill_fg, gs_symbol_fill_bg,&lt;BR /&gt;
				titleHeight,	-titleHeight,		1,&lt;BR /&gt;
				titleHeight,	 0,					1,&lt;BR /&gt;
				0,				 0,					1,&lt;BR /&gt;
				0,				-titleHeight,		1&lt;BR /&gt;
&lt;BR /&gt;
			upperLineDx		= titleHeight&lt;BR /&gt;
			middleLineDx	= titleHeight&lt;BR /&gt;
			bottomLineDx	= titleHeight&lt;BR /&gt;
		endif&lt;BR /&gt;
&lt;BR /&gt;
		if gs_symbol_style = mSymbolStyle[4] then		! Pentagonal&lt;BR /&gt;
			alpha = ((5 - 2) * 180) / 5&lt;BR /&gt;
			pentSideL = titleHeight / 2 / sin(alpha / 2)&lt;BR /&gt;
			pentX1 = titleHeight / 2/ tan(alpha / 2)&lt;BR /&gt;
			pentX2 = pentSideL * cos(alpha - 90)&lt;BR /&gt;
&lt;BR /&gt;
			add2 pentX1 + pentX2, -titleHeight / 2&lt;BR /&gt;
&lt;BR /&gt;
			hotline2  0,				 0,					-pentX1,			 titleHeight / 2&lt;BR /&gt;
			hotline2 -pentX1,			 titleHeight / 2,	-pentX1 - pentX2,	 pentSideL / 2&lt;BR /&gt;
			hotline2 -pentX1 - pentX2,	 pentSideL / 2,		-pentX1 - pentX2,	-pentSideL / 2&lt;BR /&gt;
			hotline2 -pentX1 - pentX2,	-pentSideL / 2,		-pentX1,			-titleHeight / 2&lt;BR /&gt;
			hotline2 -pentX1,			-titleHeight / 2,	 0,					 0&lt;BR /&gt;
&lt;BR /&gt;
			poly2_b 5, 7, gs_symbol_fill_fg, gs_symbol_fill_bg,&lt;BR /&gt;
				 0,				  0,				1,&lt;BR /&gt;
				-pentX1,		  titleHeight / 2,	1,&lt;BR /&gt;
				-pentX1 - pentX2, pentSideL / 2,	1,&lt;BR /&gt;
				-pentX1 - pentX2,-pentSideL / 2,	1,&lt;BR /&gt;
				-pentX1,		 -titleHeight / 2,	1&lt;BR /&gt;
			del 1&lt;BR /&gt;
&lt;BR /&gt;
			upperLineDx		= pentX2&lt;BR /&gt;
			middleLineDx	= pentX1 + pentX2&lt;BR /&gt;
			bottomLineDx	= pentX2&lt;BR /&gt;
		endif&lt;BR /&gt;
	endif&lt;BR /&gt;
return&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
I know i have to add it here and then again i have to add it in the Master Script.&lt;BR /&gt;
&lt;BR /&gt;
".........dim mSymbolStyle[4]&lt;BR /&gt;
	mSymbolStyle[1] = `Circle`&lt;BR /&gt;
	mSymbolStyle[2] = `Elliptoid`&lt;BR /&gt;
	mSymbolStyle[3] = `Rectangular`&lt;BR /&gt;
	mSymbolStyle[4] = `Pentagonal` ......"&lt;BR /&gt;
&lt;BR /&gt;
Somehow i always get stuck.  &lt;IMG src="https://community.graphisoft.com/legacyfs/online/emojis/icon_question.gif" style="display : inline;" /&gt;  &lt;IMG src="https://community.graphisoft.com/legacyfs/online/emojis/icon_exclaim.gif" style="display : inline;" /&gt;  &lt;IMG src="https://community.graphisoft.com/legacyfs/online/emojis/icon_question.gif" style="display : inline;" /&gt;</description>
    <pubDate>Fri, 18 May 2007 07:10:35 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2007-05-18T07:10:35Z</dc:date>
    <item>
      <title>Custom symbol in drawing title</title>
      <link>https://community.graphisoft.com/t5/Libraries-objects/Custom-symbol-in-drawing-title/m-p/51107#M31528</link>
      <description>&lt;DIV class="actalk-migrated-content"&gt;&lt;R&gt;The picture below shows an example of how we would like our drawing titles to look like. &lt;BR /&gt;
&lt;BR /&gt;
I used the default Linear Drawing Title 10 and added the circle, W and the 2 centre lines through the circle.&lt;BR /&gt;
&lt;BR /&gt;
However I would like to have this symbol as a option within the Title so that I can only pick the option (...like in the default title you can choose between circle, ellipse, rectangle and pentagon marker styles.) &lt;BR /&gt;
How and what would I have to change in the gdl text to incorporate this symbol. And in such a manner that the symbol still scales with the rest of the title.&lt;BR /&gt;
(...the symbol size is connected to the text size in the default title)&lt;BR /&gt;
&lt;BR /&gt;
Can anybody help me with the gdl scripting that I need to add or change? &lt;IMG src="https://community.graphisoft.com/legacyfs/online/emojis/icon_cry.gif" style="display : inline;" /&gt;&lt;/R&gt;&lt;/DIV&gt;&lt;BR /&gt;&lt;IMG src="https://community.graphisoft.com/t5/image/serverpage/image-id/9336i9EE5F6A1817F9764/image-size/large?v=v2&amp;amp;px=999" border="0" alt="Drawing Title JWARC.jpg" title="Drawing Title JWARC.jpg" /&gt;</description>
      <pubDate>Wed, 16 May 2007 12:11:10 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/Libraries-objects/Custom-symbol-in-drawing-title/m-p/51107#M31528</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2007-05-16T12:11:10Z</dc:date>
    </item>
    <item>
      <title>Re: Custom symbol in drawing title</title>
      <link>https://community.graphisoft.com/t5/Libraries-objects/Custom-symbol-in-drawing-title/m-p/51108#M31529</link>
      <description>I recommend starting from scratch. The title types are a little tricky, but they are much easier without hundreds of lines of code to confuse you. Try starting with just the graphics to get the hang of it and add the text later.</description>
      <pubDate>Wed, 16 May 2007 16:38:08 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/Libraries-objects/Custom-symbol-in-drawing-title/m-p/51108#M31529</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2007-05-16T16:38:08Z</dc:date>
    </item>
    <item>
      <title>Re: Custom symbol in drawing title</title>
      <link>https://community.graphisoft.com/t5/Libraries-objects/Custom-symbol-in-drawing-title/m-p/51109#M31530</link>
      <description>Cecilia -- It doesn't look like the Linear Drawing Title 10 is part of the US Library, so I can't tell you specifically what to do (and I also don't know your level of GDL knowledge), but basically: &lt;BR /&gt;
 &lt;BR /&gt;
Create an option (in addition to circle, ellipse, etc.) for the symbol in the Parameter Script. &lt;BR /&gt;
 &lt;BR /&gt;
The simplest way to create the symbol is within the "2D Symbol" window, and then add the necessary 2D script (IF Marker =`Symbol` THEN...) to insert the graphic as a FRAGMENT.  You can probably figure this part out by studying the existing 2D script (I can only assume that the other marker shapes are scaled with the text).</description>
      <pubDate>Wed, 16 May 2007 17:32:01 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/Libraries-objects/Custom-symbol-in-drawing-title/m-p/51109#M31530</guid>
      <dc:creator>Laura Yanoviak</dc:creator>
      <dc:date>2007-05-16T17:32:01Z</dc:date>
    </item>
    <item>
      <title>Re: Custom symbol in drawing title</title>
      <link>https://community.graphisoft.com/t5/Libraries-objects/Custom-symbol-in-drawing-title/m-p/51110#M31531</link>
      <description>how did you add the graphics?&lt;BR /&gt;
You need to find the part of code that creates the circle and put your custom bit next to that. TIP: search for "circle2", Comment out the command and see if it is indeed the part.&lt;BR /&gt;
 With a bit of luck you will be able to control it from the default paramters. With an "if" statement you could further customise the selection.</description>
      <pubDate>Wed, 16 May 2007 23:01:44 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/Libraries-objects/Custom-symbol-in-drawing-title/m-p/51110#M31531</guid>
      <dc:creator>Aussie John</dc:creator>
      <dc:date>2007-05-16T23:01:44Z</dc:date>
    </item>
    <item>
      <title>Re: Custom symbol in drawing title</title>
      <link>https://community.graphisoft.com/t5/Libraries-objects/Custom-symbol-in-drawing-title/m-p/51111#M31532</link>
      <description>This is the gdl scrip i need to edit / add to. some how i can not seem to get it in there.&lt;BR /&gt;
&lt;BR /&gt;
my gdl knowledge are not to great, i know the basics.&lt;BR /&gt;
&lt;BR /&gt;
100:&lt;BR /&gt;
! ==============================================================================&lt;BR /&gt;
! Drawing title marker symbol&lt;BR /&gt;
! ==============================================================================&lt;BR /&gt;
! in:&lt;BR /&gt;
!	titleWidth:&lt;BR /&gt;
!	titleHeight:&lt;BR /&gt;
! out:&lt;BR /&gt;
!	upperLineDx:&lt;BR /&gt;
!	middleLineDx:&lt;BR /&gt;
!	bottomLineDx&lt;BR /&gt;
! ==============================================================================&lt;BR /&gt;
&lt;BR /&gt;
	if not(gs_show_symbol) then		! Off&lt;BR /&gt;
&lt;BR /&gt;
		bHaveMarkerData = 0&lt;BR /&gt;
		if iTitleConfig = 1 &amp;amp; (gs_show_drawing_number | gs_show_layout_number) then bHaveMarkerData = 1&lt;BR /&gt;
&lt;BR /&gt;
		if bHaveMarkerData then&lt;BR /&gt;
			if gs_symbol_style = mSymbolStyle[1] then		! Circle&lt;BR /&gt;
				middleLineDx	= titleHeight&lt;BR /&gt;
			endif&lt;BR /&gt;
			if gs_symbol_style = mSymbolStyle[2] then		! Elliptoid&lt;BR /&gt;
				ovalRatio = 1.5&lt;BR /&gt;
				middleLineDx	= ovalRatio * titleHeight&lt;BR /&gt;
			endif&lt;BR /&gt;
			if gs_symbol_style = mSymbolStyle[3] then		! Rectangular&lt;BR /&gt;
				middleLineDx	= titleHeight&lt;BR /&gt;
			endif&lt;BR /&gt;
			if gs_symbol_style = mSymbolStyle[4] then		! Pentagonal&lt;BR /&gt;
				middleLineDx	= pentX1 + pentX2&lt;BR /&gt;
			endif&lt;BR /&gt;
			upperLineDx		= middleLineDx&lt;BR /&gt;
			bottomLineDx	= middleLineDx&lt;BR /&gt;
		else&lt;BR /&gt;
			upperLineDx		= 0&lt;BR /&gt;
			bottomLineDx	= 0&lt;BR /&gt;
			middleLineDx	= 0&lt;BR /&gt;
		endif&lt;BR /&gt;
	else&lt;BR /&gt;
		pen gs_symbol_pen&lt;BR /&gt;
		fill gs_symbol_fill&lt;BR /&gt;
&lt;BR /&gt;
		if gs_symbol_style = mSymbolStyle[1] then		! Circle&lt;BR /&gt;
			hotarc2 titleHeight / 2, -titleHeight / 2, titleHeight / 2, 0, 180&lt;BR /&gt;
			hotarc2 titleHeight / 2, -titleHeight / 2, titleHeight / 2, 180, 0&lt;BR /&gt;
&lt;BR /&gt;
			poly2_b 2, 7, gs_symbol_fill_fg, gs_symbol_fill_bg,&lt;BR /&gt;
				titleHeight / 2, -titleHeight / 2, 901,&lt;BR /&gt;
				titleHeight / 2, 360, 4001&lt;BR /&gt;
&lt;BR /&gt;
			upperLineDx		= titleHeight / 2&lt;BR /&gt;
			middleLineDx	= titleHeight&lt;BR /&gt;
			bottomLineDx	= titleHeight / 2&lt;BR /&gt;
		endif&lt;BR /&gt;
&lt;BR /&gt;
		if gs_symbol_style = mSymbolStyle[2] then		! Elliptoid&lt;BR /&gt;
			ovalRatio = 1.5&lt;BR /&gt;
&lt;BR /&gt;
			mul2 ovalRatio, 1&lt;BR /&gt;
&lt;BR /&gt;
			hotarc2 titleHeight / 2, -titleHeight / 2, titleHeight / 2, 0, 180&lt;BR /&gt;
			hotarc2 titleHeight / 2, -titleHeight / 2, titleHeight / 2, 180, 0&lt;BR /&gt;
&lt;BR /&gt;
			poly2_b 2, 7, gs_symbol_fill_fg, gs_symbol_fill_bg,&lt;BR /&gt;
				titleHeight / 2, -titleHeight / 2, 901,&lt;BR /&gt;
				titleHeight / 2, 360, 4001&lt;BR /&gt;
&lt;BR /&gt;
			del 1&lt;BR /&gt;
&lt;BR /&gt;
			upperLineDx		= ovalRatio * titleHeight / 2&lt;BR /&gt;
			middleLineDx	= ovalRatio * titleHeight&lt;BR /&gt;
			bottomLineDx	= ovalRatio * titleHeight / 2&lt;BR /&gt;
		endif&lt;BR /&gt;
&lt;BR /&gt;
		if gs_symbol_style = mSymbolStyle[3] then		! Rectangular&lt;BR /&gt;
&lt;BR /&gt;
			hotline2 0,			 0,			 0,				-titleHeight&lt;BR /&gt;
			hotline2 titleHeight,0,			 titleHeight,	-titleHeight&lt;BR /&gt;
			hotline2 0,			 0,			 titleHeight,	 0&lt;BR /&gt;
			hotline2 0,			-titleHeight,titleHeight,	-titleHeight&lt;BR /&gt;
&lt;BR /&gt;
			poly2_b 4, 7, gs_symbol_fill_fg, gs_symbol_fill_bg,&lt;BR /&gt;
				titleHeight,	-titleHeight,		1,&lt;BR /&gt;
				titleHeight,	 0,					1,&lt;BR /&gt;
				0,				 0,					1,&lt;BR /&gt;
				0,				-titleHeight,		1&lt;BR /&gt;
&lt;BR /&gt;
			upperLineDx		= titleHeight&lt;BR /&gt;
			middleLineDx	= titleHeight&lt;BR /&gt;
			bottomLineDx	= titleHeight&lt;BR /&gt;
		endif&lt;BR /&gt;
&lt;BR /&gt;
		if gs_symbol_style = mSymbolStyle[4] then		! Pentagonal&lt;BR /&gt;
			alpha = ((5 - 2) * 180) / 5&lt;BR /&gt;
			pentSideL = titleHeight / 2 / sin(alpha / 2)&lt;BR /&gt;
			pentX1 = titleHeight / 2/ tan(alpha / 2)&lt;BR /&gt;
			pentX2 = pentSideL * cos(alpha - 90)&lt;BR /&gt;
&lt;BR /&gt;
			add2 pentX1 + pentX2, -titleHeight / 2&lt;BR /&gt;
&lt;BR /&gt;
			hotline2  0,				 0,					-pentX1,			 titleHeight / 2&lt;BR /&gt;
			hotline2 -pentX1,			 titleHeight / 2,	-pentX1 - pentX2,	 pentSideL / 2&lt;BR /&gt;
			hotline2 -pentX1 - pentX2,	 pentSideL / 2,		-pentX1 - pentX2,	-pentSideL / 2&lt;BR /&gt;
			hotline2 -pentX1 - pentX2,	-pentSideL / 2,		-pentX1,			-titleHeight / 2&lt;BR /&gt;
			hotline2 -pentX1,			-titleHeight / 2,	 0,					 0&lt;BR /&gt;
&lt;BR /&gt;
			poly2_b 5, 7, gs_symbol_fill_fg, gs_symbol_fill_bg,&lt;BR /&gt;
				 0,				  0,				1,&lt;BR /&gt;
				-pentX1,		  titleHeight / 2,	1,&lt;BR /&gt;
				-pentX1 - pentX2, pentSideL / 2,	1,&lt;BR /&gt;
				-pentX1 - pentX2,-pentSideL / 2,	1,&lt;BR /&gt;
				-pentX1,		 -titleHeight / 2,	1&lt;BR /&gt;
			del 1&lt;BR /&gt;
&lt;BR /&gt;
			upperLineDx		= pentX2&lt;BR /&gt;
			middleLineDx	= pentX1 + pentX2&lt;BR /&gt;
			bottomLineDx	= pentX2&lt;BR /&gt;
		endif&lt;BR /&gt;
	endif&lt;BR /&gt;
return&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
I know i have to add it here and then again i have to add it in the Master Script.&lt;BR /&gt;
&lt;BR /&gt;
".........dim mSymbolStyle[4]&lt;BR /&gt;
	mSymbolStyle[1] = `Circle`&lt;BR /&gt;
	mSymbolStyle[2] = `Elliptoid`&lt;BR /&gt;
	mSymbolStyle[3] = `Rectangular`&lt;BR /&gt;
	mSymbolStyle[4] = `Pentagonal` ......"&lt;BR /&gt;
&lt;BR /&gt;
Somehow i always get stuck.  &lt;IMG src="https://community.graphisoft.com/legacyfs/online/emojis/icon_question.gif" style="display : inline;" /&gt;  &lt;IMG src="https://community.graphisoft.com/legacyfs/online/emojis/icon_exclaim.gif" style="display : inline;" /&gt;  &lt;IMG src="https://community.graphisoft.com/legacyfs/online/emojis/icon_question.gif" style="display : inline;" /&gt;</description>
      <pubDate>Fri, 18 May 2007 07:10:35 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/Libraries-objects/Custom-symbol-in-drawing-title/m-p/51111#M31532</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2007-05-18T07:10:35Z</dc:date>
    </item>
    <item>
      <title>Re: Custom symbol in drawing title</title>
      <link>https://community.graphisoft.com/t5/Libraries-objects/Custom-symbol-in-drawing-title/m-p/51112#M31533</link>
      <description>No time to test, just a try:&lt;BR /&gt;
&lt;BR /&gt;
...&lt;BR /&gt;
&lt;BR /&gt;
 if gs_symbol_style = mSymbolStyle[1] then ! Circle&lt;BR /&gt;
hotarc2 titleHeight / 2, -titleHeight / 2, titleHeight / 2, 0, 180&lt;BR /&gt;
hotarc2 titleHeight / 2, -titleHeight / 2, titleHeight / 2, 180, 0&lt;BR /&gt;
&lt;BR /&gt;
! circle&lt;BR /&gt;
poly2_b 2, 7, gs_symbol_fill_fg, gs_symbol_fill_bg,&lt;BR /&gt;
titleHeight / 2, -titleHeight / 2, 901,&lt;BR /&gt;
titleHeight / 2, 360, 4001&lt;BR /&gt;
&lt;BR /&gt;
! cross&lt;BR /&gt;
line2 -titleHeight / 2, 0, titleHeight / 2, 0&lt;BR /&gt;
line2 0, -titleHeight / 2, 0, titleHeight / 2&lt;BR /&gt;
&lt;BR /&gt;
! left&lt;BR /&gt;
line2 -titleHeight / 2, titleHeight / 2, -titleHeight / 4, -titleHeight / 2&lt;BR /&gt;
line2 0, titleHeight / 2, -titleHeight / 4, -titleHeight / 2&lt;BR /&gt;
&lt;BR /&gt;
! right&lt;BR /&gt;
ine2 titleHeight / 2, titleHeight / 2, titleHeight / 4, -titleHeight / 2&lt;BR /&gt;
line2 0, titleHeight / 2, titleHeight / 4, -titleHeight / 2&lt;BR /&gt;
&lt;BR /&gt;
! boundary&lt;BR /&gt;
add2 -titleHeight / 2, -titleHeight / 2&lt;BR /&gt;
rect2 titleHeight, titleHeight&lt;BR /&gt;
del 1&lt;BR /&gt;
&lt;BR /&gt;
upperLineDx = titleHeight / 2&lt;BR /&gt;
middleLineDx = titleHeight&lt;BR /&gt;
bottomLineDx = titleHeight / 2&lt;BR /&gt;
endif&lt;BR /&gt;
&lt;BR /&gt;
...</description>
      <pubDate>Mon, 21 May 2007 06:28:06 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/Libraries-objects/Custom-symbol-in-drawing-title/m-p/51112#M31533</guid>
      <dc:creator>Frank Beister</dc:creator>
      <dc:date>2007-05-21T06:28:06Z</dc:date>
    </item>
    <item>
      <title>Re: Custom symbol in drawing title</title>
      <link>https://community.graphisoft.com/t5/Libraries-objects/Custom-symbol-in-drawing-title/m-p/51113#M31534</link>
      <description>Thanx for all the help.&lt;BR /&gt;
It's not working just yet but i'm getting closer. as you can see in the picture the figure is there and it scales with the text the only problem left is it is not at the correct placeand the rectangle is missing. &lt;BR /&gt;
&lt;BR /&gt;
But much better than what i had so far.&lt;BR /&gt;
Thanx</description>
      <pubDate>Mon, 21 May 2007 07:31:10 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/Libraries-objects/Custom-symbol-in-drawing-title/m-p/51113#M31534</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2007-05-21T07:31:10Z</dc:date>
    </item>
    <item>
      <title>Re: Custom symbol in drawing title</title>
      <link>https://community.graphisoft.com/t5/Libraries-objects/Custom-symbol-in-drawing-title/m-p/51114#M31535</link>
      <description>The placement is easy to fix.&lt;BR /&gt;
&lt;BR /&gt;
Immediately before Frank's code put&lt;BR /&gt;
&lt;BR /&gt;
add2 -titleHeight / 2, -titleHeight/2&lt;BR /&gt;
&lt;BR /&gt;
immediately after put&lt;BR /&gt;
&lt;BR /&gt;
del 1&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
Also Frank did show the square&lt;BR /&gt;
see "rect2" so not sure why you are not seeing it</description>
      <pubDate>Mon, 21 May 2007 09:07:00 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/Libraries-objects/Custom-symbol-in-drawing-title/m-p/51114#M31535</guid>
      <dc:creator>Aussie John</dc:creator>
      <dc:date>2007-05-21T09:07:00Z</dc:date>
    </item>
    <item>
      <title>Re: Custom symbol in drawing title</title>
      <link>https://community.graphisoft.com/t5/Libraries-objects/Custom-symbol-in-drawing-title/m-p/51115#M31536</link>
      <description>Thanx, but it did not work...&lt;BR /&gt;
&lt;BR /&gt;
it moved everything to a new possition.&lt;BR /&gt;
&lt;BR /&gt;
and as for the rect2 this is the massage that i get????</description>
      <pubDate>Mon, 21 May 2007 09:19:58 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/Libraries-objects/Custom-symbol-in-drawing-title/m-p/51115#M31536</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2007-05-21T09:19:58Z</dc:date>
    </item>
    <item>
      <title>Re: Custom symbol in drawing title</title>
      <link>https://community.graphisoft.com/t5/Libraries-objects/Custom-symbol-in-drawing-title/m-p/51116#M31537</link>
      <description>I played with the text that you gave me and just took the minus away and now it seems to be working.&lt;BR /&gt;
&lt;BR /&gt;
"add2 titleHeight/2, -titleHeight/2"&lt;BR /&gt;
&lt;BR /&gt;
Thanx a lot &lt;IMG src="https://community.graphisoft.com/legacyfs/online/emojis/icon_biggrin.gif" style="display : inline;" /&gt;</description>
      <pubDate>Mon, 21 May 2007 09:31:09 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/Libraries-objects/Custom-symbol-in-drawing-title/m-p/51116#M31537</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2007-05-21T09:31:09Z</dc:date>
    </item>
  </channel>
</rss>

