<?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: Detail Marker Customization in GDL</title>
    <link>https://community.graphisoft.com/t5/GDL/Detail-Marker-Customization/m-p/649908#M7396</link>
    <description>&lt;P&gt;I finally got it working!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Turns out I just needed to add the bFirstLayoutID parameter to the Detail Marker object as well...I had only added it in the BaseMarker_Macro parameters...&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;So a recap of the whole process:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;OL&gt;&lt;LI&gt;Copied and resaved BaseMarker_Macro to BaseMarker_Macro_Edited&lt;/LI&gt;&lt;LI&gt;Copied and resaved Detail Marker 01 27 to Detail Marker 01 27 - Edited&lt;/LI&gt;&lt;LI&gt;In the Detail Marker:&lt;OL&gt;&lt;LI&gt;Changed the call in Master Scripts panel to "BaseMarker_Macro_Edited"&lt;/LI&gt;&lt;LI&gt;Added "bShowFirstLayoutID" parameter&lt;/LI&gt;&lt;/OL&gt;&lt;/LI&gt;&lt;LI&gt;In BaseMarker_Macro_Edited:&lt;BR /&gt;&lt;OL&gt;&lt;LI&gt;Added "bShowFirstLayoutID" parameter&lt;/LI&gt;&lt;LI&gt;Under the Master Scripts panel, added this code within the 'if not (AC_NoLinkMarker)' then loop (starts at line 47 in my code):&lt;/LI&gt;&lt;/OL&gt;&lt;/LI&gt;&lt;/OL&gt;&lt;LI-CODE lang="markup"&gt;if bShowFirstLayoutID &amp;amp; AC_ReferToDrawing then
		if contentFirstRow &amp;lt;&amp;gt; "" then
			stSeparator = " "
		else
			stSeparator = ""
		endif
		contentFirstRow = contentFirstRow + stSeparator + "&amp;lt;MARKERSHEETNUMBER_R&amp;gt;" + AC_DrawingGUID
	endif&lt;/LI-CODE&gt;&lt;P class="lia-indent-padding-left-30px"&gt;5. In the Parameter Scripts panel, revised the if AC_NoLinkMarker then statement to (line 209 in my code):&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;if AC_NoLinkMarker then
	lock	"bShowReferenceID",
			"bShowDetailNameInFirstRow",
			"bShowDrawingID",
			"bShowDetailNameInSecondRow",
			"bShowFirstLayoutID",
			"bShowLayoutID"

	hideparameter	"bShowReferenceID",
					"bShowDetailNameInFirstRow",
					"bShowDrawingID",
					"bShowFirstLayoutID",
					"bShowDetailNameInSecondRow",
					"bShowLayoutID"
endif&lt;/LI-CODE&gt;&lt;P class="lia-indent-padding-left-30px"&gt;6. In the Interface Scripts panel, added this code within the ui_outfield 'First Marker Text' section (line 388 in my code):&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;	ui_infield{3} "bShowFirstLayoutID",  x3, yCurr - 4, fullWidth - x3, infHeight,
		7, "", 0, 0,
		0, 0, 0, 0,
		0, `Show Layout ID`, 0,
		0, `Show Layout ID`, 1
	yCurr = yCurr + dy&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P class="lia-indent-padding-left-30px"&gt;7. Also in the Interface panel, I had to slightly modify some of the pixel widths of the "pageMarkerText:" so that some text isnt cut off. Here's what mine looks like:&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;! ===================================================================
