<?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 - Targeting a symbol within a symbol</title>
    <link>https://forums.adobe.com/community/edge_animate?view=discussions</link>
    <description>Most recent forum messages</description>
    <language>en</language>
    <pubDate>Wed, 22 Oct 2014 17:25:56 GMT</pubDate>
    <generator>Jive Engage 7.0.0.1  (http://jivesoftware.com/products/)</generator>
    <dc:date>2014-10-22T17:25:56Z</dc:date>
    <dc:language>en</dc:language>
    <item>
      <title>Re: Targeting a symbol within a symbol</title>
      <link>https://forums.adobe.com/message/6856333?tstart=0#6856333</link>
      <description>&lt;!-- [DocumentBodyStart:01e4359b-eedf-4d77-9bce-63f03bc95f0f] --&gt;&lt;div class="jive-rendered-content"&gt;&lt;p&gt;getSymbol is a native animate handle that allows interaction with the symbol while $ is a jquery handle that interact on a DOM element which you need for the click event that is jquery.&lt;/p&gt;&lt;p&gt;Hope this makes sense.&lt;br/&gt;I am glad you got all this to work.&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&lt;span aria-label="Happy" class="emoticon-inline emoticon_happy" style="height:16px;width:16px;"&gt;&lt;/span&gt;&amp;nbsp;&lt;/p&gt;&lt;/div&gt;&lt;!-- [DocumentBodyEnd:01e4359b-eedf-4d77-9bce-63f03bc95f0f] --&gt;&lt;img src='/beacon?t=1415898206807' /&gt;</description>
      <pubDate>Wed, 22 Oct 2014 17:23:45 GMT</pubDate>
      <author>forums_noreply@adobe.com</author>
      <guid>https://forums.adobe.com/message/6856333?tstart=0#6856333</guid>
      <dc:date>2014-10-22T17:23:45Z</dc:date>
      <clearspace:dateToText>3 weeks 24 hours ago</clearspace:dateToText>
      <clearspace:objectType>0</clearspace:objectType>
    </item>
    <item>
      <title>Re: Targeting a symbol within a symbol</title>
      <link>https://forums.adobe.com/message/6856282?tstart=0#6856282</link>
      <description>&lt;!-- [DocumentBodyStart:d3a8aa5c-19f0-4b78-bda2-509d18c17a3e] --&gt;&lt;div class="jive-rendered-content"&gt;&lt;p&gt;Success.&amp;nbsp; This worked below. I wish I could markup this code better so it was obvious where the issues lay. &lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;The two lines which are bolded were the problem.&amp;nbsp; The first bolded line was originally written the same on the second bolded line.&amp;nbsp; I don't understand the difference between &lt;/p&gt;&lt;p&gt;sym.getSymbol("teamgroup1").getSymbol("teamThumb1"); and&lt;/p&gt;&lt;p&gt;sym.getSymbol("teamgroup1").$("teamThumb1")&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;As far as calling a symbol is concerned&amp;hellip; what is the difference between .$ and .getSymbol&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;This is the bit that worked.&lt;/p&gt;&lt;p&gt;//&amp;nbsp; ========================== TEAM 1&amp;nbsp; ========================== //&lt;/p&gt;&lt;p&gt;$.getJSON('staffnames.json', function(data){&lt;/p&gt;&lt;p&gt;&amp;nbsp; {&lt;/p&gt;&lt;p&gt; &lt;strong&gt; var s1 = sym.getSymbol("teamgroup1").getSymbol("teamThumb1"); // first bolded line&lt;/strong&gt;&lt;/p&gt;&lt;p&gt;&amp;nbsp; s1.$("holder").css({"background-image":"url('"+data[0].image+"')"});&lt;/p&gt;&lt;p&gt;&amp;nbsp; s1.$("thename").html(data[0].thename);&lt;/p&gt;&lt;p&gt;&amp;nbsp; s1.$("thetitle").html(data[0].thetitle);&lt;/p&gt;&lt;p&gt;&amp;nbsp; s1.$("biography").html(data[0].biography);&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;&amp;nbsp; //start mouse events//&lt;/p&gt;&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;strong&gt;sym.getSymbol("teamgroup1").$("teamThumb1").mouseenter(function(){ // second bolded line&lt;/strong&gt;&lt;/p&gt;&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; /*change position of the name */ sym.$("thename").css ({"position":"relative","top":"0px"});&lt;/p&gt;&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; /*place JSON data in text blocks*/ &lt;/p&gt;&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; sym.$("biographyareaCopy").html(data[0].biography);&lt;/p&gt;&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; sym.$("thename").html(data[0].thename);&lt;/p&gt;&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; sym.$("thetitle").html(data[0].thetitle);&lt;/p&gt;&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; sym.$("certifications").html(data[0].certifications);&lt;/p&gt;&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; // next line returns the name text back to it's 0 position.&amp;nbsp; See line 24&lt;/p&gt;&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; sym.$("thename").css ({"position":"relative",&lt;/p&gt;&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; "top":"0px"});&lt;/p&gt;&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; /*alert( "hovered over a div");*/&lt;/p&gt;&lt;p&gt;})//close mouse enter //&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;//keep close outs below&lt;/p&gt;&lt;p&gt;&amp;nbsp; }&lt;/p&gt;&lt;p&gt;});&lt;/p&gt;&lt;/div&gt;&lt;!-- [DocumentBodyEnd:d3a8aa5c-19f0-4b78-bda2-509d18c17a3e] --&gt;</description>
      <pubDate>Wed, 22 Oct 2014 17:06:48 GMT</pubDate>
      <author>forums_noreply@adobe.com</author>
      <guid>https://forums.adobe.com/message/6856282?tstart=0#6856282</guid>
      <dc:date>2014-10-22T17:06:48Z</dc:date>
      <clearspace:dateToText>3 weeks 24 hours ago</clearspace:dateToText>
      <clearspace:replyCount>1</clearspace:replyCount>
      <clearspace:objectType>0</clearspace:objectType>
    </item>
    <item>
      <title>Re: Targeting a symbol within a symbol</title>
      <link>https://forums.adobe.com/message/6855544?tstart=0#6855544</link>
      <description>&lt;!-- [DocumentBodyStart:89ae102b-29d4-426b-b51a-ea5c146b8e41] --&gt;&lt;div class="jive-rendered-content"&gt;&lt;p&gt;Assuming that all the elements you have are in the symbol, could you try this:&amp;nbsp;&amp;nbsp; (otherwise your elements' scope is wrong. You might want to put the whole scope of these elements like:&lt;/p&gt;&lt;p&gt;m1.$("biographyareaCopy").html(data[0].biography);&amp;nbsp; which uses m1 instead of sym.&lt;/p&gt;&lt;p&gt;sym.getSymbol("teamgroup1").$("teamThumb1").mouseenter(function(){&lt;/p&gt;&lt;p&gt;&amp;nbsp;&amp;nbsp; // Do something&lt;/p&gt;&lt;p&gt;&amp;nbsp; sym.$("biographyareaCopy").html(data[0].biography);&lt;/p&gt;&lt;p&gt;&amp;nbsp; sym.$("thename").html(data[0].thename);&lt;/p&gt;&lt;p&gt;&amp;nbsp; sym.$("thetitle").html(data[0].thetitle);&lt;/p&gt;&lt;p&gt;&amp;nbsp; sym.$("certifications").html(data[0].certifications);&lt;/p&gt;&lt;p&gt;&amp;nbsp; sym.$("thename").css ({"position":"relative","top":"0px"});&lt;/p&gt;&lt;p&gt;&amp;nbsp;&amp;nbsp; alert( "hovered over a div" );&lt;/p&gt;&lt;p&gt;});&lt;/p&gt;&lt;p&gt;sym.getSymbol("teamgroup1").$("teamThumb1").mouseleave(function(){&lt;/p&gt;&lt;p&gt;&amp;nbsp; // Do something&lt;/p&gt;&lt;p&gt;&amp;nbsp; alert( "mouse left a div" );&lt;/p&gt;&lt;p&gt;}),&lt;/p&gt;&lt;p&gt;sym.getSymbol("teamgroup1").$("teamThumb1").click(function(){&lt;/p&gt;&lt;p&gt;&amp;nbsp; // Do something&lt;/p&gt;&lt;p&gt;&amp;nbsp; alert( "clicked on a div" );&lt;/p&gt;&lt;p&gt;});&lt;/p&gt;&lt;/div&gt;&lt;!-- [DocumentBodyEnd:89ae102b-29d4-426b-b51a-ea5c146b8e41] --&gt;</description>
      <pubDate>Wed, 22 Oct 2014 14:16:01 GMT</pubDate>
      <author>forums_noreply@adobe.com</author>
      <guid>https://forums.adobe.com/message/6855544?tstart=0#6855544</guid>
      <dc:date>2014-10-22T14:16:01Z</dc:date>
      <clearspace:dateToText>3 weeks 1 day ago</clearspace:dateToText>
      <clearspace:replyCount>2</clearspace:replyCount>
      <clearspace:objectType>0</clearspace:objectType>
    </item>
    <item>
      <title>Re: Targeting a symbol within a symbol</title>
      <link>https://forums.adobe.com/message/6852890?tstart=0#6852890</link>
      <description>&lt;!-- [DocumentBodyStart:18528a4d-ab4d-44c7-a049-2a1b632aaa39] --&gt;&lt;div class="jive-rendered-content"&gt;&lt;p&gt;Thanks!&lt;/p&gt;&lt;p&gt;I modified my code as per your recommendation and I got a partial success.&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;Here's the code.&amp;nbsp; See he // comments.&lt;/p&gt;&lt;p&gt;$.getJSON("staffnames.json", function(data){&lt;/p&gt;&lt;p&gt;&amp;nbsp; {&lt;/p&gt;&lt;p&gt;&amp;nbsp; var s1 = sym.getSymbol("teamgroup1").getSymbol("teamThumb1"); //this is working it understands that the data from the JSON should be pulled into the nested symbol.&lt;/p&gt;&lt;p&gt;&amp;nbsp; var m1 = sym.getSymbol("teamgroup1").getSymbol("teamThumb1"); // THIS VAR IS NOT WORKING.&amp;nbsp; Lower down I'm binding a series of events attached to this m1 var.&amp;nbsp; What's interesting is, in my original file shared yesterday, this worked.&amp;nbsp; The only difference is that the s1 var was one level up in that case.&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;&amp;nbsp; s1.$("holder").css({"background-image":"url('"+data[0].image+"')"});&lt;/p&gt;&lt;p&gt;&amp;nbsp; s1.$("thename").html(data[0].thename);&lt;/p&gt;&lt;p&gt;&amp;nbsp; s1.$("thetitle").html(data[0].thetitle);&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;&amp;nbsp; m1.on({&lt;/p&gt;&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; mouseenter: function() {&lt;/p&gt;&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; // Do something&lt;/p&gt;&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; sym.$("biographyareaCopy").html(data[0].biography);&lt;/p&gt;&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; sym.$("thename").html(data[0].thename);&lt;/p&gt;&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; sym.$("thetitle").html(data[0].thetitle);&lt;/p&gt;&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; sym.$("certifications").html(data[0].certifications);&lt;/p&gt;&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; sym.$("thename").css ({"position":"relative",&lt;/p&gt;&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; "top":"0px"});&lt;/p&gt;&lt;p&gt;&amp;nbsp; alert( "hovered over a div" );&lt;/p&gt;&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; },&lt;/p&gt;&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; mouseleave: function() {&lt;/p&gt;&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; // Do something&lt;/p&gt;&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; //alert( "mouse left a div" );&lt;/p&gt;&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; },&lt;/p&gt;&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; click: function() {&lt;/p&gt;&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; // Do something&lt;/p&gt;&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; //alert( "clicked on a div" );&lt;/p&gt;&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; }&lt;/p&gt;&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; });&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;&amp;nbsp; }&lt;/p&gt;&lt;p&gt;});&lt;/p&gt;&lt;/div&gt;&lt;!-- [DocumentBodyEnd:18528a4d-ab4d-44c7-a049-2a1b632aaa39] --&gt;</description>
      <pubDate>Tue, 21 Oct 2014 19:59:58 GMT</pubDate>
      <author>forums_noreply@adobe.com</author>
      <guid>https://forums.adobe.com/message/6852890?tstart=0#6852890</guid>
      <dc:date>2014-10-21T19:59:58Z</dc:date>
      <clearspace:dateToText>3 weeks 2 days ago</clearspace:dateToText>
      <clearspace:replyCount>3</clearspace:replyCount>
      <clearspace:objectType>0</clearspace:objectType>
    </item>
    <item>
      <title>Re: Targeting a symbol within a symbol</title>
      <link>https://forums.adobe.com/message/6852565?tstart=0#6852565</link>
      <description>&lt;!-- [DocumentBodyStart:0bec1ab8-4cfd-431b-a5cf-feac90b77b9e] --&gt;&lt;div class="jive-rendered-content"&gt;&lt;p&gt;You just need to use the proper scope the same way as a normal symbol. So if your symbol is inside a symbol then you use:&lt;/p&gt;&lt;p&gt;Note I use i since I am iterating the data with a next button but you can call any element with its index.&lt;/p&gt;&lt;ul&gt;&lt;li&gt;text&lt;/li&gt;&lt;/ul&gt;&lt;p&gt;sym.getSymbol('name').getSymbol('insideSymbolname').$('text').html(data[i].question);&lt;/p&gt;&lt;ul&gt;&lt;li&gt;image - with attr&amp;nbsp; - change from div to img in the top left - all images are the same size&lt;/li&gt;&lt;/ul&gt;&lt;p&gt;sym.getSymbol('name').getSymbol('insideSymbolname').attr('src','images/'+ data[i].image +'.jpg');&lt;/p&gt;&lt;ul&gt;&lt;li&gt;image with css - use empty div for container - images fit inside the div in at least the height or the width&lt;/li&gt;&lt;/ul&gt;&lt;p&gt;sym.getSymbol('name').getSymbol('insideSymbolname')..css({'background-image':'url("images/ '+data[i].image + '.jpg")','background-repeat':'no-repeat'});&lt;/p&gt;&lt;/div&gt;&lt;!-- [DocumentBodyEnd:0bec1ab8-4cfd-431b-a5cf-feac90b77b9e] --&gt;</description>
      <pubDate>Tue, 21 Oct 2014 18:41:24 GMT</pubDate>
      <author>forums_noreply@adobe.com</author>
      <guid>https://forums.adobe.com/message/6852565?tstart=0#6852565</guid>
      <dc:date>2014-10-21T18:41:24Z</dc:date>
      <clearspace:dateToText>3 weeks 2 days ago</clearspace:dateToText>
      <clearspace:replyCount>4</clearspace:replyCount>
      <clearspace:objectType>0</clearspace:objectType>
    </item>
    <item>
      <title>Re: Targeting a symbol within a symbol</title>
      <link>https://forums.adobe.com/message/6852467?tstart=0#6852467</link>
      <description>&lt;!-- [DocumentBodyStart:ecb61023-6241-4cec-84ed-5a5d8dd9d0f2] --&gt;&lt;div class="jive-rendered-content"&gt;&lt;p&gt;What if we want to target a symbol inside a symbol that later needs to reference dynamic data from a json file.&amp;nbsp; Like the below code block where thumb1 is a symbol inside of teamgroup1 which rests on the stage.&amp;nbsp; The elements holder, the name, the title and biography are all inside the symbol thumb1 which in turn is inside teamgroup1.&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;We need to do it this way because when we move the timeline elsewhere we want a different set of thumbs to load with a different Json.&lt;/p&gt;&lt;p&gt;@&lt;/p&gt;&lt;p&gt;&amp;nbsp;&amp;nbsp; $.getJSON('staffnames.json', function(data){&lt;/p&gt;&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; {&lt;/p&gt;&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; var s1 = sym.getComposition().getStage().getSymbol("teamgroup1").$("thumb1");&lt;/p&gt;&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; s1.$("holder").css({"background-image":"url('"+data[0].image+"')"});&lt;/p&gt;&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; s1.$("thename").html(data[0].thename);&lt;/p&gt;&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; s1.$("thetitle").html(data[0].thetitle);&lt;/p&gt;&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; s1.$("biography").html(data[0].biography);&lt;/p&gt;&lt;/div&gt;&lt;!-- [DocumentBodyEnd:ecb61023-6241-4cec-84ed-5a5d8dd9d0f2] --&gt;</description>
      <pubDate>Tue, 21 Oct 2014 18:05:35 GMT</pubDate>
      <author>forums_noreply@adobe.com</author>
      <guid>https://forums.adobe.com/message/6852467?tstart=0#6852467</guid>
      <dc:date>2014-10-21T18:05:35Z</dc:date>
      <clearspace:dateToText>3 weeks 2 days ago</clearspace:dateToText>
      <clearspace:replyCount>5</clearspace:replyCount>
      <clearspace:objectType>0</clearspace:objectType>
    </item>
    <item>
      <title>Re: Targeting a symbol within a symbol</title>
      <link>https://forums.adobe.com/message/6136391?tstart=0#6136391</link>
      <description>&lt;!-- [DocumentBodyStart:3433c745-53df-43ea-80c2-c50fdc1285fa] --&gt;&lt;div class="jive-rendered-content"&gt;&lt;p&gt;Hi there,&lt;/p&gt;&lt;p&gt;When you create a symbol dynamically, the symbol is assigned an id by Animate.&lt;/p&gt;&lt;p&gt;In you case, card is the original symbol and the one that is created has a different id.&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;When you create an symbol dynamically, you can also assign an id to it and then use it as you would a symbol that was added to the stage manually.&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;Here is how to add an ID to a created symbol. When you use it, then do not forget to add the # when you use that new ID.&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;var newCard = sym.createChildSymbol("card", "Stage");&lt;/p&gt;&lt;p&gt;newCard.element.attr("id","newIDName");&lt;/p&gt;&lt;p&gt; &lt;strong&gt;// example of use&lt;/strong&gt;&lt;/p&gt;&lt;p&gt; sym.getSymbol("&lt;span style="color: #333333;"&gt;#&lt;/span&gt;newIDName").$("Text").html("some text here");&lt;/p&gt;&lt;/div&gt;&lt;!-- [DocumentBodyEnd:3433c745-53df-43ea-80c2-c50fdc1285fa] --&gt;</description>
      <pubDate>Wed, 19 Feb 2014 17:37:58 GMT</pubDate>
      <author>forums_noreply@adobe.com</author>
      <guid>https://forums.adobe.com/message/6136391?tstart=0#6136391</guid>
      <dc:date>2014-02-19T17:37:58Z</dc:date>
      <clearspace:dateToText>8 months 3 weeks ago</clearspace:dateToText>
      <clearspace:objectType>0</clearspace:objectType>
    </item>
    <item>
      <title>Re: Targeting a symbol within a symbol</title>
      <link>https://forums.adobe.com/message/6136327?tstart=0#6136327</link>
      <description>&lt;!-- [DocumentBodyStart:59246b43-e066-466e-98fe-3369ef495036] --&gt;&lt;div class="jive-rendered-content"&gt;&lt;p&gt;Yes!&amp;nbsp; Thanks again, Hemanth! I would love to understand why yours works and mine didn't. I would think the two would be equivalent. I must not understand what &lt;strong&gt;getSymbol()&lt;/strong&gt; actually returns. But the main thing is, thank you!&lt;/p&gt;&lt;/div&gt;&lt;!-- [DocumentBodyEnd:59246b43-e066-466e-98fe-3369ef495036] --&gt;</description>
      <pubDate>Wed, 19 Feb 2014 17:06:06 GMT</pubDate>
      <author>forums_noreply@adobe.com</author>
      <guid>https://forums.adobe.com/message/6136327?tstart=0#6136327</guid>
      <dc:date>2014-02-19T17:06:06Z</dc:date>
      <clearspace:dateToText>8 months 3 weeks ago</clearspace:dateToText>
      <clearspace:replyCount>1</clearspace:replyCount>
      <clearspace:objectType>0</clearspace:objectType>
    </item>
    <item>
      <title>Re: Targeting a symbol within a symbol</title>
      <link>https://forums.adobe.com/message/6135190?tstart=0#6135190</link>
      <description>&lt;!-- [DocumentBodyStart:73e540f7-9f52-43f0-b483-50e72a9c16fc] --&gt;&lt;div class="jive-rendered-content"&gt;&lt;p&gt;try this&lt;/p&gt;&lt;p&gt;var r = &lt;strong style="background-color: #e7e7e7; font-family: adobe-clean, 'Helvetica Neue', Arial, sans-serif;"&gt;sym.createChildSymbol("card", "Stage");&lt;/strong&gt;&lt;/p&gt;&lt;p&gt;&lt;strong style="background-color: #e7e7e7; font-family: adobe-clean, 'Helvetica Neue', Arial, sans-serif;"&gt;r&lt;strong style="background-color: #e7e7e7; font-family: adobe-clean, 'Helvetica Neue', Arial, sans-serif;"&gt;.$("TextSym").html("H ello World");&lt;/strong&gt;&lt;br/&gt;&lt;/strong&gt;&lt;/p&gt;&lt;/div&gt;&lt;!-- [DocumentBodyEnd:73e540f7-9f52-43f0-b483-50e72a9c16fc] --&gt;</description>
      <pubDate>Wed, 19 Feb 2014 10:36:04 GMT</pubDate>
      <author>forums_noreply@adobe.com</author>
      <guid>https://forums.adobe.com/message/6135190?tstart=0#6135190</guid>
      <dc:date>2014-02-19T10:36:04Z</dc:date>
      <clearspace:dateToText>8 months 3 weeks ago</clearspace:dateToText>
      <clearspace:replyCount>2</clearspace:replyCount>
      <clearspace:objectType>0</clearspace:objectType>
    </item>
    <item>
      <title>Re: Targeting a symbol within a symbol</title>
      <link>https://forums.adobe.com/message/6134782?tstart=0#6134782</link>
      <description>&lt;!-- [DocumentBodyStart:a547c027-b8c1-40c6-8a6b-b6d2797f096a] --&gt;&lt;div class="jive-rendered-content"&gt;&lt;p&gt;Thought I would try creating the card with JavaScript.&amp;nbsp; So I deleted the card from the Stage (leaving it in the Symbols library) and tried the following.&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;&lt;strong&gt;sym.createChildSymbol("card", "Stage");&lt;/strong&gt;&lt;/p&gt;&lt;p&gt;&lt;strong&gt;sym.getComposition().getStage().getSymbol("card").$("TextSym").html("Hello World");&lt;/strong&gt;&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;The first line appears to work -- the card appears on the stage.&amp;nbsp; But the second line doesn't work.. "Hello World" does not appear. Any idea why?&lt;/p&gt;&lt;/div&gt;&lt;!-- [DocumentBodyEnd:a547c027-b8c1-40c6-8a6b-b6d2797f096a] --&gt;</description>
      <pubDate>Wed, 19 Feb 2014 07:25:50 GMT</pubDate>
      <author>forums_noreply@adobe.com</author>
      <guid>https://forums.adobe.com/message/6134782?tstart=0#6134782</guid>
      <dc:date>2014-02-19T07:25:50Z</dc:date>
      <clearspace:dateToText>8 months 3 weeks ago</clearspace:dateToText>
      <clearspace:replyCount>3</clearspace:replyCount>
      <clearspace:objectType>0</clearspace:objectType>
    </item>
    <item>
      <title>Re: Targeting a symbol within a symbol</title>
      <link>https://forums.adobe.com/message/6134778?tstart=0#6134778</link>
      <description>&lt;!-- [DocumentBodyStart:7494016b-c3ad-49a8-8cff-a1e1563c3db4] --&gt;&lt;div class="jive-rendered-content"&gt;&lt;p&gt;Works for me, too!&amp;nbsp; Thank you!&lt;/p&gt;&lt;/div&gt;&lt;!-- [DocumentBodyEnd:7494016b-c3ad-49a8-8cff-a1e1563c3db4] --&gt;</description>
      <pubDate>Wed, 19 Feb 2014 06:59:38 GMT</pubDate>
      <author>forums_noreply@adobe.com</author>
      <guid>https://forums.adobe.com/message/6134778?tstart=0#6134778</guid>
      <dc:date>2014-02-19T06:59:38Z</dc:date>
      <clearspace:dateToText>8 months 3 weeks ago</clearspace:dateToText>
      <clearspace:objectType>0</clearspace:objectType>
    </item>
    <item>
      <title>Re: Targeting a symbol within a symbol</title>
      <link>https://forums.adobe.com/message/6134822?tstart=0#6134822</link>
      <description>&lt;!-- [DocumentBodyStart:22da6d3e-23d0-49a2-a985-9df9e2728001] --&gt;&lt;div class="jive-rendered-content"&gt;&lt;p&gt;sym.getComposition().getStage().getSymbol("card").$("TextSym").html("Hello World");&lt;/p&gt;&lt;p&gt;This is working for me.&lt;/p&gt;&lt;/div&gt;&lt;!-- [DocumentBodyEnd:22da6d3e-23d0-49a2-a985-9df9e2728001] --&gt;</description>
      <pubDate>Wed, 19 Feb 2014 06:54:24 GMT</pubDate>
      <author>forums_noreply@adobe.com</author>
      <guid>https://forums.adobe.com/message/6134822?tstart=0#6134822</guid>
      <dc:date>2014-02-19T06:54:24Z</dc:date>
      <clearspace:dateToText>8 months 3 weeks ago</clearspace:dateToText>
      <clearspace:replyCount>5</clearspace:replyCount>
      <clearspace:objectType>0</clearspace:objectType>
    </item>
    <item>
      <title>Targeting a symbol within a symbol</title>
      <link>https://forums.adobe.com/message/6134773?tstart=0#6134773</link>
      <description>&lt;!-- [DocumentBodyStart:abe808e7-f383-4c3e-9ba6-227132774ad0] --&gt;&lt;div class="jive-rendered-content"&gt;&lt;p&gt;In Edge Animate 3 on the Mac, I have created a symbol called "card" which has two timelines inside it, one containing a symbol based on a text field ("TextSym"), the other containing a graphic. The text field currently just as a blank character in it. I want to change that to "Hello World". I can do this successfully when the text field is on the Stage with code like this:&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;&lt;strong&gt;sym.$("TextSym").html("Hello World");&lt;/strong&gt;&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;I have tried several things unsuccessfully to target the text inside the "card" symbol:&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;&lt;strong&gt;sym.$("card").$("TextSym").html("Hello World");&lt;/strong&gt;&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;&lt;strong&gt;sym.$("card").getSymbol("TextSym").html("Hello World");&lt;/strong&gt;&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;&lt;strong&gt;sym.$("card").getSymbolElement("TextSym").html("Hello World");&lt;/strong&gt;&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;I have also tried variations of:&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;&lt;strong&gt;sym.getComposition().getStage().getSymbol("card").getSymbol("TextSym").html("Hello World");&lt;/strong&gt;&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;I have placed each of these within the &lt;strong&gt;creationComplete&lt;/strong&gt; event for the Stage.&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;For the last one, for instance, the Chrome Developers Tools says:&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;&lt;span style="color: #303942; font-family: Menlo, monospace; font-size: 11px;"&gt;Javascript error in event handler! Event Type = symbol&lt;/span&gt;&lt;span style="color: #303942; font-family: Menlo, monospace; font-size: 11px;"&gt; &lt;/span&gt;&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;Files available here:&lt;/p&gt;&lt;p&gt;&lt;a class="jive-link-external-small" href="http://www.yellowtechroad.com/yellowtechroad/cards/cards005.zip" rel="nofollow" target="_blank"&gt;http://www.yellowtechroad.com/yellowtechroad/cards/cards005.zip&lt;/a&gt;&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;Any help will be greatly appreciated!&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;Mike&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;&lt;strong&gt;&lt;br/&gt;&lt;/strong&gt;&lt;/p&gt;&lt;/div&gt;&lt;!-- [DocumentBodyEnd:abe808e7-f383-4c3e-9ba6-227132774ad0] --&gt;</description>
      <pubDate>Wed, 19 Feb 2014 06:37:27 GMT</pubDate>
      <author>forums_noreply@adobe.com</author>
      <guid>https://forums.adobe.com/message/6134773?tstart=0#6134773</guid>
      <dc:date>2014-02-19T06:37:27Z</dc:date>
      <clearspace:dateToText>8 months 3 weeks ago</clearspace:dateToText>
      <clearspace:replyCount>12</clearspace:replyCount>
      <clearspace:objectType>0</clearspace:objectType>
    </item>
  </channel>
</rss>

