Hi all, I have a custom track for a slider control. in it i'm trying to wire up the change for the parent slider so that when the slider changes, i can do some stuff. i have this in my initialize() method:
Slider(owner).addEventListener(SliderEvent.CHANGE, this.parent_change); however, when i run it, i get: TypeError: Error #1034: Type Coercion failed: cannot convert mx.core::[EMAIL PROTECTED] to mx.controls.sliderClasses.Slider. but the thing is, i stopped and debugged and i saw that the owner was of type HSlider. I thought, well, maybe there is an inheritance issue, so i changed the cast to HSlider temporarily and i still got the error. am i misunderstanding something here? thanks. -b

