- 01
 - 02
 - 03
 - 04
 - 05
 - 06
 - 07
 - 08
 - 09
 - 10
 - 11
 - 12
 - 13
 - 14
 - 15
 - 16
 - 17
 - 18
 - 19
 - 20
 - 21
 - 22
 - 23
 - 24
 
                        Вот так выкидывает исключение 
(this._sliderGraphic as flash.display.DisplayObject).addEventListener(flash.events.MouseEvent.MOUSE_DOWN, function (arg1:flash.events.MouseEvent):*
            {
                _holdPin();
                return;
			})
(this._sliderGraphic as flash.display.DisplayObject).addEventListener(flash.events.MouseEvent.MOUSE_UP, function (arg1:flash.events.MouseEvent):*
            {
                _releasePin();
                return;
            })
А вот так нет :)
            (this._sliderGraphic as flash.display.DisplayObject).addEventListener(flash.events.MouseEvent.MOUSE_DOWN, function (arg1:flash.events.MouseEvent):*
            {
                _holdPin();
                return;
			})
            o=this._sliderGraphic as flash.display.DisplayObject;//добавленно мной
            (this._sliderGraphic as flash.display.DisplayObject).addEventListener(flash.events.MouseEvent.MOUSE_UP, function (arg1:flash.events.MouseEvent):*
            {
                _releasePin();
                return;
            })
                                 
        
Этой: "Вот так выкидывает исключение "?
o=this._sliderGraphic as flash.display.DisplayObject;//добавленно мной