Posts Tagged ‘FontAgent Pro’

64-Bit Auto-Activation in FontAgent Pro Yields Top CS5 Performance

Wednesday, August 11th, 2010

FontAgent Pro 4.140 for Mac includes new plug-ins that maximize auto-activation speed and accuracy in Adobe InDesign, Illustrator and Photoshop Creative Suite 5. The release includes an all-new, 64-bit plug-in framework that takes full advantage of Mac OS X Leopard and Snow Leopard advanced architectures.

Unique Technology that Ensures Correct Activation

Built on Insider’s unique FontSavant™ technology, the new release ensures that FontAgent Pro’s auto-activation manager always selects the right font in your documents—not just a close match or one that has the same name.

FontAgent Pro gives you full control over the font auto-activation process. It begins by detecting the most subtle differences among fonts to deliver the most accurate font activation possible. When no installed fonts match one required by a document, it provides a list of alternate fonts in your collection—with a relevancy ranking that shows how closely they match the font your document requested—so you can choose the best font. You can also activate a preferred font format (e.g., Type 1, OpenType, TrueType) automatically.

Availability and Pricing

Release 4.140 of FontAgent Pro is free to users who have already licensed FontAgent Pro 4. The product retails for $99.95 for new purchasers and is $49.95 for registered users of FontAgent Pro 3 and earlier. Cross-grades from qualifying competitive products are also available. Existing users and those wanting a 30-day trial version of FontAgent Pro can download the latest release from:

http://www.insidersoftware.com/downloads/FontAgentPro4.dmg

FontAgent Pro Still the Only CS5 Solution

Wednesday, June 30th, 2010

Adobe Creative Suite 5 was released in mid-April of this year.  And now it’s July and FontAgent Pro is still the only font manager that offers auto-activation for InDesign, Illustrator and Photoshop CS5. Why? Because at Insider we understand that auto-activation is an integral part of automating your workflow, and that using the latest creative technologies is your rightful expectation.

FontAgent Pro’s competitors claim their font managers are compatible with CS5, yet they also tell you that they have not released auto-activation support for it.  What’s that mean? At Insider we are providing you with the tools you need to stay productive today, not asking you to wait and see.

So, even this late in the game, FontAgent Pro is still the only game in town if you want full compatibility with Adobe Creative Suite 5. And from what we have been hearing, it could easily be that way for a while.

To download the FontAgent Pro CS5 auto-activation plug-ins click here.

To learn more about how Insider can help you streamline your creative process, including the industry-leading line of FontAgent Pro products, visit our site at www.insidersoftware.com.

Font Server Adds Live Reporting, Backup and Auto-Failover

Tuesday, February 9th, 2010

We’re very proud to announce FontAgent® Pro™ Server 4, which includes live font-usage tracking, live backup, automatic failover, and enhanced directory and security services. The new capabilities increase its sizable lead as the best font server for agencies, departments and enterprises.

Real-Time Font-Usage Manager
FontAgent Pro Server 4 now tracks font distribution and usage in real-time–an industry first. It shows which users have access to libraries and fonts, and when they activate and deactivate them. You can even use your favorite scripting language to export usage data into various file formats, and then use Excel, report scripts or asset managers to analyze and report on font usage and ensure compliance with font-license agreements–and be prepared for licensing audits at any time!

Live Font Server Backup
We’ve also added live backup services to FontAgent Pro Server 4. It backs up its fonts, users and groups without locking out users… something Extensis UTS doesn’t do. Better yet, you can restore a server to a previous state with just a few clicks. The backup manager lets you set the backup times, and you can also add font-server archiving into your existing backup scripts. Another important point: you can backup your font database to any networked drive–again unlike Extensis, which seems to force backup to only local drives, a practice which at best seems dangerous.

Failover Services Add to Lead in Multi-Server Environments
FontAgent Pro clients now include failover services that allow them to automatically connect to alternative servers when their primary font server is unavailable. Used in conjunction with FontAgent Pro’s server replication, these failover services make FontAgent Pro the clear choice in multi-server environments.

Enhanced Directory Services, Security and Permissions
We’ve also added faster Active Directory, Open Directory and LDAP synchronization to FontAgent Pro Server 4, along with improved support for nested groups, standalone users, keychain-based password protection and non-standard directory schemas. You can now identify group and font administrators who can upload fonts, create users and groups, edit licenses, upload and edit sets, upload and edit font libraries, assign fonts and users to groups and view font usage information–and allow IT administrators to maintain control of the font server itself.

