package com.exanimo.security.recaptcha { import flash.events.Event; /** * * .. * * @langversion ActionScript 3 * @playerversion Flash 9.0.0 * * @author Matthew Tretter (matthew@exanimo.com) * @since 2008.03.14 * */ public class RecaptchaWidgetEvent extends Event { public static const HELP:String = 'help'; public static const MODE_CHANGE:String = 'modeChange'; public static const READY:String = 'ready'; public static const REFRESH:String = 'refresh'; /** * * * */ public function RecaptchaWidgetEvent(type:String, bubbles:Boolean, cancelable:Boolean) { super(type, bubbles, cancelable); } // // public methods // /** * * Creates a clone of this LoadQueueEvent * * @return Event * the clone * */ public override function clone():Event { return new RecaptchaWidgetEvent(this.type, this.bubbles, this.cancelable); } /** * * Returns a String representation of this NavigationEvent * * @return String * the String representation * */ public override function toString():String { return this.formatToString('RecaptchaWidgetEvent', 'type', 'bubbles', 'cancelable'); } } }