<?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: Copying Slides Between SideCars in ArcGIS StoryMaps Questions</title>
    <link>https://community.esri.com/t5/arcgis-storymaps-questions/copying-slides-between-sidecars/m-p/1694891#M5717</link>
    <description>&lt;P&gt;Are you able to upgrade your installed ArcGIS version the 2.4.3? That is what I am using currently and I believe the slide attribution issue was added in this version.&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;Similarly `.contents` should also be the most recent way to access the storymaps content.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;</description>
    <pubDate>Tue, 07 Apr 2026 19:59:20 GMT</pubDate>
    <dc:creator>ThePreatorian</dc:creator>
    <dc:date>2026-04-07T19:59:20Z</dc:date>
    <item>
      <title>Copying Slides Between SideCars</title>
      <link>https://community.esri.com/t5/arcgis-storymaps-questions/copying-slides-between-sidecars/m-p/1694013#M5708</link>
      <description>&lt;P&gt;I recently migrated a StoryMap from Classic and am fixing all sorts of weird little issues. I got most of my immersive map elements copied over but there are a few that I would like to integrate into a single scrolling map choreography. It would be a pain to manually remake these slides, because they might each contain a dozen or so audio nodes.&amp;nbsp;&lt;/P&gt;&lt;P&gt;Does anybody have a method for copying slides/panels from one SideCar to another? There is no obvious way to do this in the editor UI. I'm looking into how to use the API to do this, but most of the resources I've found online for programmatically editing StoryMaps are obsolete/outdated; the blog below shows the StoryMap class as having attributes like .get() and .nodes, neither of which are currently supported class attributes in the ArcGIS API for Python 2.4.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;A href="https://www.esri.com/arcgis-blog/products/api-python/developers/automate-storymap-changes-with-arcgis-api-for-python" target="_blank"&gt;Automate ArcGIS StoryMap Edits with ArcGIS API for Python&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 01 Apr 2026 18:21:22 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-storymaps-questions/copying-slides-between-sidecars/m-p/1694013#M5708</guid>
      <dc:creator>RobertMatthewmanCTCLUSI</dc:creator>
      <dc:date>2026-04-01T18:21:22Z</dc:date>
    </item>
    <item>
      <title>Re: Copying Slides Between SideCars</title>
      <link>https://community.esri.com/t5/arcgis-storymaps-questions/copying-slides-between-sidecars/m-p/1694782#M5711</link>
      <description>&lt;P&gt;&lt;a href="https://community.esri.com/t5/user/viewprofilepage/user-id/909632"&gt;@RobertMatthewmanCTCLUSI&lt;/a&gt;&amp;nbsp; Thanks for bringing this to our attention. You should be able to copy slides over with v2.4.3 by following this pseudocode example&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;LI-CODE lang="python"&gt;sm = Storymap("original")
new = Storymap("new")

# get original sidecar
sidecar = sm.contents[idx]
# get slides to copy
slides = sidecar.slides
copy_slides = slides[2:4]

# get new sidecar and slides if any
new_sidecar = new.contents[idx]
new_slides = new_sidecar.slides

# add copied slides to list
new_slides.extend(copy_slides)

# set on new sidecar
new_sidecar.slides = new_slides&lt;/LI-CODE&gt;&lt;P&gt;Let me know if you run into any issues with this workflow.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 07 Apr 2026 13:19:53 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-storymaps-questions/copying-slides-between-sidecars/m-p/1694782#M5711</guid>
      <dc:creator>ThePreatorian</dc:creator>
      <dc:date>2026-04-07T13:19:53Z</dc:date>
    </item>
    <item>
      <title>Re: Copying Slides Between SideCars</title>
      <link>https://community.esri.com/t5/arcgis-storymaps-questions/copying-slides-between-sidecars/m-p/1694881#M5716</link>
      <description>&lt;P&gt;Thanks for reaching out. This brings up another issue with the API documentation that lists slides as property of Sidecar- I get an AttributeError that no such attribute exists. What is the correct way to access slides/panels as objects?&lt;/P&gt;&lt;P&gt;EDIT: Another note is that .contents is also deprecated, I've been using story.content_list, which I access by index. I have to make a lookup dictionary for myself to be able to find nodes' indexes in the first place.&lt;/P&gt;&lt;LI-CODE lang="python"&gt;node_index = {i: node for i, node in enumerate(story.content_list)}

sidecar_indexes = []

for i, node in enumerate(story.content_list):
    if isinstance(node, Sidecar):
        sidecar_indexes.append(i)&lt;/LI-CODE&gt;&lt;LI-CODE lang="c"&gt;AttributeError                            Traceback (most recent call last)
Cell In[12], line 4
      1 print(get_node_by_index(108))
      3 dest_sidecar = get_node_by_index(108)
----&amp;gt; 4 dsc_slides = dest_sidecar.slides
      6 origin_sidecar = get_node_by_index(109)
      7 osc_slides = origin_sidecar.slides

AttributeError: 'Sidecar' object has no attribute 'slides'&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 07 Apr 2026 18:41:56 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-storymaps-questions/copying-slides-between-sidecars/m-p/1694881#M5716</guid>
      <dc:creator>RobertMatthewmanCTCLUSI</dc:creator>
      <dc:date>2026-04-07T18:41:56Z</dc:date>
    </item>
    <item>
      <title>Re: Copying Slides Between SideCars</title>
      <link>https://community.esri.com/t5/arcgis-storymaps-questions/copying-slides-between-sidecars/m-p/1694891#M5717</link>
      <description>&lt;P&gt;Are you able to upgrade your installed ArcGIS version the 2.4.3? That is what I am using currently and I believe the slide attribution issue was added in this version.&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;Similarly `.contents` should also be the most recent way to access the storymaps content.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 07 Apr 2026 19:59:20 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-storymaps-questions/copying-slides-between-sidecars/m-p/1694891#M5717</guid>
      <dc:creator>ThePreatorian</dc:creator>
      <dc:date>2026-04-07T19:59:20Z</dc:date>
    </item>
  </channel>
</rss>

