package com.exanimo.controls { import com.exanimo.controls.ButtonClip; /** * * .. * * @langversion ActionScript 3 * @playerversion Flash 9.0.0 * * @author Matthew Tretter * @since 2007.11.15 * */ public class CheckBoxClip extends ButtonClip { /** * * * */ public function CheckBoxClip() { super.toggle = true; } // // accessors // /** * * * */ public override function set toggle(toggle:Boolean):void { throw new Error('Warning: You cannot change a CheckBox\'s toggle.'); } } }