<?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"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments on: Initial caps in Open Office Writer</title>
	<atom:link href="http://www.naveen.info/2009/08/09/initial-caps-in-open-office-writer/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.naveen.info/2009/08/09/initial-caps-in-open-office-writer/</link>
	<description>Presence of Naveen on the &#34;World Wide Web&#34;</description>
	<lastBuildDate>Thu, 09 Feb 2012 11:10:36 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
	<item>
		<title>By: Naveen</title>
		<link>http://www.naveen.info/2009/08/09/initial-caps-in-open-office-writer/#comment-4591</link>
		<dc:creator>Naveen</dc:creator>
		<pubDate>Wed, 09 Mar 2011 02:47:28 +0000</pubDate>
		<guid isPermaLink="false">http://www.naveen.info/?p=298#comment-4591</guid>
		<description>Thanks for the code.</description>
		<content:encoded><![CDATA[<p>Thanks for the code.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Kent</title>
		<link>http://www.naveen.info/2009/08/09/initial-caps-in-open-office-writer/#comment-4590</link>
		<dc:creator>Kent</dc:creator>
		<pubDate>Tue, 08 Mar 2011 19:31:43 +0000</pubDate>
		<guid isPermaLink="false">http://www.naveen.info/?p=298#comment-4590</guid>
		<description>I downloaded this macro and found only Title case worked. It did not toggle through lower and upper case. Also it only worked on one word not on a selection of words. Looking at the code it appeared that these features had been deliberately disabled.

I was able to change the code so that it worked. make the following changes to the code marked in &lt;b&gt;bold&lt;/b&gt;:

    ChgCase: &#039;Check case of seln and alter accordingly
        if seln=ucase(seln) then &#039;seln is already UPPER - set to lower
          dispatcher.executeDispatch(document, &quot;.uno:ChangeCaseToLower&quot;, &quot;&quot;, 0, Array())
           goto &lt;b&gt;FinishWord&lt;/b&gt;
        endif
       if seln=lcase(seln) then &#039;seln is already lower - set to Title
           goto SetToTitle
        endif &#039;seln is probably mixed case - set to UPPER
           dispatcher.executeDispatch(document, &quot;.uno:ChangeCaseTo&lt;b&gt;Upper&lt;/b&gt;&quot;, &quot;&quot;, 0, Array())
           goto &lt;b&gt;FinishWord&lt;/b&gt;

and add the label

             omega=vcursor.getEnd()
     &lt;b&gt;FinishWord:&lt;/b&gt;
             ThisSeln=oText.createTextCursorByRange(alpha)</description>
		<content:encoded><![CDATA[<p>I downloaded this macro and found only Title case worked. It did not toggle through lower and upper case. Also it only worked on one word not on a selection of words. Looking at the code it appeared that these features had been deliberately disabled.</p>
<p>I was able to change the code so that it worked. make the following changes to the code marked in <b>bold</b>:</p>
<p>    ChgCase: &#8216;Check case of seln and alter accordingly<br />
        if seln=ucase(seln) then &#8216;seln is already UPPER &#8211; set to lower<br />
          dispatcher.executeDispatch(document, &#8220;.uno:ChangeCaseToLower&#8221;, &#8220;&#8221;, 0, Array())<br />
           goto <b>FinishWord</b><br />
        endif<br />
       if seln=lcase(seln) then &#8216;seln is already lower &#8211; set to Title<br />
           goto SetToTitle<br />
        endif &#8216;seln is probably mixed case &#8211; set to UPPER<br />
           dispatcher.executeDispatch(document, &#8220;.uno:ChangeCaseTo<b>Upper</b>&#8220;, &#8220;&#8221;, 0, Array())<br />
           goto <b>FinishWord</b></p>
<p>and add the label</p>
<p>             omega=vcursor.getEnd()<br />
     <b>FinishWord:</b><br />
             ThisSeln=oText.createTextCursorByRange(alpha)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Dave</title>
		<link>http://www.naveen.info/2009/08/09/initial-caps-in-open-office-writer/#comment-3286</link>
		<dc:creator>Dave</dc:creator>
		<pubDate>Tue, 12 Oct 2010 00:28:55 +0000</pubDate>
		<guid isPermaLink="false">http://www.naveen.info/?p=298#comment-3286</guid>
		<description>Java Runtime must be enabled to assign the keys.

See http://www.mepis.org/docs/en/index.php?title=Enabling_Java_in_OpenOffice</description>
		<content:encoded><![CDATA[<p>Java Runtime must be enabled to assign the keys.</p>
<p>See <a href="http://www.mepis.org/docs/en/index.php?title=Enabling_Java_in_OpenOffice" rel="nofollow">http://www.mepis.org/docs/en/index.php?title=Enabling_Java_in_OpenOffice</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jaap</title>
		<link>http://www.naveen.info/2009/08/09/initial-caps-in-open-office-writer/#comment-3068</link>
		<dc:creator>Jaap</dc:creator>
		<pubDate>Sat, 26 Jun 2010 08:53:33 +0000</pubDate>
		<guid isPermaLink="false">http://www.naveen.info/?p=298#comment-3068</guid>
		<description>thanks for capital macro, it works with me on alle words in a sentence, not only the first in the rule or sentence.</description>
		<content:encoded><![CDATA[<p>thanks for capital macro, it works with me on alle words in a sentence, not only the first in the rule or sentence.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: John</title>
		<link>http://www.naveen.info/2009/08/09/initial-caps-in-open-office-writer/#comment-2763</link>
		<dc:creator>John</dc:creator>
		<pubDate>Mon, 12 Apr 2010 17:55:20 +0000</pubDate>
		<guid isPermaLink="false">http://www.naveen.info/?p=298#comment-2763</guid>
		<description>Tremendous!  Thank you so much for that.  That had been one of the few annoyances I&#039;ve had with Open Office. And you made it very easy to create the macro.  Kudos.</description>
		<content:encoded><![CDATA[<p>Tremendous!  Thank you so much for that.  That had been one of the few annoyances I&#8217;ve had with Open Office. And you made it very easy to create the macro.  Kudos.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: George</title>
		<link>http://www.naveen.info/2009/08/09/initial-caps-in-open-office-writer/#comment-1673</link>
		<dc:creator>George</dc:creator>
		<pubDate>Sat, 29 Aug 2009 13:19:51 +0000</pubDate>
		<guid isPermaLink="false">http://www.naveen.info/?p=298#comment-1673</guid>
		<description>You should also try SSuite Office for a free office suite. They have a whole range of office suites that are free for download and have been created for Windows 95 up to Windows 7. 

Their software also don&#039;t need to run on Java or .NET, like so many open source office suites,  so it makes their software very small and efficient.

You may try these links:

http://www.ssuitesoft.com/index.htm
or
http://ssuite5element.webs.com/thefifthelement.htm</description>
		<content:encoded><![CDATA[<p>You should also try SSuite Office for a free office suite. They have a whole range of office suites that are free for download and have been created for Windows 95 up to Windows 7. </p>
<p>Their software also don&#8217;t need to run on Java or .NET, like so many open source office suites,  so it makes their software very small and efficient.</p>
<p>You may try these links:</p>
<p><a href="http://www.ssuitesoft.com/index.htm" rel="nofollow">http://www.ssuitesoft.com/index.htm</a><br />
or<br />
<a href="http://ssuite5element.webs.com/thefifthelement.htm" rel="nofollow">http://ssuite5element.webs.com/thefifthelement.htm</a></p>
]]></content:encoded>
	</item>
</channel>
</rss>

<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Minified using disk: basic
Page Caching using disk: enhanced
Database Caching 1/6 queries in 0.002 seconds using disk: basic
Object Caching 330/341 objects using disk: basic

Served from: www.naveen.info @ 2012-02-09 22:34:44 -->
