i don't understand Adobe's documentation for the SelectableList class:
The SelectableList is the base class for all list-based components--for example, the List, TileList, DataGrid, and ComboBox components.
SelectableList isn't a base class for ComboBox:
SelectableList > BaseScrollPane > UIComponent > Sprite > DisplayObjectContainer > InteractiveObject > DisplayObject > EventDispatcher > Object
ComboBox > UIComponent > Sprite > DisplayObjectContainer > InteractiveObject > DisplayObject > EventDispatcher > Object
import fl.controls.*;
var l:List = new List();
trace(l is SeletableList); //true
var tl:TileList = new TileList();
trace(tl is SelectableList); //true
var dg:DataGrid = new DataGrid();
trace(dg is SelectableList); //true
var cb:ComboBox = new ComboBox();
trace(cb is SelectableList); //false
is this an error? or am i missing something?