In this quick tutorial, I would like to show a quicker way to create hud circles with the help of some Illustrator Scripts.
I could not find random size stroke width script so I tried to write myself.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 |
// Random Stroke Width Script by Creativetuts.com var doc = app.activeDocument; var sel = doc.selection; var selcount = sel.length; opMin = Number(prompt("min (0-1000%)", 0)); opMax = Number(prompt("max (0-1000%)", 200)); for(i=0; i<selcount; i++) { sel[i].strokeWidth = Math.floor(Math.random() * (opMax - opMin + 1)) + opMin; } |
Other scripts used in tutorial:
- Random Opacity
- Cut at Selected Anchors.