Starting on line 197 of SliderEvent.as there is a constructor for the 
SliderEvent object.

This constructor takes the following parameters:
 type:String,
 bubbles:Boolean = false,
 cancelable:Boolean = false,
 thumbIndex:int = -1,
 value:Number = NaN,
 triggerEvent:Event = null,
 clickTarget:String = null,
 keyCode:int = -1

The problem is that the constructor code does not use all these 
parameters. Here are the two lines of code from the constructor:

 super(type, bubbles, cancelable);
 this.thumbIndex = thumbIndex;

As you can see none of the parameters after thumbIndex are being used.

Was this on purpose? Or did I discover a bug?

Anyway, if you are using this object, be aware of the problems with 
the constructor.

Mike

Reply via email to