<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	>
<channel>
	<title>Comments on: TextExpander: Abbreviation Strategies</title>
	<atom:link href="http://smileonmymac.net/blog/2008/02/15/textexpander-abbreviation-strategies/feed/" rel="self" type="application/rss+xml" />
	<link>http://smileonmymac.net/blog/2008/02/15/textexpander-abbreviation-strategies/</link>
	<description>News, Photos, and User Tips from The SmileOnMyMac Team</description>
	<pubDate>Thu, 28 Aug 2008 11:29:59 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.6</generator>
		<item>
		<title>By: SimpleLife</title>
		<link>http://smileonmymac.net/blog/2008/02/15/textexpander-abbreviation-strategies/#comment-23276</link>
		<dc:creator>SimpleLife</dc:creator>
		<pubDate>Wed, 06 Aug 2008 07:39:51 +0000</pubDate>
		<guid isPermaLink="false">http://smileonmymac.net/blog/2008/02/15/textexpander-abbreviation-strategies/#comment-23276</guid>
		<description>I forgot to give example AppleScripts:

here is to open my Documents folder using "dc;" 

tell application "Finder" 
activate
open folder "Macintosh HD:Users:tonyamini:Documents"
end tell



here is to center the front window to the screen using "wc;"

tell application "System Events"
	set fma to first process whose frontmost is true
end tell

tell application (name of fma)
	set fmwBounds to bounds of first window
end tell

tell application "Finder"
	set desktopBounds to bounds of window of desktop
end tell

set fmwWidth to (item 3 of fmwBounds) - (item 1 of fmwBounds)
set fmwHeight to (item 4 of fmwBounds) - (item 2 of fmwBounds)

set desktopWidth to (item 3 of desktopBounds) - (item 1 of desktopBounds)
set desktopHeight to (item 4 of desktopBounds) - (item 2 of desktopBounds)

set newX to (desktopWidth / 2) - (fmwWidth / 2)
set newY to (desktopHeight / 2) - (fmwHeight / 2)

set newBounds to {newX, newY, newX + fmwWidth, newY + fmwHeight}
tell application (name of fma)
	set bounds of first window to newBounds
end tell


To open System Preferences using "sp;" 

tell application "System Preferences"
	activate
end tell



