CATscript to change the CharacterRatio
CATscript to change the CharacterRatio
(OP)
thread560-322631: Drafting; inserting "PAGE # OF #" and date printed in a footer
HI Guys,
Can anyone help me by letting me know the catscript to change the CharacterRatio of a Text. By default it will be 100%, I want to change this value...!
HI Guys,
Can anyone help me by letting me know the catscript to change the CharacterRatio of a Text. By default it will be 100%, I want to change this value...!





RE: CATscript to change the CharacterRatio
Something like bellow for example:
For k = 1 to selection1.count
Set MyText = Selection1.Item(k).Value
MyText.SetParameterOnsubString catCharSpacing,0,0,25 'Spacing
MyText.SetParameterOnsubString catCharRatio,0,0,68 'Ratio
Next
Regards
Fernando
https://picasaweb.google.com/102257836106335725208
https://picasaweb.google.com/103462806772634246699...
RE: CATscript to change the CharacterRatio
This was exactly what I was looking for.
I was trying like 'MyText.catCharRatio,0,0,68,' so wasn't able to get it.
Could you please let me know where I can find the syntax/keywords for such things.
For Ex: In this case I wasn't knowing 'SetParameterOnsubString' should be used to change the font/ratio. Where can I find such details?
RE: CATscript to change the CharacterRatio
Regards
Fernando
https://picasaweb.google.com/102257836106335725208
https://picasaweb.google.com/103462806772634246699...
RE: CATscript to change the CharacterRatio