"pageMarkerText":
! ===================================================================
	pageStartY	= 8
	dy			= 23
	_colWidth	= 297
	x1			= 1
	x2			= x1 + _colWidth + 2
	x3 			= x1 + 15
	infHeight	= 19
	infWidth	= 143
	outfHeight	= 15
	fullWidth 	= 443
	buttWidth	= 34
	buttHeight	= 20&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Again, thanks so much for the help &lt;a href="https://community.graphisoft.com/t5/user/viewprofilepage/user-id/7331"&gt;@Barry Kelly&lt;/a&gt;, I learned a ton - Hope this helps anyone that is looking to edit their marker....&lt;/P&gt;</description>
    <pubDate>Fri, 31 Jan 2025 16:24:20 GMT</pubDate>
    <dc:creator>srdavids</dc:creator>
    <dc:date>2025-01-31T16:24:20Z</dc:date>
    <item>
      <title>Detail Marker Customization</title>
      <link>https://community.graphisoft.com/t5/GDL/Detail-Marker-Customization/m-p/647693#M7382</link>
      <description>&lt;P&gt;Hi All,&lt;/P&gt;
&lt;P&gt;Has anyone had any luck creating custom detail markers? I'm trying to achieve the look of the markers below, but without having to resort to my current way of using a masking fill and separate autotext label to hide the marker head.&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Screenshot 2025-01-28 at 1.21.12 PM.png" style="width: 400px;"&gt;&lt;img src="https://community.graphisoft.com/t5/image/serverpage/image-id/82442iA56CB0369090665C/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Screenshot 2025-01-28 at 1.21.12 PM.png" alt="Screenshot 2025-01-28 at 1.21.12 PM.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;I tried digging around and editing an existing marker, but couldnt make any progress. I also tried making an object with the subtype of detail marker or section marker, but am just not familiar enough to get it to do what I want.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Any help or point in the right direction is appreciated.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="courier new,courier" color="grey"&gt;Operating system used: &lt;EM&gt;Mac Apple Silicon 14.7.2&lt;/EM&gt;&lt;/FONT&gt;&lt;/P&gt;</description>
      <pubDate>Sat, 01 Feb 2025 23:40:16 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/GDL/Detail-Marker-Customization/m-p/647693#M7382</guid>
      <dc:creator>srdavids</dc:creator>
      <dc:date>2025-02-01T23:40:16Z</dc:date>
    </item>
    <item>
      <title>Re: Detail Marker Customization</title>
      <link>https://community.graphisoft.com/t5/GDL/Detail-Marker-Customization/m-p/647724#M7383</link>
      <description>&lt;P&gt;Detail Marker 01 is in the default library.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="BarryKelly_0-1738110171926.png" style="width: 999px;"&gt;&lt;img src="https://community.graphisoft.com/t5/image/serverpage/image-id/82459iF7C275A01981A574/image-size/large?v=v2&amp;amp;px=999" role="button" title="BarryKelly_0-1738110171926.png" alt="BarryKelly_0-1738110171926.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Is that what you want?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Barry.&lt;/P&gt;</description>
      <pubDate>Wed, 29 Jan 2025 00:23:39 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/GDL/Detail-Marker-Customization/m-p/647724#M7383</guid>
      <dc:creator>Barry Kelly</dc:creator>
      <dc:date>2025-01-29T00:23:39Z</dc:date>
    </item>
    <item>
      <title>Re: Detail Marker Customization</title>
      <link>https://community.graphisoft.com/t5/GDL/Detail-Marker-Customization/m-p/647740#M7384</link>
      <description>&lt;P&gt;&lt;a href="https://community.graphisoft.com/t5/user/viewprofilepage/user-id/7331"&gt;@Barry Kelly&lt;/a&gt;! Thanks so much for the reply, it got me in the ballpark and actually your screenshot is what led me to the solution, albeit I have to use a slight workaround.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;First - Ideally I want to actually be referencing the Layout ID. We do this because we use an 8.5x11 detail book where each 3" detail gets its own sheet. This is where I'm having to use a workaround that I don't love, but works until I figure out the ideal solution.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;So the dividing line in the head will go away if nothing in "Second Marker Text" checked. If I check "Show Layout ID," the line returns as seen below:&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Screenshot 2025-01-28 at 9.11.42 PM.png" style="width: 400px;"&gt;&lt;img src="https://community.graphisoft.com/t5/image/serverpage/image-id/82467i06BBA319633AC95A/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Screenshot 2025-01-28 at 9.11.42 PM.png" alt="Screenshot 2025-01-28 at 9.11.42 PM.png" /&gt;&lt;/span&gt;&amp;nbsp;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Screenshot 2025-01-28 at 9.07.49 PM.png" style="width: 400px;"&gt;&lt;img src="https://community.graphisoft.com/t5/image/serverpage/image-id/82465iBD452D1D65E2A342/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Screenshot 2025-01-28 at 9.07.49 PM.png" alt="Screenshot 2025-01-28 at 9.07.49 PM.png" /&gt;&lt;/span&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;My workaround is that I can just change my Drawing ID to match the sheet number. The problem is, if I re-order my sheets or add details, I will have to manually change the Drawing ID to match&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Screenshot 2025-01-28 at 9.08.41 PM.png" style="width: 400px;"&gt;&lt;img src="https://community.graphisoft.com/t5/image/serverpage/image-id/82466i7CB30280F075ADD5/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Screenshot 2025-01-28 at 9.08.41 PM.png" alt="Screenshot 2025-01-28 at 9.08.41 PM.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Second, here's a fun bug: In Dark mode, not all options are visible. (see Line Style and Text Rotation Options). Barry, your screenshot made me realize that I was not seeing every option. I work in dark mode so I had no idea...&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Screenshot 2025-01-28 at 9.00.56 PM.png" style="width: 400px;"&gt;&lt;img src="https://community.graphisoft.com/t5/image/serverpage/image-id/82463i50D1A4D76C62B81A/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Screenshot 2025-01-28 at 9.00.56 PM.png" alt="Screenshot 2025-01-28 at 9.00.56 PM.png" /&gt;&lt;/span&gt;&amp;nbsp;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Screenshot 2025-01-28 at 9.01.19 PM.png" style="width: 384px;"&gt;&lt;img src="https://community.graphisoft.com/t5/image/serverpage/image-id/82464iE71D25FC302B8427/image-dimensions/384x317?v=v2" width="384" height="317" role="button" title="Screenshot 2025-01-28 at 9.01.19 PM.png" alt="Screenshot 2025-01-28 at 9.01.19 PM.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Anyway, this works for now - but if anyone knows a way to reference Layout ID &lt;EM&gt;AND &lt;/EM&gt;get it to show centered in the circle, I'd be forever grateful.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Cheers&lt;/P&gt;</description>
      <pubDate>Wed, 29 Jan 2025 03:18:26 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/GDL/Detail-Marker-Customization/m-p/647740#M7384</guid>
      <dc:creator>srdavids</dc:creator>
      <dc:date>2025-01-29T03:18:26Z</dc:date>
    </item>
    <item>
      <title>Re: Detail Marker Customization</title>
      <link>https://community.graphisoft.com/t5/GDL/Detail-Marker-Customization/m-p/647743#M7385</link>
      <description>&lt;P&gt;I wasn't looking at the content.&lt;/P&gt;
