jimmyhartington Posted January 9, 2014 Share Posted January 9, 2014 Hi I need to make a template from an InDesign document, where the graphic designer has changed the height of the font with the built in function in InDesign. See here: http://img543.imageshack.us/img543/7963/v25o.png Is it possible to replicate this in FusionPro without the need to create a special font for this? By using some tags, JavaScript or other? Quote Link to comment Share on other sites More sharing options...
Dan Korn Posted January 9, 2014 Share Posted January 9, 2014 You can do this with the <magnify> tag. If you want the height to be 90 percent of the width, just output this tag: <magnify type=textheight factor=90> You can apply this with a JavaScript rule, like so: return '<magnify type=textheight factor=90>';Make sure you check the "Treat returned string as tagged text" box. If you want to turn off the magnification, just issue an ending </magnify> tag. You could also do this the older way, with the <setwidth> tag. From the screenshot, it looks like you have the font size (the width) set to 10 points, and the height set to 90 percent of that, or 9 points. The markup to accomplish that in FusionPro looks like this: <z newsize=9><setwidth newsize=10> Please refer to the FusionPro Tags Reference Guide for more information. Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.