Bullet point Size
Hi All,
Request:
1. Select two characters (any character and bullet)
2.Bullet size want to be 55% height of first character
3. Still now, I write code for to find the 55% height of character
4. Need help, how to apply to change the bullet size as per calculation.

Trying Code:
var mySel = app.selection[0];
var mySel1 = app.selection[0].characters[0];
var mySel1_CreOutlines = mySel1.createOutlines();
var myGB = mySel1_CreOutlines[0].geometricBounds;
app.activeDocument.undo();
var myGB_Height = myGB[2]- myGB[0]
alert("myGB_Height:" + myGB_Height)
var _55_Height = (myGB_Height*55)/100;
alert(_55_Height)
Any help or any other different way much be appreciated.
Regards
Siraj
