Jerome
unread,Feb 15, 2011, 5:27:45 AM2/15/11Sign in to reply to author
Sign in to forward
You do not have permission to delete messages in this group
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to MinimalComps
Hello,
in RotarySelector.as
at line 263
public function set numChoices(value:uint):void
We can set numChoices to 0 or 1
But there is no sens to set the numChoice < 2
Simply replace the line 263 with:
_numChoices = Math.max(Math.min(value, 10), 2);
Thanks,
Jerome