1.8

Table Of Contents
Simplified Web Font support
Online font resources (such as Google Fonts) allow you to use their fonts for both commercial
and non-commercial projects. Using these online fonts in your documents is a matter of linking
to the Stylesheet file hosted by these services. Simply create a Remote Stylesheet entry and
paste the location of Stylesheet file in the URL field. This will make the font available to the
application. It will be added to the Fonts menu and can be used in your custom CSS
Stylesheets, via the font-family property. (SHARED-56637).
Dynamically set Media Background Images
Support has been added for dynamically setting the path of media backgrounds at run time (aka
Virtual Stationery). This is achieved via the Control Script API. The path can be set to an image
in the Images folder but also to a file on disk (the http:// and https:// protocols are not currently
supported). This greatly simplifies template management in situations where a design is shared
between different brands. This technique can also be used to dynamically set the stationery
image for the preview template in Connect Send environments. (SHARED-53522)
var myMedia = merge.template.media["Media 1"];
myMedia.stationery.front.enabled = true;
myMedia.stationery.front.url = "file://C:/letterhead.pdf";
Page 639