Open GoogleCodeExporter opened 9 years ago
I forgot to mention I'm using Windows 7.
Original comment by joshuajr...@gmail.com
on 28 Jun 2010 at 4:23
I have it working in Flex Builder 3. Flash Builder 4 on Windows 7 and XP
doesn't work.
Original comment by joshuajr...@gmail.com
on 29 Jun 2010 at 3:33
I have the same problem here using Flash Builder 4 on XP. Tried to compile with
the flexlib Flex 3 lib, but got the same error.
Original comment by Stefan.S...@gmail.com
on 5 Aug 2010 at 1:34
You have to assign a track skin to get around this problem.
<ns:HSlider id="slider"
trackSkin="mx.skins.spark.SliderThumbSkin"
...
Original comment by james.al...@gmail.com
on 24 Aug 2010 at 5:05
It doesn't seem to work for me setting the trackSkin as a mxml attribute.
I achieved to make this component work (with Flex sdk 4.1) setting the
trackSkin and thumbSkin values in css :
#MySlider {
trackSkin: ClassReference("mx.skins.spark.SliderTrackSkin");
thumbSkin: ClassReference("mx.skins.spark.SliderThumbSkin");
}
Original comment by eric.hel...@fittingbox.com
on 19 Oct 2010 at 3:41
Great, this post helped! Only thing is that I also had to add
trackHighlightSkin to my css to get it to work
flexlib|HSlider
{
trackSkin: ClassReference("mx.skins.spark.SliderTrackSkin");
thumbSkin: ClassReference("mx.skins.spark.SliderThumbSkin");
trackHighlightSkin: ClassReference("mx.skins.spark.SliderTrackHighlightSkin");
}
Original comment by herd...@gmail.com
on 3 Nov 2010 at 11:04
Original issue reported on code.google.com by
joshuajr...@gmail.com
on 28 Jun 2010 at 4:20Attachments: