Mega Code Archive
Categories
/
Flex
/
Effects
Increase width and height of a Button control by 15 pixels each time the user selects it
public function resizeButton():void { myButton.height = myButton.height + 15; myButton.width = myButton.width + 15; }