&lt;P&gt;I just thought you wanted a straight line to the detail bubble.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I am not sure if it is possible to 'Save As' a custom marker, but you can certainly script your own in GDL.&lt;/P&gt;
&lt;P&gt;That Detail 01 object obviously has layoutID as an option for the second line.&lt;/P&gt;
&lt;P&gt;I don't see why it could not be re-scripted to be allowed on the first line.&lt;/P&gt;
&lt;P&gt;Might be easier said than done though - I have not looked at the scripts.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I just tried adding &amp;lt;LAYOUTID&amp;gt; to the custom text field and crashed Archicad 3 times in doing so.&lt;/P&gt;
&lt;P&gt;I am not sure if that is supposed to work or not.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;As for dark mode, I wouldn't use it.&lt;/P&gt;
&lt;P&gt;I don't think it works properly on Windows or Macs.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Barry.&lt;/P&gt;</description>
      <pubDate>Wed, 29 Jan 2025 04:25:32 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/GDL/Detail-Marker-Customization/m-p/647743#M7385</guid>
      <dc:creator>Barry Kelly</dc:creator>
      <dc:date>2025-01-29T04:25:32Z</dc:date>
    </item>
    <item>
      <title>Re: Detail Marker Customization</title>
      <link>https://community.graphisoft.com/t5/GDL/Detail-Marker-Customization/m-p/648012#M7386</link>
      <description>&lt;P&gt;Totally my fault, I clearly left out some information in my first post.&amp;nbsp; Thanks for the follow up, I also had not heard about the Dark Mode bugs, but I see them now in the forums when I search....&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;When I try &amp;lt;LAYOUTID&amp;gt; in the custom field, I don't get a crash and I &lt;EM&gt;do &lt;/EM&gt;get the autotext #LayID to appear in the marker, but it doesn't actually seem to be pulling the info...So close, yet so far!&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Screenshot 2025-01-29 at 9.40.22 AM.png" style="width: 275px;"&gt;&lt;img src="https://community.graphisoft.com/t5/image/serverpage/image-id/82489i4E644356CA5204BD/image-dimensions/275x221?v=v2" width="275" height="221" role="button" title="Screenshot 2025-01-29 at 9.40.22 AM.png" alt="Screenshot 2025-01-29 at 9.40.22 AM.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;I'm going to try experimenting with the BaseMarker Macro when I get a chance, see if I can blunder my way through getting what I want. I'll post back if I have any luck&lt;/P&gt;</description>
      <pubDate>Wed, 29 Jan 2025 19:35:32 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/GDL/Detail-Marker-Customization/m-p/648012#M7386</guid>
      <dc:creator>srdavids</dc:creator>
      <dc:date>2025-01-29T19:35:32Z</dc:date>
    </item>
    <item>
      <title>Re: Detail Marker Customization</title>
      <link>https://community.graphisoft.com/t5/GDL/Detail-Marker-Customization/m-p/648043#M7387</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://community.graphisoft.com/t5/user/viewprofilepage/user-id/22300"&gt;@srdavids&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;I'm going to try experimenting with the BaseMarker Macro when I get a chance, see if I can blunder my way through getting what I want. I'll post back if I have any luck&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;I did have a quick look, but didn't get very far, just don't have the time to play around at the moment.&lt;/P&gt;
