Advertisement
Advertisement
| 06.03.2008 at 03:39PM PDT, ID: 23454998 |
|
[x]
Attachment Details
|
||
1: 2: 3: 4: 5: 6: 7: 8: 9: 10: 11: 12: 13: 14: 15: 16: 17: 18: 19: 20: 21: 22: 23: 24: 25: 26: |
private function showImg():void {
trace("showImg"); // this does not print!! why?
}
...
<mx:Tile width="100%" height="100%"
paddingTop="10" verticalGap="10" paddingLeft="10" paddingRight="10"
direction="horizontal"
id="thumbTile">
<mx:Repeater id="thumbRep" dataProvider="{thumbMetaColl}" valueCommit="showImg()">
<mx:VBox>
<mx:Image
width = "160" height="100"
horizontalAlign = "center"
scaleContent="true" maintainAspectRatio="false"
source="{thumbRep.currentItem.fileName}"
toolTip="{thumbRep.currentItem.GPS}"
doubleClickEnabled="false"
click="doImgClick(event)"
data="{thumbRep.currentItem.imgId}"
/>
</mx:VBox>
</mx:Repeater>
</mx:Tile>
|