Hello all,
the slider class has a style property "slideEasingFunction" that i
supposedly can set to a function.
How can i set a function reference in an external css file? I know how
to set a class reference:
e.g. downSkin: ClassReference('whateverclass');
how would I do the same with a function? I looked in the slider code
and the style is loaded like this:
var easingFunction:Function = getStyle("slideEasingFunction") as Function;
if (easingFunction != null) {
t.easingFunction = easingFunction;
}
I have created my own slider class based on slider now anyways, so I
do have an acceptable workaround by defining the function inline or as
a property, but am still wondering how could I do it in css?
Thanks
Ben