How to set a hover state (upSkin) when hover on another element? This example is not working on spark: http://stackoverflow.com/questions/3364244?tab=oldest#tab-top
Would like to do something like this:
<s:Button id="but1"/>
<s:Button label="change" mouseOver="button2_mouseOverHandler(event)"/>
protected function button2_mouseOverHandler(event:MouseEvent):void{
//make but1 look like I'm hovering it
}