<?xml version="1.0" encoding="UTF-8" ?>
<?xml-stylesheet type="text/xsl" href="https://communities.bentley.com/cfs-file/__key/system/syndication/rss.xsl" media="screen"?><rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/"><channel><title>James Davis's Activities</title><link>https://communities.bentley.com/members/6700f6a9_2d00_9554_2d00_4549_2d00_8aa4_2d00_50ba3dfcb2ad</link><description>James Davis's recent activity</description><dc:language>en-US</dc:language><generator>Telligent Community 12</generator><item><title>AutoTurn showing in customize ribbon but not in actual drawing ribbon?</title><link>https://communities.bentley.com/products/road___site_design/f/geopak-inroads-mx-openroads-forum/249244/autoturn-showing-in-customize-ribbon-but-not-in-actual-drawing-ribbon</link><pubDate>Tue, 22 Aug 2023 11:02:11 GMT</pubDate><guid isPermaLink="false">6dad98f5-dbc9-4c4d-a9ba-e9da8dc6aa8e:af3b1969-e52d-4b6f-96bc-8e0cf32b6bd6</guid><dc:creator>James Davis</dc:creator><description>&lt;p&gt;Why won&amp;#39;t Autoturn show up on my drawing ribbon? It is obviously loaded in my customize ribbon dialog see below. What could cause this?&lt;br /&gt;&lt;br /&gt;&lt;img style="max-height:240px;max-width:320px;" src="/resized-image/__size/640x480/__key/communityserver-discussions-components-files/5922/pastedimage1692702072686v1.png" alt=" " /&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>Flex Table not displaying Baseline Station or Offset for catch basins??!?</title><link>https://communities.bentley.com/products/road___site_design/f/geopak-inroads-mx-openroads-forum/245047/flex-table-not-displaying-baseline-station-or-offset-for-catch-basins</link><pubDate>Mon, 08 May 2023 20:57:32 GMT</pubDate><guid isPermaLink="false">6dad98f5-dbc9-4c4d-a9ba-e9da8dc6aa8e:91ddb597-747f-4591-b4b4-bac4e861741f</guid><dc:creator>James Davis</dc:creator><description>&lt;p&gt;You can see in the image below that CB 9 does not display baseline station and offset although it is setup correctly in the properties. If I re add the baseline reference it will then break the station and offset from 2-5 other catch basins. The only way around it is to select all the catch basins at once and then add baseline reference again. But it I move anything or add a catch basin they break again. It is very frustrating. Does anyone else have this problem??&lt;/p&gt;
&lt;p&gt;&lt;img style="max-height:240px;max-width:320px;" src="/resized-image/__size/640x480/__key/communityserver-discussions-components-files/5922/6888.pastedimage1683579381742v1.png" alt=" " /&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>3D PDF prints to dark</title><link>https://communities.bentley.com/products/microstation/microstation_printing/f/printing-and-plotting-forum/107660/3d-pdf-prints-to-dark</link><pubDate>Thu, 04 Jun 2015 06:11:43 GMT</pubDate><guid isPermaLink="false">6dad98f5-dbc9-4c4d-a9ba-e9da8dc6aa8e:f6a1250c-333a-4d4e-a833-acb42e1683d5</guid><dc:creator>Megan Loock</dc:creator><description>&lt;p&gt;Morning,&lt;/p&gt;
&lt;p&gt;Hope someone will be able to assist? I have to print a 3D pdf which I have no trouble doing, but the pdf comes out a lot darker than what is displayed in Microstation.&lt;/p&gt;
&lt;p&gt;What I have tried in order to get it to display lighter &amp;ndash;&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;Had my Default Lighting selected and set it to the max.&lt;/li&gt;
&lt;li&gt;In my Light Manager I set my Lux under Ambient brighter.&lt;/li&gt;
&lt;li&gt;Set the Brightness of my images to 50, in order for them to display brighter once I drape them onto my surface.&lt;/li&gt;
&lt;/ol&gt;
&lt;p&gt;Microstation on left and pdf on right. I have played with the settings in Adobe selected varies forms of lighting, but nothing comes close to what is shown in MS.&lt;/p&gt;
&lt;p&gt;Thanks&lt;/p&gt;
&lt;p&gt;&lt;a href="/cfs-file/__key/communityserver-discussions-components-files/19568/3D-Print-top-Dark.JPG"&gt;&lt;img src="/resized-image/__size/940x0/__key/communityserver-discussions-components-files/19568/3D-Print-top-Dark.JPG" alt=" " /&gt;&lt;/a&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>How to make basic macro loop?</title><link>https://communities.bentley.com/help/f/communities-feedback-forum/172613/how-to-make-basic-macro-loop</link><pubDate>Wed, 19 Dec 2018 21:24:51 GMT</pubDate><guid isPermaLink="false">6dad98f5-dbc9-4c4d-a9ba-e9da8dc6aa8e:31f42d40-ea1a-4ce6-95b7-9993d76af544</guid><dc:creator>James Davis</dc:creator><description>&lt;p&gt;I have never made a macro before but I have a command want to repeat with a loop. All i need to do is add&amp;nbsp;500 ft in x direction each time. Can anyone tell me why this wouldn&amp;#39;t work ??&amp;nbsp;&lt;/p&gt;
&lt;p&gt;Sub main&lt;br /&gt; &lt;br /&gt; Dim startPoint As MbePoint&lt;br /&gt; Dim point As MbePoint, point2 As MbePoint&lt;br /&gt; &lt;br /&gt;&amp;#39; Coordinates are in master units&lt;br /&gt; startPoint.x = 1131371.644684#&lt;br /&gt; startPoint.y = 97271.924289#&lt;br /&gt; startPoint.z = 0.000000#&lt;/p&gt;
&lt;p&gt;i=0&lt;br /&gt; &lt;br /&gt; Do while i &amp;lt; 200&lt;br /&gt; &lt;br /&gt; point.x = startPoint.x +500.000000*i &lt;br /&gt; point.y = startPoint.y &lt;br /&gt; point.z = startPoint.z&lt;br /&gt; point2.x = point.x + 300.000000#&lt;br /&gt; point2.y = point.y - 80.000000#&lt;br /&gt; point2.z = point.z&lt;br /&gt; MbeSendDragPoints point, point2, 1%&lt;/p&gt;
&lt;p&gt;&amp;#39; Start a command&lt;br /&gt; MbeSendCommand &amp;quot;MeasureArea ICON &amp;quot;&lt;/p&gt;
&lt;p&gt;point.x = startPoint.x + 650.000000*i&lt;br /&gt; point.y = startPoint.y + 0.000000#&lt;br /&gt; point.z = startPoint.z&lt;br /&gt; MbeSendDataPoint point, 1%&lt;/p&gt;
&lt;p&gt;point.x = startPoint.x + 650.000000*i&lt;br /&gt; point.y = startPoint.y - 105.000000#&lt;br /&gt; point.z = startPoint.z&lt;br /&gt; MbeSendDataPoint point, 1%&lt;/p&gt;
&lt;p&gt;&amp;#39; Send a reset to the current command&lt;br /&gt; MbeSendReset&lt;br /&gt; &lt;br /&gt; i = i+1&lt;/p&gt;
&lt;p&gt;Loop&lt;br /&gt; &lt;br /&gt;End Sub&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>Ask A Question I</title><link>https://communities.bentley.com/achievements/460ac7df-7ccc-4c42-a204-9e05eef3be09</link><pubDate>Tue, 18 Dec 2018 01:17:54 GMT</pubDate><guid isPermaLink="false">6dad98f5-dbc9-4c4d-a9ba-e9da8dc6aa8e:45f7d7d0-b081-4616-ab4b-36cce6472bb2</guid><dc:creator /><description>Ask a question in a forum.</description></item><item><title>Can you view overlay/Stripping Components in Plan View or 3D view?</title><link>https://communities.bentley.com/products/road___site_design/f/geopak-inroads-mx-openroads-forum/172519/can-you-view-overlay-stripping-components-in-plan-view-or-3d-view</link><pubDate>Tue, 18 Dec 2018 12:59:14 GMT</pubDate><guid isPermaLink="false">6dad98f5-dbc9-4c4d-a9ba-e9da8dc6aa8e:5e69daf6-246e-4ac7-8ca2-b268a8016213</guid><dc:creator>James Davis</dc:creator><description>&lt;p&gt;I am using&amp;nbsp;Microstation V8i Select Series. I have created overlay components with roadway designer which I can display in the cross-sections. I have made sure the style they are set to allows line display. When I go to view components nothing shows. My other components show fine but none of the overlay/stripping show. Where are the feature lines that compile an overlay component hidden?&amp;nbsp;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>Inroads Question - Display Leveling and Milling On Plan View</title><link>https://communities.bentley.com/products/road___site_design/f/geopak-inroads-mx-openroads-forum/124641/inroads-question---display-leveling-and-milling-on-plan-view</link><pubDate>Mon, 08 Aug 2016 18:05:09 GMT</pubDate><guid isPermaLink="false">6dad98f5-dbc9-4c4d-a9ba-e9da8dc6aa8e:b63d623e-837e-435c-a960-133cad525186</guid><dc:creator>Anthony Tygart</dc:creator><description>&lt;p&gt;I am working on an airport runway overlay and I have created overlay\stripping components for both milling and leveling. I want to display these areas on plan view so I can show where the milling and leveling will be needed. Is there a way to have inroads use the component and display it as a shape in plan view. I tried the surface\display\components and it will show pavement, but it will not show the overlay\stripping components.&lt;/p&gt;
&lt;p&gt;If there is not a way to have inroads do that automatically, is there a way for me to have a report output the offset from center line to the start of leveling and another offset to show the end of the leveling section for each cross-section?&lt;/p&gt;
&lt;p&gt;I appreciate any help!&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item></channel></rss>