&lt;P&gt;It must be possible.&lt;/P&gt;
&lt;P&gt;If it can be an option for the second line, there should be no reason why it can't be an option for the first line as well.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Barry.&lt;/P&gt;</description>
      <pubDate>Thu, 30 Jan 2025 00:36:49 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/GDL/Detail-Marker-Customization/m-p/648043#M7387</guid>
      <dc:creator>Barry Kelly</dc:creator>
      <dc:date>2025-01-30T00:36:49Z</dc:date>
    </item>
    <item>
      <title>Re: Detail Marker Customization</title>
      <link>https://community.graphisoft.com/t5/GDL/Detail-Marker-Customization/m-p/648052#M7388</link>
      <description>&lt;P&gt;t2 from&amp;nbsp;&lt;EM&gt;Marker Linked Parameters&lt;/EM&gt; macro?&lt;/P&gt;</description>
      <pubDate>Thu, 30 Jan 2025 01:43:27 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/GDL/Detail-Marker-Customization/m-p/648052#M7388</guid>
      <dc:creator>Lingwisyer</dc:creator>
      <dc:date>2025-01-30T01:43:27Z</dc:date>
    </item>
    <item>
      <title>Re: Detail Marker Customization</title>
      <link>https://community.graphisoft.com/t5/GDL/Detail-Marker-Customization/m-p/648090#M7389</link>
      <description>&lt;P&gt;Not sure what you mean &lt;a href="https://community.graphisoft.com/t5/user/viewprofilepage/user-id/11140"&gt;@Lingwisyer&lt;/a&gt; - but I don't &lt;EM&gt;really &lt;/EM&gt;know what Im doing with coding/GDL.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;It looks like it's pulling the code for labeling the head from Basemarker_macro, but I dont know enough to make it happen. I was able to add a checkbox for "Show Layout ID" but I can't figure out how to add parameters to the macro nor how to implement it that so it functions in the script...&lt;/P&gt;</description>
      <pubDate>Thu, 30 Jan 2025 07:09:48 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/GDL/Detail-Marker-Customization/m-p/648090#M7389</guid>
      <dc:creator>srdavids</dc:creator>
      <dc:date>2025-01-30T07:09:48Z</dc:date>
    </item>
    <item>
      <title>Re: Detail Marker Customization</title>
      <link>https://community.graphisoft.com/t5/GDL/Detail-Marker-Customization/m-p/648095#M7390</link>
      <description>&lt;P&gt;I did a quick test and got it to work, but I have not fixed up the interface - which you seem to have done.&lt;/P&gt;
