8/26/2011 2:09:15 AM
Title:
canvas child image click
hi all,
i have 3 images in canvas i want each image click but this images are in overlapped inside the canvas and it going to built the tshirt so i want to click one by one image in canvas to apply color for that clickable image please help me
<mx:Canvas width="100%" height="100%" >
<mx:Image source="{list.selecteditem.image}" click="{Alert.show('img1')}"/>
<mx:Image source="{list.selecteditem.image}" click="{Alert.show('img2')}"/>
<mx:Image source="{list.selecteditem.image}" click="{Alert.show('img3')}"/>
</mx:Canvas>
8/27/2011 8:35:33 AM
you should highlight the image on rollover so that user is able to know which image is he going to select. Do something like set alpha to 50% on image rollover and again 100% on rollout.