/ Published in: ActionScript 3

Expand |
Embed | Plain Text
Copy this code and paste it in your HTML
// Override this function to return our skin images and not the normal ones. override protected function getBorderClassForCurrentState():Class { if (currentState == "down"){ labelDisplay.setStyle("color",0xFFFFFF); return down; } else{ labelDisplay.setStyle("color",0x48250A); return up; } }
Comments
