<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:clearspace="http://www.jivesoftware.com/xmlns/jive/rss" version="2.0">
  <channel>
    <title>Adobe Community: Message List - Note on interactive SVG and Edge Commons</title>
    <link>https://forums.adobe.com/community/edge_animate?view=discussions</link>
    <description>Most recent forum messages</description>
    <language>en</language>
    <pubDate>Fri, 18 Oct 2013 17:32:56 GMT</pubDate>
    <generator>Jive Engage 7.0.0.1  (http://jivesoftware.com/products/)</generator>
    <dc:date>2013-10-18T17:32:56Z</dc:date>
    <dc:language>en</dc:language>
    <item>
      <title>Re: Note on interactive SVG and Edge Commons</title>
      <link>https://forums.adobe.com/message/5770856?tstart=0#5770856</link>
      <description>&lt;!-- [DocumentBodyStart:7d1662aa-75cb-46c8-89d8-5bb46ff09027] --&gt;&lt;div class="jive-rendered-content"&gt;&lt;p&gt;Thanks Gil &lt;span aria-label="Happy" class="emoticon-inline emoticon_happy" style="height:16px;width:16px;"&gt;&lt;/span&gt; &lt;/p&gt;&lt;p&gt;I guess being case sensitive can make things tricky! &lt;/p&gt;&lt;p&gt;To clarify, you have to keep track of what is what like for javascript. If your files are lowercase then your call needs to be lowercase too. This is exactly what happened. I suppose if my file names had been uppercase then it would have worked but I did not test it. &lt;/p&gt;&lt;/div&gt;&lt;!-- [DocumentBodyEnd:7d1662aa-75cb-46c8-89d8-5bb46ff09027] --&gt;&lt;img src='/beacon?t=1415898918471' /&gt;</description>
      <pubDate>Fri, 18 Oct 2013 17:32:56 GMT</pubDate>
      <author>forums_noreply@adobe.com</author>
      <guid>https://forums.adobe.com/message/5770856?tstart=0#5770856</guid>
      <dc:date>2013-10-18T17:32:56Z</dc:date>
      <clearspace:dateToText>1 year 4 weeks ago</clearspace:dateToText>
      <clearspace:objectType>0</clearspace:objectType>
    </item>
    <item>
      <title>Re: Note on interactive SVG and Edge Commons</title>
      <link>https://forums.adobe.com/message/5770777?tstart=0#5770777</link>
      <description>&lt;!-- [DocumentBodyStart:ea18cb21-f7c2-4d9f-af67-2725e08c0d4f] --&gt;&lt;div class="jive-rendered-content"&gt;&lt;p&gt;Helpful tips, Marie :-)&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;Gil&lt;/p&gt;&lt;/div&gt;&lt;!-- [DocumentBodyEnd:ea18cb21-f7c2-4d9f-af67-2725e08c0d4f] --&gt;</description>
      <pubDate>Fri, 18 Oct 2013 17:16:40 GMT</pubDate>
      <author>forums_noreply@adobe.com</author>
      <guid>https://forums.adobe.com/message/5770777?tstart=0#5770777</guid>
      <dc:date>2013-10-18T17:16:40Z</dc:date>
      <clearspace:dateToText>1 year 4 weeks ago</clearspace:dateToText>
      <clearspace:replyCount>1</clearspace:replyCount>
      <clearspace:objectType>0</clearspace:objectType>
    </item>
    <item>
      <title>Note on interactive SVG and Edge Commons</title>
      <link>https://forums.adobe.com/message/5752982?tstart=0#5752982</link>
      <description>&lt;!-- [DocumentBodyStart:114009b8-ab77-4d90-96cb-b1bdb66fa909] --&gt;&lt;div class="jive-rendered-content"&gt;&lt;p&gt;I encountered something I want to mention so people do not pull their hair trying to find out which things are not working.&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;1- issue publishing&lt;/p&gt;&lt;p&gt;If you add a js folder for your js files, Animate v2 will not import it in your web folder - So add it after you have published&lt;/p&gt;&lt;p&gt;2- SVG layer names&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;If you use uppercase for your layer names, you may have problem using it for adding images for example. This is especially true if your server is Unix because it is case sensitive. It is better to not use uppercase in names. &lt;/p&gt;&lt;p&gt;I used the layer names to add images and of course the server could not read the uppercase. The code was right but the reading was wrong&amp;nbsp; and the images did not load.&lt;span aria-label="Sad" class="emoticon-inline emoticon_sad" style="height:16px;width:16px;"&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;Note: in the code below I added 3 lines to take off numbers created when more than one layer had the same name and also took off space when I had more than one word in the name. Not pretty but it works.&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;var newText = (event.target.id).split("_").join(" ");&lt;/p&gt;&lt;p&gt;var newText2 = (newText).split("1").join("");&lt;/p&gt;&lt;p&gt;var newText3 = (newText2).split(" ").join("");&lt;/p&gt;&lt;p&gt;sym.$('image').attr('src', 'images/'+ newText3 + '.jpg');&amp;nbsp;&amp;nbsp; // if the layer name is uppercase then the image is not loaded.&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;&lt;a href="https://forums.adobe.com/servlet/JiveServlet/showImage/2-5752982-485985/clouds.png"&gt;&lt;img alt="clouds.png" class="jive-image jive-image-thumbnail" height="326" src="https://forums.adobe.com/servlet/JiveServlet/downloadImage/2-5752982-485985/450-326/clouds.png" width="450"/&gt;&lt;/a&gt;&lt;a href="https://forums.adobe.com/servlet/JiveServlet/showImage/2-5752982-485986/cloud2.png"&gt;&lt;img alt="cloud2.png" class="jive-image jive-image-thumbnail" height="329" src="https://forums.adobe.com/servlet/JiveServlet/downloadImage/2-5752982-485986/450-329/cloud2.png" width="450"/&gt;&lt;/a&gt;&lt;/p&gt;&lt;/div&gt;&lt;!-- [DocumentBodyEnd:114009b8-ab77-4d90-96cb-b1bdb66fa909] --&gt;</description>
      <pubDate>Fri, 11 Oct 2013 13:06:44 GMT</pubDate>
      <author>forums_noreply@adobe.com</author>
      <guid>https://forums.adobe.com/message/5752982?tstart=0#5752982</guid>
      <dc:date>2013-10-11T13:06:44Z</dc:date>
      <clearspace:dateToText>1 year 1 month ago</clearspace:dateToText>
      <clearspace:replyCount>2</clearspace:replyCount>
      <clearspace:objectType>0</clearspace:objectType>
    </item>
  </channel>
</rss>

