<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=Windows-1252">
</head>
<body style="word-wrap: break-word; -webkit-nbsp-mode: space; -webkit-line-break: after-white-space;">
<div style="color: rgb(0, 0, 0);">SMTK Developers,</div>
<div style="color: rgb(0, 0, 0);"><br>
</div>
<div style="color: rgb(0, 0, 0);">I have a list of study as an attribute view. I am using this list of study as a drop down in my another tab. </div>
<div style="color: rgb(0, 0, 0);"><br>
</div>
<div style="color: rgb(0, 0, 0);">This code snippet from of my Study tab from my sbi file</div>
<div style="color: rgb(0, 0, 0);"><br>
</div>
<p style="margin: 0px;"><font color="#0000ff"><Att Name="Study-0" Type="Study" ID="755a7651-ae02-4c8b-b503-48350b863898"></font></p>
<p style="margin: 0px;"><font color="#0000ff">      <Items></font></p>
<p style="margin: 0px;"><font color="#0000ff">        <Group Name="ModelInformation"></font></p>
<p style="margin: 0px;"><font color="#0000ff">          <String Name="<span style="text-decoration: underline">modelused</span>">SMTK</String></font></p>
<p style="margin: 0px;"><font color="#0000ff">          <String Name="<span style="text-decoration: underline">studytimeframe</span>">FY 2015</String></font></p>
<p style="margin: 0px;"><font color="#0000ff">          <String Name="<span style="text-decoration: underline">modelversion</span>">SMTK 4.0</String></font></p>
<div><font color="#0000ff">        </Group> </font></div>
<div style="color: rgb(0, 0, 0);"><br>
</div>
<div style="color: rgb(0, 0, 0);">This is where I use it as a drop down</div>
<div style="color: rgb(0, 0, 0);"><br>
</div>
<div>
<p style="margin: 0px;"><span style="color: rgb(0, 0, 0);"> </span><font color="#0000ff"><Att Name="Images-0" Type="Images" ID="04ddf225-6dc6-4570-8ad8-f99e461add41"></font></p>
<p style="margin: 0px;"><font color="#0000ff">      <Items></font></p>
<p style="margin: 0px;"><font color="#0000ff">        <File Name="Images"></font></p>
<p style="margin: 0px;"><font color="#0000ff">          <RecentValues></font></p>
<p style="margin: 0px;"><font color="#0000ff">            <Val>/Users/<span style="text-decoration: underline">indushukla</span>/Desktop/ISEP Files/CollectionFromShell.png</Val></font></p>
<p style="margin: 0px;"><font color="#0000ff">          </RecentValues>/Users/<span style="text-decoration: underline">indushukla</span>/Desktop/ISEP Files/CollectionFromShell.png</File></font></p>
<p style="margin: 0px;"><font color="#0000ff">        <String Name="ImageDescription">This belongs to study0</String></font></p>
<p style="margin: 0px;"><font color="#0000ff">        <String Name="Study" Expression="true">Study-0</String></font></p>
<p style="margin: 0px;"><font color="#0000ff">      </Items></font></p>
<p style="margin: 0px;"><font color="#0000ff">    </Att></font></p>
<p style="color: rgb(0, 0, 0); margin: 0px;"><br>
</p>
<p style="color: rgb(0, 0, 0); margin: 0px;">Here’s the python script I am using to access the Study-0 from the above code</p>
<p style="margin: 0px;">image_att = asys.findAttributes(<span style="color: rgb(212, 146, 56);">'Images</span><font color="#d49238">’</font>)</p>
<p style="color: rgb(0, 0, 0); margin: 0px;"><br>
</p>
<p style="margin: 0px;"><font color="#0000ff">for image in image_att:</font></p>
<p style="margin: 0px;"><font color="#0000ff">        d={}  </font></p>
<p style="margin: 0px;"><font color="#0000ff">        if study_item.name()==smtk.attribute.to_concrete(image.item(2)).value(0):</font></p>
<p style="margin: 0px;"><font color="#0000ff">            d['file'] = smtk.attribute.to_concrete(image.item(0)).value(0)</font></p>
<p style="margin: 0px;"><font color="#0000ff">            d['description'] = smtk.attribute.to_concrete(image.item(1)).value(0)</font></p>
<p style="margin: 0px;"><font color="#0000ff">            d[‘Images'] = smtk.attribute.to_concrete(image.item(2)).value(0)</font></p>
<p style="margin: 0px;"></p>
<p style="margin: 0px;"><font color="#0000ff">            lst.append(d)</font></p>
<p style="margin: 0px;"><font color="#0000ff">       </font></p>
<p style="margin: 0px;"><font>But smtk.attribute.to_concrete(image.item(2</font><font>)).value(</font><span style="color: rgb(148, 17, 0);">0</span>) doesn’t return any value while rest of them do. Do we access them differently?</p>
<p style="margin: 0px;"><br>
</p>
<p style="margin: 0px;">Thanks,</p>
<p style="margin: 0px;"><br>
</p>
<p style="margin: 0px;">Indu</p>
<p style="color: rgb(0, 0, 0); font-family: Monaco; font-size: 11px; margin: 0px;">
<br>
</p>
</div>
</body>
</html>