Hai Friends i Got Link on Hslider Skinning Example; In That Am Creating My Own Skin Styles Swfs; When i Creating in flash Lib symbol -> Right Click ->Linkage Properties->Action Script Class -> Identifier Not Higlight in Flash[3.0]-> Not supporting for 3.0 in identifier,but it Supoorting in flash 2.0[ identifier] ;And Creatied; And Applied in flex it shows no error; But am unable to get the Output Here;
<?xml version="1.0" encoding="utf-8"?> <mx:HSlider xmlns:mx="http://www.adobe.com/2006/mxml"> <mx:Style> .thumbTickLeft { disabledSkin: Embed(source="skins.swf", symbol="thumbTickLeft_disabledSkin"); downSkin: Embed(source="skins.swf", symbol="thumbTickLeft_downSkin"); overSkin: Embed(source="skins.swf", symbol="thumbTickLeft_overSkin"); upSkin: Embed(source="skins.swf", symbol="thumbTickLeft_upSkin"); } .thumbTickRight { disabledSkin: Embed(source="skins.swf", symbol="thumbTickRight_disabledSkin"); downSkin: Embed(source="skins.swf", symbol="thumbTickRight_downSkin"); overSkin: Embed(source="skins.swf", symbol="thumbTickRight_overSkin"); upSkin: Embed(source="skins.swf", symbol="thumbTickRight_upSkin"); } </mx:Style> <mx:Script> <![CDATA[ override protected function commitProperties():void { super.commitProperties(); updateThumbSkins(); } private function updateThumbSkins():void { this.getThumbAt(0).setStyle('styleName','thumbTickLeft'); this.getThumbAt(1).setStyle('styleName','thumbTickRight'); } ]]> </mx:Script> </mx:HSlider> -- You received this message because you are subscribed to the Google Groups "Flex India Community" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/flex_india?hl=en.

