Starry Widget 2 Examples

All default settings
<script>
   new Starry('default');
</script>
Setting a custom length
<script>
   new Starry('custom_length', {name:'customLength', maxLength:12});
</script>
Make each star worth more
<script>
   new Starry('multiplier', {maxLength:10, multiplier:1000, feedback:true});
</script>
You can specify which star to start with
<script>
   new Starry('custom_start', {maxLength:10, startAt:5});
</script>
Use an alternative sprite
<script>
   new Starry('custom_sprite', {sprite:'alphabet.gif', width:28, height:40});
</script>
Choose to not have a zero value
<script>
   new Starry('no_null', {showNull:false});
</script>
Align the stars to the right
<script>
  new Starry('align_right', {align:'right', maxLength:12});
</script>