Hi All,
I have the following:
-------------TilelistContainer.mxml ----------------------
(contains a tilelist with listItemRenderer = "Thumbnail"
<mx:TileList
dataProvider="{artSvc.GetLibraryTemplates.result}"
width="100%"
listItemRenderer="Thumbnail"
columnWidth="200"
height="50%"
dragEnabled = "false"
xmlns:mx="http://www.macromedia.com/2005/mxml" >
----------- Thumnail.mxml -------------------------------
<?xml version="1.0"?>
<mx:VBox xmlns:mx="http://www.macromedia.com/2005/mxml"
horizontalAlign="center"
verticalGap="0"
horizontalGap="0"
borderStyle=".5"
width="100"
height="150">
<mx:Script>
<![CDATA[
public var templateIdSel:Number;
]]>
</mx:Script>
<mx:Zoom id="zoomIn" zoomTo="1.2"/>
<mx:Zoom id="zoomOut" zoomTo=".7"/>
<mx:Label text="{dataObject.data.ID}.{dataObject.label}"
textAlign="left" fontWeight="bold"/>
<mx:Image
id="image" x="{image.width/2}" y="{image.height/2}"
horizontalAlign="center"
source="http://xKc.seg2.net{dataObject.data.URL}"
click="templateIdSel= dataObject.data.ID"
scaleX=".7" scaleY=".7"
mouseOverEffect="zoomIn"
mouseOutEffect="zoomOut"/>
</mx:VBox>
----------------------------------------
Question: when the user clicks on a thumnail, how does one get the
templateIdSel.
Any help on this is greatly appreciated,
Cheers,
Tim
--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com
Yahoo! Groups Links
<*> To visit your group on the web, go to:
http://groups.yahoo.com/group/flexcoders/
<*> To unsubscribe from this group, send an email to:
[EMAIL PROTECTED]
<*> Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/