<?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 Changing object display per MVO? in Libraries &amp; objects</title>
    <link>https://community.graphisoft.com/t5/Libraries-objects/Changing-object-display-per-MVO/m-p/229239#M2225</link>
    <description>&lt;DIV class="actalk-migrated-content"&gt;&lt;T&gt;I've been trying to figure out how to change how an object is shown in the Reflected Ceiling Plan.  I do a lot of projects where the lighting needs to align with millwork or tables, and I build standard millwork in GDL.  I would like the millwork to show as a dashed outline in the Reflected Ceiling Plan.  &lt;BR /&gt;
Is there a way to add an "If... GoSub" routine to the 2d script, so that when the MVO is RCP, the 2D view will change? &lt;BR /&gt;
I've been trying to figure it out from the GDL reference guide, but I can't determine where it addresses it...&lt;/T&gt;&lt;/DIV&gt;</description>
    <pubDate>Fri, 31 May 2019 22:58:29 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2019-05-31T22:58:29Z</dc:date>
    <item>
      <title>Changing object display per MVO?</title>
      <link>https://community.graphisoft.com/t5/Libraries-objects/Changing-object-display-per-MVO/m-p/229239#M2225</link>
      <description>&lt;DIV class="actalk-migrated-content"&gt;&lt;T&gt;I've been trying to figure out how to change how an object is shown in the Reflected Ceiling Plan.  I do a lot of projects where the lighting needs to align with millwork or tables, and I build standard millwork in GDL.  I would like the millwork to show as a dashed outline in the Reflected Ceiling Plan.  &lt;BR /&gt;
Is there a way to add an "If... GoSub" routine to the 2d script, so that when the MVO is RCP, the 2D view will change? &lt;BR /&gt;
I've been trying to figure it out from the GDL reference guide, but I can't determine where it addresses it...&lt;/T&gt;&lt;/DIV&gt;</description>
      <pubDate>Fri, 31 May 2019 22:58:29 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/Libraries-objects/Changing-object-display-per-MVO/m-p/229239#M2225</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2019-05-31T22:58:29Z</dc:date>
    </item>
    <item>
      <title>Re: Changing object display per MVO?</title>
      <link>https://community.graphisoft.com/t5/Libraries-objects/Changing-object-display-per-MVO/m-p/229240#M2226</link>
      <description>The reflected ceiling option was added to the MVOs before intodution of the LIBRARYGLOBAL command.&lt;BR /&gt;
I think the old syntax should work still. I used it in tis way:&lt;BR /&gt;

&lt;PRE&gt;x=REQUEST ("floor_plan_option", "", storyViewpointType)
IF storyViewpointType THEN 
...
ENDIF&lt;/PRE&gt;
0 stays for floor plan, 1 statys for reflected celing plan.&lt;BR /&gt;
&lt;BR /&gt;
The new LIBRARYGLOBAL syntax is the following (you find it in the macro GetPlanViewGlobals:&lt;BR /&gt;

&lt;PRE&gt;!----------------------------------------------------------------------------------------------
!2D options MVO
!----------------------------------------------------------------------------------------------

reqILSymbol = gs_symbtype_2D_m
if reqILSymbol = PLANSYMB_BY_MVO then
	reqILSymbolTemp = 0
	success = LIBRARYGLOBAL ("LibraryGlobals13", "iLSymbol", reqILSymbolTemp)
	if success &amp;gt; 0 then
		reqILSymbol = reqILSymbolTemp
	else
		reqILSymbol = PLANSYMB_RCP
	endif
endif
end reqILSymbol

PLANSYMB_REALISTIC = 1
PLANSYMB_ELECTRIC = 2
PLANSYMB_RCP = 3
PLANSYMB_BY_MVO = 4&lt;/PRE&gt;

After this you can make a Case distinction: IF reqILSymbol = 1 THEN ...&lt;BR /&gt;
&lt;BR /&gt;
Aand you need the parameter "gs_symbtype_2D_m" as INT-type and a VALUES{2} in Parameter-Script.</description>
      <pubDate>Sat, 01 Jun 2019 21:24:37 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/Libraries-objects/Changing-object-display-per-MVO/m-p/229240#M2226</guid>
      <dc:creator>Jochen Suehlo</dc:creator>
      <dc:date>2019-06-01T21:24:37Z</dc:date>
    </item>
  </channel>
</rss>

