<?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: Map Series Layout and Text Position for Even/Odd pages in ArcGIS Pro Questions</title>
    <link>https://community.esri.com/t5/arcgis-pro-questions/map-series-layout-and-text-position-for-even-odd/m-p/265558#M11662</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Jeff,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for responding.&amp;nbsp; That is basically what I decided to do within my ArcPro project but without all the code.&amp;nbsp; I just created two maps/layouts, one for the right side and one for the left side.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The ArcMap MapLogic product works without having to make multiple layouts though.&amp;nbsp; Instead, you create what they call an 'anchor' point, and your layout elements move around the anchor point depending on whether you are looking at an even or odd # page.&amp;nbsp; I was hoping ArcPro would incorporate a feature like that, but I guess not.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG class="image-1 jive-image" src="https://community.esri.com/legacyfs/online/432842_pastedImage_1.png" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 09 Jan 2019 14:18:46 GMT</pubDate>
    <dc:creator>BrianBulla</dc:creator>
    <dc:date>2019-01-09T14:18:46Z</dc:date>
    <item>
      <title>Map Series Layout and Text Position for Even/Odd pages</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/map-series-layout-and-text-position-for-even-odd/m-p/265556#M11660</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So I've created a Map Series and I'm trying to figure out a way to alter the position of elements (ie. a Text element) depending on whether the current page is even or add.&amp;nbsp; As an example, on an even page the "Page #" text element should be on the bottom left, and on an odd page the bottom right.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For ArcMap 10.x we use a 3rd party add-on called MapLogic which does this perfectly, but it does not look this product will be updated for use with ArcPro.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ArcPro Map Series does about 90% of what we want.&amp;nbsp; Does anyone know of a workaround to get this functionality working??&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 08 Jan 2019 17:46:53 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/map-series-layout-and-text-position-for-even-odd/m-p/265556#M11660</guid>
      <dc:creator>BrianBulla</dc:creator>
      <dc:date>2019-01-08T17:46:53Z</dc:date>
    </item>
    <item>
      <title>Re: Map Series Layout and Text Position for Even/Odd pages</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/map-series-layout-and-text-position-for-even-odd/m-p/265557#M11661</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Brian,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This can be done with Python Map Automation. For ArcMap, we have an arcpy.mapping help topic.&amp;nbsp; This same topic does not exist for Pro but the scripting logic is still the same.&amp;nbsp; The idea is to search for layout elements and move them to different positions depending on the current page being exported.&amp;nbsp; In Pro, arcpy.mp is slightly different because the objects are different (e.g., a map document vs a project) but other than that a very similar script can be used.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;A href="http://desktop.arcgis.com/en/arcmap/latest/map/page-layouts/creating-a-map-book-with-facing-pages.htm"&gt;http://desktop.arcgis.com/en/arcmap/latest/map/page-layouts/creating-a-map-book-with-facing-pages.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Jeff&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 08 Jan 2019 19:58:07 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/map-series-layout-and-text-position-for-even-odd/m-p/265557#M11661</guid>
      <dc:creator>JeffBarrette</dc:creator>
      <dc:date>2019-01-08T19:58:07Z</dc:date>
    </item>
    <item>
      <title>Re: Map Series Layout and Text Position for Even/Odd pages</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/map-series-layout-and-text-position-for-even-odd/m-p/265558#M11662</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Jeff,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for responding.&amp;nbsp; That is basically what I decided to do within my ArcPro project but without all the code.&amp;nbsp; I just created two maps/layouts, one for the right side and one for the left side.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The ArcMap MapLogic product works without having to make multiple layouts though.&amp;nbsp; Instead, you create what they call an 'anchor' point, and your layout elements move around the anchor point depending on whether you are looking at an even or odd # page.&amp;nbsp; I was hoping ArcPro would incorporate a feature like that, but I guess not.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG class="image-1 jive-image" src="https://community.esri.com/legacyfs/online/432842_pastedImage_1.png" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 09 Jan 2019 14:18:46 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/map-series-layout-and-text-position-for-even-odd/m-p/265558#M11662</guid>
      <dc:creator>BrianBulla</dc:creator>
      <dc:date>2019-01-09T14:18:46Z</dc:date>
    </item>
  </channel>
</rss>