&lt;P&gt;Create a new parameter "&lt;SPAN&gt;bShowFirstLayoutID&lt;/SPAN&gt;&lt;SPAN&gt;" if you want to have a separate layout ID text for both lines.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Now search the master script for the original parameter name "&lt;/SPAN&gt;&lt;SPAN&gt;bShowLayoutID&lt;/SPAN&gt;&lt;SPAN&gt;".&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;There will be a short section of script to use for the second line of text.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Copy this and past it into the section of script for the first line of text and alter the parameter name and where I have shown in image so it works for the first line.&lt;/SPAN&gt;&lt;/P&gt;
&lt;DIV id="tinyMceEditor_3a478e79777876BarryKelly_0" class="mceNonEditable lia-copypaste-placeholder"&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="BarryKelly_7-1738222574996.png" style="width: 999px;"&gt;&lt;img src="https://community.graphisoft.com/t5/image/serverpage/image-id/82522i967E251DC26181FD/image-size/large?v=v2&amp;amp;px=999" role="button" title="BarryKelly_7-1738222574996.png" alt="BarryKelly_7-1738222574996.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;DIV id="tinyMceEditor_3a4870b2f79d94BarryKelly_6" class="mceNonEditable lia-copypaste-placeholder"&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;P&gt;That and the change to the interface script should be all you need to do.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Barry.&lt;/P&gt;</description>
      <pubDate>Thu, 30 Jan 2025 08:50:08 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/GDL/Detail-Marker-Customization/m-p/648095#M7390</guid>
      <dc:creator>Barry Kelly</dc:creator>
      <dc:date>2025-01-30T08:50:08Z</dc:date>
    </item>
    <item>
      <title>Re: Detail Marker Customization</title>
      <link>https://community.graphisoft.com/t5/GDL/Detail-Marker-Customization/m-p/648104#M7391</link>
      <description>&lt;P&gt;That is the parameter and macro that pulls the layout ID, though as Barry has shown, there is no need to go that deep...&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;ps. That is a lot of white space you've got there Barry.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Ling.&lt;/P&gt;</description>
      <pubDate>Thu, 30 Jan 2025 08:24:41 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/GDL/Detail-Marker-Customization/m-p/648104#M7391</guid>
      <dc:creator>Lingwisyer</dc:creator>
      <dc:date>2025-01-30T08:24:41Z</dc:date>
    </item>
    <item>
      <title>Re: Detail Marker Customization</title>
      <link>https://community.graphisoft.com/t5/GDL/Detail-Marker-Customization/m-p/648777#M7392</link>
      <description>&lt;P&gt;Hey Barry,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;STRIKE&gt;Well, I seem to be missing something. I've added the script as you show in your screenshot, but now get an "Uninitialized Variable in the Master Script" error.&lt;/STRIKE&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Nevermind - Ignore this comment, I realized my mistake of not actually getting the parameter/variable name right. Noodle brain with a 2 year old that doesnt sleep....Still dont quite have it working but ill look again tomorrow&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks again for your help.&lt;/P&gt;</description>
      <pubDate>Fri, 31 Jan 2025 01:00:01 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/GDL/Detail-Marker-Customization/m-p/648777#M7392</guid>
      <dc:creator>srdavids</dc:creator>
      <dc:date>2025-01-31T01:00:01Z</dc:date>
    </item>
    <item>
      <title>Re: Detail Marker Customization</title>
      <link>https://community.graphisoft.com/t5/GDL/Detail-Marker-Customization/m-p/648855#M7393</link>
      <description>&lt;P&gt;All I did was open the marker object and 'save as' with a new name.&lt;/P&gt;
