<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>The Inside Scoop - Creative News &#38; Views &#187; Smasher</title>
	<atom:link href="http://blog.insidersoftware.com/archives/tag/smasher/feed" rel="self" type="application/rss+xml" />
	<link>http://blog.insidersoftware.com</link>
	<description>Insider Software Blog</description>
	<lastBuildDate>Thu, 22 Dec 2011 20:16:58 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.1.2</generator>
		<item>
		<title>Launching Smasher from FontAgent Pro</title>
		<link>http://blog.insidersoftware.com/archives/54</link>
		<comments>http://blog.insidersoftware.com/archives/54#comments</comments>
		<pubDate>Mon, 18 Apr 2011 14:56:38 +0000</pubDate>
		<dc:creator>sstoel</dc:creator>
				<category><![CDATA[automation]]></category>
		<category><![CDATA[Smasher]]></category>
		<category><![CDATA[AppleScript]]></category>
		<category><![CDATA[FontAgent Pro]]></category>
		<category><![CDATA[Mac OS X]]></category>
		<category><![CDATA[scripts]]></category>

		<guid isPermaLink="false">http://blog.insidersoftware.com/?p=54</guid>
		<description><![CDATA[One of the great, unique features of FontAgent Pro for Macintosh is its ability to automate font management tasks using AppleScript. On the right side of the FontAgent Pro menubar is a script icon that lists scripts that ship with FontAgent Pro as well as those you add yourself. The scripts that come with FontAgent [...]]]></description>
			<content:encoded><![CDATA[<p>One of the great, unique features of <a href="http://www.insidersoftware.com/FA_pro_osx.php" target="_self">FontAgent Pro</a> for Macintosh is its ability to automate font management tasks using <a href="http://www.macosxautomation.com/applescript/" target="_blank">AppleScript</a>. On the right side of the FontAgent Pro menubar is a script icon that lists scripts that ship with FontAgent Pro as well as those you add yourself.</p>
<p><a href="http://blog.insidersoftware.com/wp-content/uploads/2009/10/FontAgent-ProScreenSnapz006.jpg"><img class="size-full wp-image-55 aligncenter" title="FontAgent ProScreenSnapz006" src="http://blog.insidersoftware.com/wp-content/uploads/2009/10/FontAgent-ProScreenSnapz006.jpg" alt="FontAgent ProScreenSnapz006" width="361" height="216" /></a>The scripts that come with FontAgent Pro work directly with FontAgent Pro, but you can add scripts that run other applications as well.</p>
<p>Below is a script that launches <a href="http://www.insidersoftware.com/SM.php" target="_self">Smasher</a>, Insider&#8217;s font and cache maintenance utility. If you would like to download the script click <a href="http://blog.insidersoftware.com/wp-content/uploads/2009/10/Launch-Smasher.zip" target="_self">here</a>. Unzip the attached file and place the script in the <em>/Library/Application Support/FontAgent Pro/Scripts/</em> folder to get it to appear as <em>Launch Smasher</em> in the FontAgent Pro &gt; Scripts menu.</p>
<p><span style="color: #0000ff;">set</span> <span style="color: #008000;">appFolder </span><span style="color: #0000ff;">to</span> <span style="color: #0000ff;">(path to applications folder as Unicode text)</span><br />
<span style="color: #0000ff;">set</span> <span style="color: #008000;">afolder </span><span style="color: #0000ff;">to</span> <span style="color: #008000;">appFolder</span> &amp; &#8220;Smasher&#8221;<br />
<span style="color: #0000ff;">tell application</span> &#8220;Finder&#8221;<br />
<span style="color: #0000ff;">if exists folder</span> <span style="color: #339966;">afolder</span> <span style="color: #0000ff;">then</span><br />
<span style="color: #0000ff;">try<br />
tell application</span> &#8220;Smasher&#8221;<br />
<span style="color: #0000ff;">activate<br />
end tell<br />
end try<br />
else<br />
tell application</span> &#8220;Finder&#8221;<br />
<span style="color: #0000ff;">activate</span><br />
<span style="color: #0000ff;">display dialog</span> &#8220;You do not have Smasher installed. To learn more about Smasher and download a demo click \&#8221;Learn More.\&#8221;" <span style="color: #0000ff;">buttons <span style="color: #000000;">{</span></span>&#8220;<span style="color: #0000ff;"><span style="color: #000000;">Cancel</span></span>&#8220;<span style="color: #0000ff;"><span style="color: #000000;">, </span></span>&#8220;<span style="color: #0000ff;"><span style="color: #000000;">Learn More</span></span>&#8220;<span style="color: #0000ff;"><span style="color: #000000;">}</span> default button 2</span><br />
<span style="color: #0000ff;">if the button returned of the result is</span> &#8220;Learn More&#8221; then<br />
<span style="color: #0000ff;">set </span><span style="color: #339966;">theURL</span> <span style="color: #0000ff;">to</span> &#8220;open http://www.insidersoftware.com/SM.php&#8221;<br />
<span style="color: #0000ff;">do shell script</span> <span style="color: #339966;">theURL</span><br />
<span style="color: #0000ff;">else</span><br />
<span style="color: #666699;">&#8211; nothing happens</span><br />
<span style="color: #0000ff;">end if<br />
end tell<br />
end if<br />
end tell</span></p>
<p><span style="color: #0000ff;"><span style="color: #000000;">Note:  If you copy and paste the text into Script Editor, depending on the browser you are using, you may need to do a find-and-replace on the quotes to get them to be <em>dumb quotes</em>. ScriptEditor will see a <em>smart quote</em> as an unknown token and the script will not compile. You can view and edit the linked script after you download it if you wish.</span></span></p>
<p><span style="color: #0000ff;"><span style="color: #000000;">This script is handy because when you start seeing <a href="http://www.fontgeek.net/blog/?p=6" target="_blank">symptoms of font cache corruption</a>, it allows you to quickly launch Smasher from FontAgent Pro, where you can clear your caches and get back to your work. It is also a good idea to make sure you have Smasher&#8217;s cache clearing scheduled to run each time you start or shutdown your Mac.<br />
</span></span></p>
<p><span style="color: #0000ff;"><span style="color: #000000;">When you run the script, Smasher launches and you can edit settings to clear your caches in any manner you wish. If you don&#8217;t have Smasher installed it  gives you an option to go to a web page where you can learn more about the product.<br />
</span></span></p>
<p style="text-align: left;"><a href="http://blog.insidersoftware.com/wp-content/uploads/2010/09/ScheduleSmasher2.png"><img class="size-full wp-image-874 aligncenter" title="ScheduleSmasher2" src="http://blog.insidersoftware.com/wp-content/uploads/2010/09/ScheduleSmasher2.png" alt="" width="451" height="341" /></a><span style="color: #0000ff;"><span style="color: #000000;"><a href="http://blog.insidersoftware.com/wp-content/uploads/2009/10/SmasherPrefsSelected.jpg"><br />
</a></span></span>This script is offered as is and you may feel free to edit it in any way you wish. For example, <span style="color: #0000ff;"><span style="color: #000000;">you add scripts that launch other applications such as QuarkXPress or InDesign from within FontAgent Pro.<br />
</span></span></p>
<p style="text-align: left;"><span style="color: #0000ff;"><span style="color: #000000;">In future posts, we will talk more about using AppleScript to automate font-related workflows. Stay tuned to <em>The Inside Scoop</em>.</span></span></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.insidersoftware.com/archives/54/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Smasher 2: New and Newsworthy</title>
		<link>http://blog.insidersoftware.com/archives/839</link>
		<comments>http://blog.insidersoftware.com/archives/839#comments</comments>
		<pubDate>Wed, 13 Apr 2011 05:48:20 +0000</pubDate>
		<dc:creator>Bruce Mitchell</dc:creator>
				<category><![CDATA[Font Management]]></category>
		<category><![CDATA[Mac OS X Issues]]></category>
		<category><![CDATA[Smasher]]></category>
		<category><![CDATA[Type Tools]]></category>
		<category><![CDATA[Adobe Creative Suite]]></category>
		<category><![CDATA[Mac OS X]]></category>
		<category><![CDATA[MS Office]]></category>
		<category><![CDATA[QuarkXPress]]></category>

		<guid isPermaLink="false">http://blog.insidersoftware.com/?p=839</guid>
		<description><![CDATA[The next generation of Smasher has arrived. And it includes a number of new features that make it even easier to solve your toughest font challenges including a simpler user interface, a new font verification engine, improved support for Adobe CS5 and expanded font preview capabilities. New Font Verification and Validation Engine Smasher 2 includes [...]]]></description>
			<content:encoded><![CDATA[<p>The next generation of Smasher has arrived. And it includes a number of new features that make it even easier to solve your toughest font challenges including a simpler user interface, a new font verification engine, improved support for Adobe CS5 and expanded font preview capabilities.</p>
<p><strong>New Font Verification and Validation Engine<br />
</strong><a href="http://blog.insidersoftware.com/wp-content/uploads/2011/04/SmasherScreenBoxWebSmall.png"><img class="alignright size-medium wp-image-864" title="SmasherScreenBoxWebSmall" src="http://blog.insidersoftware.com/wp-content/uploads/2011/04/SmasherScreenBoxWebSmall-300x231.png" alt="" width="300" height="231" /></a>Smasher 2 includes an all-new font validation and verification engine identifies problem fonts and eliminates them before they can cause you and your favorite applications major aggravation.</p>
<p><strong>Support for Adobe Creative Suite 5 Cache Clearing<br />
</strong>This new version of Smasher includes new support for InDesign, Illustrator and Photoshop CS5 application caches. Smasher 2 also continues to clear caches for earlier versions of the Adobe Creative Suite, as well as QuarkXpress, Microsoft Office applications, CUPS spool files and Mac OS X system caches—and it allows you to do so manually or on a regular, scheduled basis.</p>
<p><strong>Expanded Font Preview Capabilities<br />
</strong>Smasher 2 includes expanded font preview capabilities including the ability to define and display custom text strings at varying sizes, so you can see exactly how text will appear in your projects.</p>
<p><strong>Simpler, Cleaner User Interface<br />
</strong>Smasher’s updated interface makes it easier to access its many features. The main window, caches window and smash scheduler window have all been redesigned based on user testing to be simpler and more straightforward. Smasher 2 also includes a new look-and-feel with updated icons that are easier to view and recognize.</p>
<p><strong>WYSIWYG Font Lists<br />
</strong>Smasher now lists typefaces in their native outlines, so what you see is what you get—every time.</p>
<p><strong>Archive Original Fonts<br />
</strong>Smasher now gives you the ability to archive a copy of the original fonts into a zip file or to a disk image, making it fast and easy to back up your font collection.</p>
<p><strong>Automatic Application Updater</strong><br />
Smasher 2 updates itself automatically when Insider releases a new version, freeing you from having to manually download new software and run its associated installer.</p>
<p><strong>For More Information</strong><br />
To learn more about Smasher 2 or to get a free trial, visit <a href="http://www.insidersoftware.com/">www.insidersoftware.com</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.insidersoftware.com/archives/839/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Font Caches: #1 Font Management Problem</title>
		<link>http://blog.insidersoftware.com/archives/15</link>
		<comments>http://blog.insidersoftware.com/archives/15#comments</comments>
		<pubDate>Wed, 02 Dec 2009 08:01:56 +0000</pubDate>
		<dc:creator>sstoel</dc:creator>
				<category><![CDATA[Mac OS X Issues]]></category>
		<category><![CDATA[Adobe Creative Suite]]></category>
		<category><![CDATA[Apple iWork]]></category>
		<category><![CDATA[font caches]]></category>
		<category><![CDATA[garbled fonts]]></category>
		<category><![CDATA[Mac OS X]]></category>
		<category><![CDATA[MS Office]]></category>
		<category><![CDATA[QuarkXPress]]></category>
		<category><![CDATA[Smasher]]></category>

		<guid isPermaLink="false">http://blog.insidersoftware.com/?p=15</guid>
		<description><![CDATA[The number-one issue that Insider technical support specialists deal with is not even caused by Insider products. Instead, the top problem we solve has to do with troublesome little files called font caches. A little about font caches Font caches are data files that help your OS and applications speed the display of text on [...]]]></description>
			<content:encoded><![CDATA[<p>The number-one issue that Insider technical support specialists deal with is not even caused by Insider products. Instead, the top problem we solve has to do with troublesome little files called <em>font caches</em>.</p>
<p><strong>A little about font caches</strong></p>
<p>Font caches are data files that help your OS and applications speed the display of text on your screen. You can open and examine most cache files with a text editor because they often just list font files or their properties. Mac OS has its own cache files, as do applications in software suites such as Adobe Creative Suite, QuarkXPress, Apple iWork and Microsoft Office.</p>
<p>Every time you activate or deactivate a font, these cached lists need to be updated or  activated fonts might not appear available in many applications. In addition, when the updates don&#8217;t occur, the cache files easily become corrupt or damaged&#8211;or simply fall out of sync with their associated applications&#8211;and cause additional application instability.</p>
<p>It is difficult to tell if a cache is corrupt simply by looking at the file. Often the first indication is bizarre or unexpected behavior in your applications. So how can we go about solving this pesky issue?</p>
<p><strong>In comes Smasher</strong></p>
<p><img class="size-full wp-image-134 alignright" title="SMA_md" src="http://blog.insidersoftware.com/wp-content/uploads/2009/12/SMA_md.jpg" alt="SMA_md" width="128" height="178" /></p>
<p><a href="http://www.insidersoftware.com/SM.php" target="_self">Smasher</a> provides preventive font maintenance for your Mac OS X design applications and acts as a companion technology to your existing font manager, such as <a href="http://www.insidersoftware.com/FA_pro_osx.php" target="_self">FontAgent Pro</a>. Smasher is an essential utility for anyone who uses a lot of fonts because it clears your font and application caches on a regular, scheduled basis. So you can install Smasher, set its preferences to clear your caches at every reboot, and say goodbye to cache problems for good.</p>
<p>Every time you reboot, Smasher removes old cache files. Then, as Mac OS X and your applications launch, they create new cache files that better reflect the activation status of the fonts on your system. So fonts show up in your application menus as they should, and you are better  protected against display problems, garbled fonts, strange font substitution, printing problems and application crashes.</p>
<p>Smasher also performs routine maintenance on CUPS print spool files and other temporary system files to keep your Mac running smoothly. To learn more about Smasher or to download a demo of this handy utility, click <a title="Get Smasher" href="http://www.insidersoftware.com/SM.php" target="_self">here</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.insidersoftware.com/archives/15/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

