GestureBeginが発生しません

 【ご質問】
Curl8をマルチタッチデバイス上で使用しています。
CurlIDEドキュメントに記載されている以下のサンプルを使用して
デバイス上をタッチしてもGestureBeginが発生しません。

GestureBeginを発生させるためにはなにか条件があるのでしょうか。
またGestureBeginはどのような時に発生するイベントでしょうか。 

{curl 8.0 applet}

{Frame
    background = “yellow”,
    border-width = 18pt,
    {Frame
        width = 4in,
        height = 72pt,
        border-width = 1pt,
        border-color = “black”,
        opaque-to-events? = true,
        {on e:GestureBegin at f:Frame do
            {e.continue-implicit-pointer-grab f}
            {f.clear}
            set f.background = “green”
        },
        {on e:GestureEvent at f:Frame do
            {if not (e isa GestureBegin) and not (e isa GestureEnd) then
                {f.add replace? = true, {String e}}
            }
        },
        {on GestureEnd at f:Frame do
            {unset f.background}
        }
    }
}

【回答】
GestureBegin・GestureEndイベントはCurlにてサポートされているGesture系イベントが
発生した際に、その前後で発生するイベントです。
例.2本指でGestureMagnifyを発生させると、その前後にGestureBegin・GestureEndが
  発生していることが確認出来ます。

GestureBeginイベントはタッチ操作の開始時(タッチデバイス上を触り始めた時)に
発生するものではないことにご注意下さい。

詳細は、Curl開発者ガイドの
[グラフィカル ユーザー インターフェイス]-[ポインタ イベント]内の
[ジェスチャー イベント]項をご参照ください。