&lt;P&gt;Then I opened the macro and saved that with a new name as well.&lt;/P&gt;
&lt;P&gt;In the marker object amend the CALL statement so it has the new name of the macro,&lt;/P&gt;
&lt;P&gt;Then I edited the macro as shown in previous image - created the new boolean parameter and added the new bit of script to use that parameter in the first line.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Then you need to tweak the interface script to show the new option (I never got that far, but it sounds like you did).&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Barry.&lt;/P&gt;</description>
      <pubDate>Fri, 31 Jan 2025 01:08:14 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/GDL/Detail-Marker-Customization/m-p/648855#M7393</guid>
      <dc:creator>Barry Kelly</dc:creator>
      <dc:date>2025-01-31T01:08:14Z</dc:date>
    </item>
    <item>
      <title>Re: Detail Marker Customization</title>
      <link>https://community.graphisoft.com/t5/GDL/Detail-Marker-Customization/m-p/648911#M7394</link>
      <description>&lt;P&gt;I'm SO close! I've got the Layout ID showing like I want it, I just can't quite get the interface working.&amp;nbsp;&lt;a href="https://community.graphisoft.com/t5/user/viewprofilepage/user-id/7331"&gt;@Barry Kelly&lt;/a&gt; thanks so much for the guidance and for sticking with me, if you want to bail here I totally get it. I'd happily put the object as-is in our template. If I could get the last bit of UI working, it would be the cherry on top.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Screenshot 2025-01-31 at 12.17.06 AM.png" style="width: 258px;"&gt;&lt;img src="https://community.graphisoft.com/t5/image/serverpage/image-id/82603iB59502166F975EF9/image-dimensions/258x207?v=v2" width="258" height="207" role="button" title="Screenshot 2025-01-31 at 12.17.06 AM.png" alt="Screenshot 2025-01-31 at 12.17.06 AM.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I'm not sure why, but when I check the UI preview from the editor, it shows correctly and I get no errors:&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Screenshot 2025-01-31 at 12.18.16 AM.png" style="width: 999px;"&gt;&lt;img src="https://community.graphisoft.com/t5/image/serverpage/image-id/82604iA71F88CDEF9E5BB7/image-size/large?v=v2&amp;amp;px=999" role="button" title="Screenshot 2025-01-31 at 12.18.16 AM.png" alt="Screenshot 2025-01-31 at 12.18.16 AM.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;But when I open the UI of the Detail Object, the Layout ID checkbox is missing:&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Screenshot 2025-01-31 at 12.24.21 AM.png" style="width: 400px;"&gt;&lt;img src="https://community.graphisoft.com/t5/image/serverpage/image-id/82605i30A390A7DFCFBCD5/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Screenshot 2025-01-31 at 12.24.21 AM.png" alt="Screenshot 2025-01-31 at 12.24.21 AM.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Could be totally off base here, but my best guess is it might have something to do with this section from the Parameters scripts? but again, I dont understand what is happening here:&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Screenshot 2025-01-31 at 12.55.47 AM.png" style="width: 400px;"&gt;&lt;img src="https://community.graphisoft.com/t5/image/serverpage/image-id/82608iBD590518EAB2CBD7/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Screenshot 2025-01-31 at 12.55.47 AM.png" alt="Screenshot 2025-01-31 at 12.55.47 AM.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt; &lt;/P&gt;