To open TextExpander Preferences using "tp;" (maybe different depending on each person's computer):

tell application "System Preferences"
	activate
	set current pane to pane "TextExpander"
end tell
tell application "System Events"
	tell process "System Preferences"
		click radio button 2 of tab group 1 of window "TextExpander"
	end tell
end tell



To open iCal using "ic;"

tell application "iCal"
	activate
end tell
tell application "System Events"
	tell process "iCal"
		keystroke "0" using {command down}
	end tell
end tell


I love AppleScript and TextExpander together. I also like how it does not perform backspaces to delete the snippet abbreviation. Other text expansion software adds backspaces when using AppleScript. This is a deal breaker as it can disrupt the AppleScripts themselves.

Cheers.</description>
		<content:encoded><![CDATA[<p>I forgot to give example AppleScripts:</p>
<p>here is to open my Documents folder using &#8220;dc;&#8221; </p>
<p>tell application &#8220;Finder&#8221;<br />
activate<br />
open folder &#8220;Macintosh HD:Users:tonyamini:Documents&#8221;<br />
end tell</p>
<p>here is to center the front window to the screen using &#8220;wc;&#8221;</p>
<p>tell application &#8220;System Events&#8221;<br />
	set fma to first process whose frontmost is true<br />
end tell</p>
<p>tell application (name of fma)<br />
	set fmwBounds to bounds of first window<br />
end tell</p>
<p>tell application &#8220;Finder&#8221;<br />
	set desktopBounds to bounds of window of desktop<br />
end tell</p>
<p>set fmwWidth to (item 3 of fmwBounds) - (item 1 of fmwBounds)<br />
set fmwHeight to (item 4 of fmwBounds) - (item 2 of fmwBounds)</p>
<p>set desktopWidth to (item 3 of desktopBounds) - (item 1 of desktopBounds)<br />
set desktopHeight to (item 4 of desktopBounds) - (item 2 of desktopBounds)</p>
<p>set newX to (desktopWidth / 2) - (fmwWidth / 2)<br />
set newY to (desktopHeight / 2) - (fmwHeight / 2)</p>
<p>set newBounds to {newX, newY, newX + fmwWidth, newY + fmwHeight}<br />
tell application (name of fma)<br />
	set bounds of first window to newBounds<br />
end tell</p>
<p>To open System Preferences using &#8220;sp;&#8221; </p>
<p>tell application &#8220;System Preferences&#8221;<br />
	activate<br />
end tell</p>
<p>To open TextExpander Preferences using &#8220;tp;&#8221; (maybe different depending on each person&#8217;s computer):</p>
<p>tell application &#8220;System Preferences&#8221;<br />
	activate<br />
	set current pane to pane &#8220;TextExpander&#8221;<br />
end tell<br />
tell application &#8220;System Events&#8221;<br />
	tell process &#8220;System Preferences&#8221;<br />
		click radio button 2 of tab group 1 of window &#8220;TextExpander&#8221;<br />
	end tell<br />
end tell</p>
<p>To open iCal using &#8220;ic;&#8221;</p>
<p>tell application &#8220;iCal&#8221;<br />
	activate<br />
end tell<br />
tell application &#8220;System Events&#8221;<br />
	tell process &#8220;iCal&#8221;<br />
		keystroke &#8220;0&#8243; using {command down}<br />
	end tell<br />
end tell</p>
<p>I love AppleScript and TextExpander together. I also like how it does not perform backspaces to delete the snippet abbreviation. Other text expansion software adds backspaces when using AppleScript. This is a deal breaker as it can disrupt the AppleScripts themselves.</p>
<p>Cheers.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: SimpleLife</title>
		<link>http://smileonmymac.net/blog/2008/02/15/textexpander-abbreviation-strategies/#comment-23275</link>
		<dc:creator>SimpleLife</dc:creator>
		<pubDate>Wed, 06 Aug 2008 07:29:06 +0000</pubDate>
		<guid isPermaLink="false">http://smileonmymac.net/blog/2008/02/15/textexpander-abbreviation-strategies/#comment-23275</guid>
		<description>I mainly use the semicolon at the end of many (90%) my text and AppleScript Snippets. Works very well and it's part of the home key. A very powerful and expandable system.

It never, ever expands falsely unless I type wrong. Makes typing very quick.

It also allows much expansion. It is very powerful when used with AppleScripts to resize windows, open Preferences, examples below.

Examples:

as; → AS
aas; → AppleScript 
tap; → tell application ""

d; → down arrow symbol ↓ 
u; → up arrow symbol ↑ 

tte; → TextExpander 

It also allows me to not have to use the shift key for caps, and I also add an extra trailing space so I don't have to hit the spacebar:

i; → I (trailing space)
im; → I'm (trailing space)

some abbreviations (medical below), I don't use the semicolon:

lvh → LVH 
copd → COPD 

Pressing tab key first clears the key memory so that I can from any application run an AppleScript.

Cheers.</description>
		<content:encoded><![CDATA[<p>I mainly use the semicolon at the end of many (90%) my text and AppleScript Snippets. Works very well and it&#8217;s part of the home key. A very powerful and expandable system.</p>
<p>It never, ever expands falsely unless I type wrong. Makes typing very quick.</p>
<p>It also allows much expansion. It is very powerful when used with AppleScripts to resize windows, open Preferences, examples below.</p>
<p>Examples:</p>
<p>as; → AS<br />
aas; → AppleScript<br />
tap; → tell application &#8220;&#8221;</p>
<p>d; → down arrow symbol ↓<br />
u; → up arrow symbol ↑ </p>
<p>tte; → TextExpander </p>
<p>It also allows me to not have to use the shift key for caps, and I also add an extra trailing space so I don&#8217;t have to hit the spacebar:</p>
<p>i; → I (trailing space)<br />
im; → I&#8217;m (trailing space)</p>
<p>some abbreviations (medical below), I don&#8217;t use the semicolon:</p>
<p>lvh → LVH<br />
copd → COPD </p>
<p>Pressing tab key first clears the key memory so that I can from any application run an AppleScript.</p>
<p>Cheers.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Stephen Strum</title>
		<link>http://smileonmymac.net/blog/2008/02/15/textexpander-abbreviation-strategies/#comment-18279</link>
		<dc:creator>Stephen Strum</dc:creator>
		<pubDate>Sat, 26 Apr 2008 16:07:53 +0000</pubDate>
		<guid isPermaLink="false">http://smileonmymac.net/blog/2008/02/15/textexpander-abbreviation-strategies/#comment-18279</guid>
		<description>I am a physician who switched from PC to Mac two months ago. I was heavily reliant on Robotype for the PC which I still feel is superior to TextExpander. However, now having happily moved to the "dark side" I am using TextExpander. My tips after years of using this kind of software are the following. 
1. For all addresses with other contact info I use the person's last name with a zero at the end. For example, for myself it would be strum0. I use a space as a delimiter. So. 
strum0, space would be 
Stephen B. Strum, MD
XXX Street
Ashland, OR 97520	
T: 541-xxx-xxxx
F: 541-xxx-xxxx
M: 541-xxx-xxxx
E: stephen@xxxxxxxxx

For any URL I use what it the URL relates to and end the abbreviation with url.  So, if I need to tell a patient or a physician that they need a special vitamin D level done at a particular lab, I can indicate that with vitDquesturl.  Expanded with spacebar tap it looks like:
http://cas2.questdiagnostics.com/scripts/webdos.wls?MGWLPN=TBCWP65&#38;wlapp=DOS&#38;OrderCode=17306X&#38;SITE=4&#38;SearchString=VSaturday&#38;tmradio=title  

For my emails in closing I would type "sr" for Sincere regards, 
Stephen  or "mbty" for 
My best to you, 
Stephen  

For medical terms I use the zero after the abbreviation; for example: PSADT stands for PSA doubling time. I use snippet PSADT0. 
Thus, expanded "psadt0" = PSA doubling time (PSADT)  

I hope this helps, 

Regards to all,
Stephen</description>
		<content:encoded><![CDATA[<p>I am a physician who switched from PC to Mac two months ago. I was heavily reliant on Robotype for the PC which I still feel is superior to TextExpander. However, now having happily moved to the &#8220;dark side&#8221; I am using TextExpander. My tips after years of using this kind of software are the following.<br />
1. For all addresses with other contact info I use the person&#8217;s last name with a zero at the end. For example, for myself it would be strum0. I use a space as a delimiter. So.<br />
strum0, space would be<br />
Stephen B. Strum, MD<br />
XXX Street<br />
Ashland, OR 97520<br />
T: 541-xxx-xxxx<br />
F: 541-xxx-xxxx<br />
M: 541-xxx-xxxx<br />
E: stephen@xxxxxxxxx</p>
<p>For any URL I use what it the URL relates to and end the abbreviation with url.  So, if I need to tell a patient or a physician that they need a special vitamin D level done at a particular lab, I can indicate that with vitDquesturl.  Expanded with spacebar tap it looks like:<br />
<a href="http://cas2.questdiagnostics.com/scripts/webdos.wls?MGWLPN=TBCWP65&amp;wlapp=DOS&amp;OrderCode=17306X&amp;SITE=4&amp;SearchString=VSaturday&amp;tmradio=title" rel="nofollow">http://cas2.questdiagnostics.com/scripts/webdos.wls?MGWLPN=TBCWP65&amp;wlapp=DOS&amp;OrderCode=17306X&amp;SITE=4&amp;SearchString=VSaturday&amp;tmradio=title</a>  </p>
<p>For my emails in closing I would type &#8220;sr&#8221; for Sincere regards,<br />
Stephen  or &#8220;mbty&#8221; for<br />
My best to you,<br />
Stephen  </p>
<p>For medical terms I use the zero after the abbreviation; for example: PSADT stands for PSA doubling time. I use snippet PSADT0.<br />
Thus, expanded &#8220;psadt0&#8243; = PSA doubling time (PSADT)  </p>
<p>I hope this helps, </p>
<p>Regards to all,<br />
Stephen</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jean</title>
		<link>http://smileonmymac.net/blog/2008/02/15/textexpander-abbreviation-strategies/#comment-16553</link>
		<dc:creator>Jean</dc:creator>
		<pubDate>Wed, 26 Mar 2008 18:57:11 +0000</pubDate>
		<guid isPermaLink="false">http://smileonmymac.net/blog/2008/02/15/textexpander-abbreviation-strategies/#comment-16553</guid>
		<description>@ Simon: Good point about longer abbreviations. Sometimes I might be I'a bit compulsive about using the shortest possible (and increasing my "time saved" stats by a character or two...)</description>
		<content:encoded><![CDATA[<p>@ Simon: Good point about longer abbreviations. Sometimes I might be I&#8217;a bit compulsive about using the shortest possible (and increasing my &#8220;time saved&#8221; stats by a character or two&#8230;)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Simon Wolf</title>
		<link>http://smileonmymac.net/blog/2008/02/15/textexpander-abbreviation-strategies/#comment-16547</link>
		<dc:creator>Simon Wolf</dc:creator>
		<pubDate>Wed, 26 Mar 2008 09:56:34 +0000</pubDate>
		<guid isPermaLink="false">http://smileonmymac.net/blog/2008/02/15/textexpander-abbreviation-strategies/#comment-16547</guid>
		<description>At the moment, for most of my snippets I use the first letter twice. For example, my personal email address is eemailp and my work on is eemaili (the company name begins with an I).

For web sites I use 'www' and then a short code, so my personal site is wwwbu.

I actually find that longer snippets are more easily remembered than short ones and an extra character or two doesn't slow me down too much.</description>
		<content:encoded><![CDATA[<p>At the moment, for most of my snippets I use the first letter twice. For example, my personal email address is eemailp and my work on is eemaili (the company name begins with an I).</p>
<p>For web sites I use &#8216;www&#8217; and then a short code, so my personal site is wwwbu.</p>
<p>I actually find that longer snippets are more easily remembered than short ones and an extra character or two doesn&#8217;t slow me down too much.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ian Beck</title>
		<link>http://smileonmymac.net/blog/2008/02/15/textexpander-abbreviation-strategies/#comment-14947</link>
		<dc:creator>Ian Beck</dc:creator>
		<pubDate>Fri, 15 Feb 2008 22:22:01 +0000</pubDate>
		<guid isPermaLink="false">http://smileonmymac.net/blog/2008/02/15/textexpander-abbreviation-strategies/#comment-14947</guid>
		<description>I use a mixture, organized by context.  Generally, if I'm using a non-letter character to differentiate them, it will be at the end.  If it's a letter or short letter sequence, then it's at the beginning.

For instance, all my URL snippets are very short and end with a backslash:
b/ = http://beckism.com/

My email address snippets (which I use a lot) are usually the first part of an address (or abbreviations, for longer email addresses) followed by the @ sign:
ian@ = ian@mydomain.com

And finally, my salutations for emails end with a comma:
hf, = Hey folks,

Then I have a number of work related snippets that start with "tt" because I work for a company called Tierra Technology, but I actually find it harder to remember those.  The last character works really well for me because so far I've been able to use characters that I associate with the context or that I need to type anyway.</description>
		<content:encoded><![CDATA[<p>I use a mixture, organized by context.  Generally, if I&#8217;m using a non-letter character to differentiate them, it will be at the end.  If it&#8217;s a letter or short letter sequence, then it&#8217;s at the beginning.</p>
<p>For instance, all my URL snippets are very short and end with a backslash:<br />
b/ = <a href="http://beckism.com/" rel="nofollow">http://beckism.com/</a></p>
<p>My email address snippets (which I use a lot) are usually the first part of an address (or abbreviations, for longer email addresses) followed by the @ sign:<br />
ian@ = <a href="mailto:ian@mydomain.com">ian@mydomain.com</a></p>
<p>And finally, my salutations for emails end with a comma:<br />
hf, = Hey folks,</p>
<p>Then I have a number of work related snippets that start with &#8220;tt&#8221; because I work for a company called Tierra Technology, but I actually find it harder to remember those.  The last character works really well for me because so far I&#8217;ve been able to use characters that I associate with the context or that I need to type anyway.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
