<?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 Story Map customization in ArcGIS StoryMaps Questions</title>
    <link>https://community.esri.com/t5/arcgis-storymaps-questions/story-map-customization/m-p/456879#M898</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi everyone, I'm trying to customize my story map and I would like to have some titles on the image of my main part (it's like legends + credits). I succeed in doing this but when I have an action on the same page which change the content of the main part, I don't want this title anymore (I embeded some applications).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I've tried this but ithe last part doesn't work because they said that my object doesn't have an id However I find this code on a story map which is working properly&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;define(["dojo/topic","dijit/Dialog"], function(topic,Dialog){&lt;/P&gt;&lt;P&gt;/*&lt;BR /&gt; * Custom Javascript to be executed while the application is initializing goes here&lt;BR /&gt; */&lt;/P&gt;&lt;P&gt;// The application is ready&lt;BR /&gt; topic.subscribe("tpl-ready", function(){&lt;/P&gt;&lt;P&gt;/*&lt;BR /&gt; * Custom Javascript to be executed when the application is ready goes here&lt;BR /&gt; */&lt;/P&gt;&lt;P&gt;// Creation of the Splash Page (Introduction of the web site)&lt;BR /&gt; var splashPage = new Dialog ({&lt;BR /&gt; title: '&amp;lt;b&amp;gt;&amp;lt;font size="6"&amp;gt;&amp;lt;p align="center"&amp;gt;Welcome on board!&amp;lt;/p&amp;gt;&amp;lt;/font&amp;gt;&amp;lt;/b&amp;gt;',&lt;BR /&gt;&lt;SPAN&gt; content: '&amp;lt;font size="3"&amp;gt;&amp;lt;center&amp;gt;&amp;lt;p&amp;gt;&amp;lt;/br&amp;gt;Here you can find all information about &amp;lt;b&amp;gt;ship traffic and its impact on marine mammals &amp;lt;/b&amp;gt;in Canadian seas.&amp;lt;/br&amp;gt;&amp;lt;/br&amp;gt;&amp;lt;b&amp;gt;Begin the story &amp;lt;/b&amp;gt;to understand the issue and see what have been done and could be done to &amp;lt;b&amp;gt;protect marine mammals&amp;lt;/b&amp;gt;.&amp;lt;/p&amp;gt;&amp;lt;/font&amp;gt;&amp;lt;br/&amp;gt;&amp;lt;img src="&lt;/SPAN&gt;&lt;A class="jive-link-external-small" href="https://community.esri.com/external-link.jspa?url=https%3A%2F%2Fc1.staticflickr.com%2F1%2F330%2F19577290930_4f8d8d5fbb_b.jpg" rel="nofollow" target="_blank"&gt;https://c1.staticflickr.com/1/330/19577290930_4f8d8d5fbb_b.jpg&lt;/A&gt;&lt;SPAN&gt;" width="450px" height= "300px" alt="Jumping Killer Whales" /&amp;gt;&amp;lt;/br&amp;gt;&amp;lt;/br&amp;gt;&amp;lt;font size="2.5" color="#B0C4DE"&amp;gt;&amp;lt;p&amp;gt;Jumping Killer Whales&amp;lt;/p&amp;gt;&amp;lt;/center&amp;gt;&amp;lt;/font&amp;gt;',&lt;/SPAN&gt;&lt;BR /&gt; style: 'width: 600px; height: 600px;'&lt;BR /&gt; });&lt;BR /&gt; splashPage.show();&lt;/P&gt;&lt;P&gt;});&lt;/P&gt;&lt;P&gt;// change title text based on section number&lt;BR /&gt; topic.subscribe("story-load-section", function(index){&lt;BR /&gt; console.log("The section", index, "is being loaded");&lt;BR /&gt; var mainStageTitle = document.getElementById("mainStageTitle");&lt;BR /&gt; switch(index) {&lt;BR /&gt; case 0:&lt;BR /&gt; mainStageTitle.innerHTML = "Humpback and calf, off the Revillagigedo Islands, Mexico, Reinhard Dirscher";&lt;BR /&gt; break;&lt;BR /&gt; case 1:&lt;BR /&gt; mainStageTitle.innerHTML = "Vehicles, air pollution and human health, Union of concerned scientists";&lt;BR /&gt; break;&lt;BR /&gt; case 2:&lt;BR /&gt; mainStageTitle.innerHTML = "Preventing ocean pollution";&lt;BR /&gt; break;&lt;BR /&gt; case 3:&lt;BR /&gt; mainStageTitle.innerHTML = "Ship traffic";&lt;BR /&gt; break;&lt;BR /&gt; case 4:&lt;BR /&gt; mainStageTitle.innerHTML = "Ship traffic, exactEarth";&lt;BR /&gt; break;&lt;BR /&gt; case 5:&lt;BR /&gt; mainStageTitle.innerHTML = "Orca Whales, Lauren McWhinnie";&lt;BR /&gt; break;&lt;BR /&gt; case 6:&lt;BR /&gt; mainStageTitle.innerHTML = "Johnstone Strait, East side of Vancouver Island, Leh Smallshaw";&lt;BR /&gt; break;&lt;BR /&gt; case 7:&lt;BR /&gt; mainStageTitle.innerHTML = "Humpback Whales, Lauren McWhinnie";&lt;BR /&gt; break;&lt;BR /&gt; case 8:&lt;BR /&gt; mainStageTitle.innerHTML = "Tanker going through Boundary Pass as seen from Tilly Point, Leh Smallshaw";&lt;BR /&gt; break;&lt;BR /&gt; default:&lt;BR /&gt; mainStageTitle.innerHTML = "Mapping Distribution";&lt;BR /&gt; }&lt;BR /&gt; });&lt;/P&gt;&lt;P&gt;/// When a main stage action that load a new media or reconfigure the current media is performed&lt;BR /&gt; topic.subscribe("story-perform-action-media", function(media){&lt;BR /&gt; console.log("A Main Stage action is performed:", media);&lt;BR /&gt; console.log("Media ID:", document.media.webmap.id);&lt;BR /&gt; var mainStageTitle = document.getElementById("mainStageTitle");&lt;/P&gt;&lt;P&gt;//Section 7 Come on and discover! (index 6)&lt;BR /&gt; if (document.media.webmap.id == "0cdeb6acf68e431986537721d0913ec2") {&lt;BR /&gt; mainStageTitle.innerHTML = "";&lt;BR /&gt; };&lt;BR /&gt; if (document.media.webmap.id == "15b4845510c6434a9bdcd0e5174048a6") {&lt;BR /&gt; mainStageTitle.innerHTML = "";&lt;BR /&gt; };&lt;BR /&gt; if (document.media.webmap.id == "f26425e3a7c6498ba5ef11cfb9817f12") {&lt;BR /&gt; mainStageTitle.innerHTML = "";&lt;BR /&gt; };&lt;/P&gt;&lt;P&gt;});&lt;BR /&gt;});&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Could someone help me ? My story map is: &lt;A href="https://nemes-story.surge.sh"&gt;https://nemes-story.surge.sh&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Nolwenn&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 27 Jun 2017 13:41:15 GMT</pubDate>
    <dc:creator>NolwennLE_POULAIN</dc:creator>
    <dc:date>2017-06-27T13:41:15Z</dc:date>
    <item>
      <title>Story Map customization</title>
      <link>https://community.esri.com/t5/arcgis-storymaps-questions/story-map-customization/m-p/456879#M898</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi everyone, I'm trying to customize my story map and I would like to have some titles on the image of my main part (it's like legends + credits). I succeed in doing this but when I have an action on the same page which change the content of the main part, I don't want this title anymore (I embeded some applications).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I've tried this but ithe last part doesn't work because they said that my object doesn't have an id However I find this code on a story map which is working properly&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;define(["dojo/topic","dijit/Dialog"], function(topic,Dialog){&lt;/P&gt;&lt;P&gt;/*&lt;BR /&gt; * Custom Javascript to be executed while the application is initializing goes here&lt;BR /&gt; */&lt;/P&gt;&lt;P&gt;// The application is ready&lt;BR /&gt; topic.subscribe("tpl-ready", function(){&lt;/P&gt;&lt;P&gt;/*&lt;BR /&gt; * Custom Javascript to be executed when the application is ready goes here&lt;BR /&gt; */&lt;/P&gt;&lt;P&gt;// Creation of the Splash Page (Introduction of the web site)&lt;BR /&gt; var splashPage = new Dialog ({&lt;BR /&gt; title: '&amp;lt;b&amp;gt;&amp;lt;font size="6"&amp;gt;&amp;lt;p align="center"&amp;gt;Welcome on board!&amp;lt;/p&amp;gt;&amp;lt;/font&amp;gt;&amp;lt;/b&amp;gt;',&lt;BR /&gt;&lt;SPAN&gt; content: '&amp;lt;font size="3"&amp;gt;&amp;lt;center&amp;gt;&amp;lt;p&amp;gt;&amp;lt;/br&amp;gt;Here you can find all information about &amp;lt;b&amp;gt;ship traffic and its impact on marine mammals &amp;lt;/b&amp;gt;in Canadian seas.&amp;lt;/br&amp;gt;&amp;lt;/br&amp;gt;&amp;lt;b&amp;gt;Begin the story &amp;lt;/b&amp;gt;to understand the issue and see what have been done and could be done to &amp;lt;b&amp;gt;protect marine mammals&amp;lt;/b&amp;gt;.&amp;lt;/p&amp;gt;&amp;lt;/font&amp;gt;&amp;lt;br/&amp;gt;&amp;lt;img src="&lt;/SPAN&gt;&lt;A class="jive-link-external-small" href="https://community.esri.com/external-link.jspa?url=https%3A%2F%2Fc1.staticflickr.com%2F1%2F330%2F19577290930_4f8d8d5fbb_b.jpg" rel="nofollow" target="_blank"&gt;https://c1.staticflickr.com/1/330/19577290930_4f8d8d5fbb_b.jpg&lt;/A&gt;&lt;SPAN&gt;" width="450px" height= "300px" alt="Jumping Killer Whales" /&amp;gt;&amp;lt;/br&amp;gt;&amp;lt;/br&amp;gt;&amp;lt;font size="2.5" color="#B0C4DE"&amp;gt;&amp;lt;p&amp;gt;Jumping Killer Whales&amp;lt;/p&amp;gt;&amp;lt;/center&amp;gt;&amp;lt;/font&amp;gt;',&lt;/SPAN&gt;&lt;BR /&gt; style: 'width: 600px; height: 600px;'&lt;BR /&gt; });&lt;BR /&gt; splashPage.show();&lt;/P&gt;&lt;P&gt;});&lt;/P&gt;&lt;P&gt;// change title text based on section number&lt;BR /&gt; topic.subscribe("story-load-section", function(index){&lt;BR /&gt; console.log("The section", index, "is being loaded");&lt;BR /&gt; var mainStageTitle = document.getElementById("mainStageTitle");&lt;BR /&gt; switch(index) {&lt;BR /&gt; case 0:&lt;BR /&gt; mainStageTitle.innerHTML = "Humpback and calf, off the Revillagigedo Islands, Mexico, Reinhard Dirscher";&lt;BR /&gt; break;&lt;BR /&gt; case 1:&lt;BR /&gt; mainStageTitle.innerHTML = "Vehicles, air pollution and human health, Union of concerned scientists";&lt;BR /&gt; break;&lt;BR /&gt; case 2:&lt;BR /&gt; mainStageTitle.innerHTML = "Preventing ocean pollution";&lt;BR /&gt; break;&lt;BR /&gt; case 3:&lt;BR /&gt; mainStageTitle.innerHTML = "Ship traffic";&lt;BR /&gt; break;&lt;BR /&gt; case 4:&lt;BR /&gt; mainStageTitle.innerHTML = "Ship traffic, exactEarth";&lt;BR /&gt; break;&lt;BR /&gt; case 5:&lt;BR /&gt; mainStageTitle.innerHTML = "Orca Whales, Lauren McWhinnie";&lt;BR /&gt; break;&lt;BR /&gt; case 6:&lt;BR /&gt; mainStageTitle.innerHTML = "Johnstone Strait, East side of Vancouver Island, Leh Smallshaw";&lt;BR /&gt; break;&lt;BR /&gt; case 7:&lt;BR /&gt; mainStageTitle.innerHTML = "Humpback Whales, Lauren McWhinnie";&lt;BR /&gt; break;&lt;BR /&gt; case 8:&lt;BR /&gt; mainStageTitle.innerHTML = "Tanker going through Boundary Pass as seen from Tilly Point, Leh Smallshaw";&lt;BR /&gt; break;&lt;BR /&gt; default:&lt;BR /&gt; mainStageTitle.innerHTML = "Mapping Distribution";&lt;BR /&gt; }&lt;BR /&gt; });&lt;/P&gt;&lt;P&gt;/// When a main stage action that load a new media or reconfigure the current media is performed&lt;BR /&gt; topic.subscribe("story-perform-action-media", function(media){&lt;BR /&gt; console.log("A Main Stage action is performed:", media);&lt;BR /&gt; console.log("Media ID:", document.media.webmap.id);&lt;BR /&gt; var mainStageTitle = document.getElementById("mainStageTitle");&lt;/P&gt;&lt;P&gt;//Section 7 Come on and discover! (index 6)&lt;BR /&gt; if (document.media.webmap.id == "0cdeb6acf68e431986537721d0913ec2") {&lt;BR /&gt; mainStageTitle.innerHTML = "";&lt;BR /&gt; };&lt;BR /&gt; if (document.media.webmap.id == "15b4845510c6434a9bdcd0e5174048a6") {&lt;BR /&gt; mainStageTitle.innerHTML = "";&lt;BR /&gt; };&lt;BR /&gt; if (document.media.webmap.id == "f26425e3a7c6498ba5ef11cfb9817f12") {&lt;BR /&gt; mainStageTitle.innerHTML = "";&lt;BR /&gt; };&lt;/P&gt;&lt;P&gt;});&lt;BR /&gt;});&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Could someone help me ? My story map is: &lt;A href="https://nemes-story.surge.sh"&gt;https://nemes-story.surge.sh&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Nolwenn&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 27 Jun 2017 13:41:15 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-storymaps-questions/story-map-customization/m-p/456879#M898</guid>
      <dc:creator>NolwennLE_POULAIN</dc:creator>
      <dc:date>2017-06-27T13:41:15Z</dc:date>
    </item>
    <item>
      <title>Re: Story Map customization</title>
      <link>https://community.esri.com/t5/arcgis-storymaps-questions/story-map-customization/m-p/456880#M899</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Nolwenn,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;That is a very nice story map! In order to get more visibility to this post, it would be best to move it to the &lt;A href="https://community.esri.com/community/gis/web-gis/storymaps?sr=search&amp;amp;searchId=e19bc9aa-3841-45c0-aaca-d7d68e944dcd&amp;amp;searchIndex=0"&gt;https://community.esri.com/community/gis/web-gis/storymaps?sr=search&amp;amp;searchId=e19bc9aa-3841-45c0-aaca-d7d68e944dcd&amp;amp;searchIndex=0&lt;/A&gt;‌ space instead of the GeoNet Help space.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 27 Jun 2017 19:04:38 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-storymaps-questions/story-map-customization/m-p/456880#M899</guid>
      <dc:creator>AdrianWelsh</dc:creator>
      <dc:date>2017-06-27T19:04:38Z</dc:date>
    </item>
    <item>
      <title>Re: Story Map customization</title>
      <link>https://community.esri.com/t5/arcgis-storymaps-questions/story-map-customization/m-p/456881#M900</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Oups you're right I've not noticed that thank you!!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 27 Jun 2017 19:27:35 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-storymaps-questions/story-map-customization/m-p/456881#M900</guid>
      <dc:creator>NolwennLE_POULAIN</dc:creator>
      <dc:date>2017-06-27T19:27:35Z</dc:date>
    </item>
  </channel>
</rss>