&lt;P&gt;And my snippet from Interface, which doesnt quite work:&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Screenshot 2025-01-31 at 12.32.53 AM.png" style="width: 664px;"&gt;&lt;img src="https://community.graphisoft.com/t5/image/serverpage/image-id/82607i65BA743B215C8DD5/image-dimensions/664x614?v=v2" width="664" height="614" role="button" title="Screenshot 2025-01-31 at 12.32.53 AM.png" alt="Screenshot 2025-01-31 at 12.32.53 AM.png" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 31 Jan 2025 07:52:21 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/GDL/Detail-Marker-Customization/m-p/648911#M7394</guid>
      <dc:creator>srdavids</dc:creator>
      <dc:date>2025-01-31T07:52:21Z</dc:date>
    </item>
    <item>
      <title>Re: Detail Marker Customization</title>
      <link>https://community.graphisoft.com/t5/GDL/Detail-Marker-Customization/m-p/648929#M7395</link>
      <description>&lt;P&gt;The layout ID only works when the detail is linked to a drawing on the layout.&lt;/P&gt;
&lt;P&gt;Hence the AC_NoLinkMarker checks.&lt;/P&gt;
&lt;P&gt;In any of the scripts where you see "bShowLayoutID", you need to add and identical bit of script for "bShowFirstLayoutID".&lt;/P&gt;
&lt;P&gt;So add that parameter to the 'hideparameter' section in the parameter script.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If the preview of the interface is working, i am not sure why the actual object interface is not the same - unless you didn't save the object.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I can't look at it at the moment , but I will have a look this weekend.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Barry.&lt;/P&gt;</description>
      <pubDate>Fri, 31 Jan 2025 08:00:20 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/GDL/Detail-Marker-Customization/m-p/648929#M7395</guid>
      <dc:creator>Barry Kelly</dc:creator>
      <dc:date>2025-01-31T08:00:20Z</dc:date>
    </item>
    <item>
      <title>Re: Detail Marker Customization</title>
      <link>https://community.graphisoft.com/t5/GDL/Detail-Marker-Customization/m-p/649908#M7396</link>
      <description>&lt;P&gt;I finally got it working!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Turns out I just needed to add the bFirstLayoutID parameter to the Detail Marker object as well...I had only added it in the BaseMarker_Macro parameters...&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;So a recap of the whole process:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;OL&gt;&lt;LI&gt;Copied and resaved BaseMarker_Macro to BaseMarker_Macro_Edited&lt;/LI&gt;&lt;LI&gt;Copied and resaved Detail Marker 01 27 to Detail Marker 01 27 - Edited&lt;/LI&gt;&lt;LI&gt;In the Detail Marker:&lt;OL&gt;&lt;LI&gt;Changed the call in Master Scripts panel to "BaseMarker_Macro_Edited"&lt;/LI&gt;&lt;LI&gt;Added "bShowFirstLayoutID" parameter&lt;/LI&gt;&lt;/OL&gt;&lt;/LI&gt;&lt;LI&gt;In BaseMarker_Macro_Edited:&lt;BR /&gt;&lt;OL&gt;&lt;LI&gt;Added "bShowFirstLayoutID" parameter&lt;/LI&gt;&lt;LI&gt;Under the Master Scripts panel, added this code within the 'if not (AC_NoLinkMarker)' then loop (starts at line 47 in my code):&lt;/LI&gt;&lt;/OL&gt;&lt;/LI&gt;&lt;/OL&gt;&lt;LI-CODE lang="markup"&gt;if bShowFirstLayoutID &amp;amp; AC_ReferToDrawing then
		if contentFirstRow &amp;lt;&amp;gt; "" then
			stSeparator = " "
		else
			stSeparator = ""
		endif
		contentFirstRow = contentFirstRow + stSeparator + "&amp;lt;MARKERSHEETNUMBER_R&amp;gt;" + AC_DrawingGUID
	endif&lt;/LI-CODE&gt;&lt;P class="lia-indent-padding-left-30px"&gt;5. In the Parameter Scripts panel, revised the if AC_NoLinkMarker then statement to (line 209 in my code):&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;if AC_NoLinkMarker then
	lock	"bShowReferenceID",
			"bShowDetailNameInFirstRow",
			"bShowDrawingID",
			"bShowDetailNameInSecondRow",
			"bShowFirstLayoutID",
			"bShowLayoutID"

	hideparameter	"bShowReferenceID",
					"bShowDetailNameInFirstRow",
					"bShowDrawingID",
					"bShowFirstLayoutID",
					"bShowDetailNameInSecondRow",
					"bShowLayoutID"
