<?xml version="1.0"?>
<s:Group xmlns:fx="http://ns.adobe.com/mxml/2009" xmlns:s="library://ns.adobe.com/flex/spark">

  <fx:Script>
                import spark.components.Label;
        </fx:Script>

        <s:creationComplete>
                Multitouch.inputMode = MultitouchInputMode.GESTURE;

                addEventListener(PressAndTapGestureEvent.GESTURE_PRESS_AND_TAP, function(event:PressAndTapGestureEvent):void {
                        img.rotation += 45;
                });
        </s:creationComplete>

        <s:Image id="img" source="@Embed('air-logo.jpg')"/>

</s:Group>