I'm using a tile control to display an image with a short description to the right of it. Basically everything is contained with in an HBox and the I'm programmtically adding that to the tile:
thisTile.addchild(myHBox) I'd like to have some sort of visual indicator to let the user know which item they clicked on. Whether that be a red border, or a "glow" effect, or whatever. My question is, how do I do that? I don't see an easy way of setting that in any sort of item clickevent. Also, I wanted to have some sort of Zoom or magnifier so that when they hovered over the image it would be bigger...but can I do that? If I set the width/height on my hbox to 300/100 and then add that as an item to my Tile...can I create some sort of zoom or magnify effect whereby that image would be larger than the confines of its parent? Thanks in advance - you all are always so helpful!

