Mega Code Archive
Categories
/
Flex
/
Graphics
When the user clicks the button, the action sets the visible property of the image to true to make it appear
private function toggleImage():void { if (image1.visible) image1.visible=false else image1.visible=true; }