Kerberos Single-Sign-on Support
Using Kerberos in your organization? FontAgent Pro clients now check if users have previously logged in via Kerberos. If so, they are automatically authenticated to FontAgent Pro Server. If not, FontAgent Pro asks them to enter their username and password. It’s that easy.

For More Information
We’re excited about FontAgent Pro Server 4, and we hope you are as well. If you have questions or would like more information, just let us know. We’ll get you the Inside Scoop.

Automating Font Workflow with AppleScript

Monday, December 7th, 2009

Automating project workflow is crucial to today’s prepress and design workplaces. FontAgent Pro is perfect for these applications because you can use AppleScript to automate virtually all of its functionality.

AppleScript is an English-like language you can use to write scripts that automate the actions of your Mac and the applications that run on it. When you want your Mac applications to work together in harmony, AppleScript becomes the lingua franca that makes them all talk to each other. Using it, you and your applications become a lot more productive.

fapicon

If your project workflow uses fonts, FontAgent Pro is the font management tool you need to automate your workflow. While old versions of Suitcase supported AppleScript, the current versions of Extensis Suitcase Fusion 2 and Extensis Universal Type Server (UTS) client do not, nor does FontExplorer X.

How you can use AppleScript

There are lots of things you can automate with FontAgent Pro scripts. One of the most useful scripts imports and activates fonts when you drag a folder of fonts onto an AppleScript application.

Here is an example of how this might be useful:

It is common for prepress service providers to receive many different jobs from different clients during the day. Service providers usually receive fonts in a Package or in a folder created by a Collect for Output command. These fonts need to be imported into FontAgent Pro and activated to open the application file in the project.

Using AppleScript and FontAgent Pro, you can create a droplet application where you can drag the folder of files provided by a client (which in this example is named by job number) and the fonts contained will be automatically imported into a unique library with the same name as the folder. The script also deactivates all other fonts, and then activates the library you just imported so you can be sure you are using the exact fonts provided by the client. Without doing this, you cannot be sure that the job will rip and print as expected. After running this script, you are ready to launch whatever application your client used to create the application file and proceed.

fapdragactivatorimg

If you just want to get the script and start rolling, you can download it here and unzip it on your desktop and you are good to go.

The script is provided as is, but if you have any questions or suggestions, you can contact us at Insider Technical Support.

The script

The text for the script is below:

on open these_items
set afolder to these_items
set {name:folderName} to info for afolder
try
tell application "FontAgent Pro"
set DB to default database
tell DB
– this section deactivates all fonts in FAP
set LibList to every library
deactivate fonts LibList
– get the path to where libraries are kept and returned a as a POSIX path
set LibFolder to library path of first library as POSIX file
– build path to new libary
tell application "Finder" to set libpath to POSIX path of (container of folder LibFolder as string) & folderName
end tell
set NL to new library in DB with properties {library name:folderName, library path:libpath}
import fonts afolder options {destination library:NL, activate after importing:true}
end tell
on error the error_message number the error_number
display dialog "Error: " & the error_number & ". " & the error_message buttons {"OK"} default button 1
end try
end open

If you copy and paste the text into Script Editor, you may get a syntax error when you attempt to compile the script. This is most likely because the quotation marks in the text are smart quotation marks or curly quotes as opposed to the straight dumb quotation marks. Just do a find-and-replace with the dumb quotes and you can edit the script from there, or just download the script from the link provided above.

How to use the script

Simply take a folder of fonts and give it a name. This example uses a folder created from a package-for-output InDesign CS 4 project, and it’s named with a five-digit project number.

fontfolder2

Drag the folder onto the FAPDragActivator icon on your desktop and let the script do its stuff.

folderscript

From the screenshot below, you can see that the fonts were imported into FontAgent Pro (in a library named after the folder) and are indicated active with a green activation sphere. Also notice all the other fonts in the collection are deactivated.

libadded

The fun doesn’t have to stop here. This script can be integrated into a larger script that further automates your workflow. This script could activate the fonts and could hand the document off to InDesign or QuarkXpress to print a soft proof using a preset print setting.

In future posts we will talk more about using AppleScript to automate font-related workflows. Stay tuned to the Insider Blog.