endif&lt;/LI-CODE&gt;&lt;P class="lia-indent-padding-left-30px"&gt;6. In the Interface Scripts panel, added this code within the ui_outfield 'First Marker Text' section (line 388 in my code):&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;	ui_infield{3} "bShowFirstLayoutID",  x3, yCurr - 4, fullWidth - x3, infHeight,
		7, "", 0, 0,
		0, 0, 0, 0,
		0, `Show Layout ID`, 0,
		0, `Show Layout ID`, 1
	yCurr = yCurr + dy&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P class="lia-indent-padding-left-30px"&gt;7. Also in the Interface panel, I had to slightly modify some of the pixel widths of the "pageMarkerText:" so that some text isnt cut off. Here's what mine looks like:&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;! ===================================================================
"pageMarkerText":
! ===================================================================
	pageStartY	= 8
	dy			= 23
	_colWidth	= 297
	x1			= 1
	x2			= x1 + _colWidth + 2
	x3 			= x1 + 15
	infHeight	= 19
	infWidth	= 143
	outfHeight	= 15
	fullWidth 	= 443
	buttWidth	= 34
	buttHeight	= 20&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Again, thanks so much for the help &lt;a href="https://community.graphisoft.com/t5/user/viewprofilepage/user-id/7331"&gt;@Barry Kelly&lt;/a&gt;, I learned a ton - Hope this helps anyone that is looking to edit their marker....&lt;/P&gt;</description>
      <pubDate>Fri, 31 Jan 2025 16:24:20 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/GDL/Detail-Marker-Customization/m-p/649908#M7396</guid>
      <dc:creator>srdavids</dc:creator>
      <dc:date>2025-01-31T16:24:20Z</dc:date>
    </item>
    <item>
      <title>Re: Detail Marker Customization</title>
      <link>https://community.graphisoft.com/t5/GDL/Detail-Marker-Customization/m-p/650035#M7397</link>
      <description>&lt;P&gt;I just did it again and had exactly the same problem as you (I had the parameter in both macro and detail object).&lt;/P&gt;
&lt;P&gt;But it seemed saving them a couple of time fixed it up.&lt;/P&gt;
&lt;P&gt;I also stretched the interface window a bit as it was cropping the bottom.&lt;/P&gt;
&lt;P&gt;I have attached my attempt (macro and object in zip file) if anyone else following wants it but does not want to do any GDL editing.&lt;/P&gt;
&lt;P&gt;The license said we can modify and share.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Barry.&lt;/P&gt;</description>
      <pubDate>Sun, 02 Feb 2025 14:03:39 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/GDL/Detail-Marker-Customization/m-p/650035#M7397</guid>
      <dc:creator>Barry Kelly</dc:creator>
      <dc:date>2025-02-02T14:03:39Z</dc:date>
    </item>
  </channel>
</rss>

