Home directory for Malawi's wwwroot
Duncan Ewan
2021-02-19 3e758c29e0fde36fc088efcfc88f9a3014432b64
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
//****************************************************************************
// ActionScript Standard Library
// Selection control
//****************************************************************************
 
intrinsic class Selection
{
    static function getBeginIndex():Number;
    static function getEndIndex():Number;
    static function getCaretIndex():Number;
    static function getFocus():String;
    static function setFocus(newFocus:Object):Boolean; // newFocus can be string path or Object itself
    static function setSelection(beginIndex:Number, endIndex:Number):Void;
    static function addListener(listener:Object):Void;
    static function removeListener(listener:Object):Boolean;
 
    function onSetFocus(oldFocus:Object, newFocus:Object):Void;
}