<?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/"
	xmlns:media="http://search.yahoo.com/mrss/"
		>
<channel>
	<title>Comments for binaer-infusion</title>
	<atom:link href="http://tilm4nn.wordpress.com/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://tilm4nn.wordpress.com</link>
	<description>tilm4nn's IT blog</description>
	<lastBuildDate>Mon, 16 Mar 2009 08:54:39 +0000</lastBuildDate>
	<generator>http://wordpress.com/</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>Comment on Editing text made easy with AutoHotkey by tilm4nn</title>
		<link>http://tilm4nn.wordpress.com/2008/01/06/editing-text-made-easy-with-autohotkey/#comment-8</link>
		<dc:creator>tilm4nn</dc:creator>
		<pubDate>Mon, 16 Mar 2009 08:54:39 +0000</pubDate>
		<guid isPermaLink="false">http://tilm4nn.wordpress.com/2008/01/06/editing-text-made-easy-with-autohotkey/#comment-8</guid>
		<description>@lageto: I don&#039;t think that was his intention. I think he&#039;d like to have a script doing things that can be started with the home and ended with the end key

@chris: Here I have a script I wrote some time ago that is outputting the alphabet while scroll-lock is activated. I think this can be easily extended to do other things and to be activated and deactivated using home and end:

Scrolllock::
{
  GetKeyState, scroll, Scrolllock, T
  if scroll = U 
  {
    SetScrollLockState, On
    SendAlphabet()
  }
  else
  {
    SetScrollLockState, Off
  }
}

SendAlphabet()
{
  waitTime = 120
  alphabet = a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,t,u,v,w,x,y,z
  Loop
  {
    Loop, parse, alphabet, `,
    {
      SendInput %A_LoopField%
      Sleep, %waitTime%
      GetKeyState, scroll, Scrolllock, P
      if scroll = D
      {
        SetScrollLockState, Off
        Sleep 1000
        exit = true
        break
      }
    }
    if exit = true
      break
  }
}
</description>
		<content:encoded><![CDATA[<p>@lageto: I don&#8217;t think that was his intention. I think he&#8217;d like to have a script doing things that can be started with the home and ended with the end key</p>
<p>@chris: Here I have a script I wrote some time ago that is outputting the alphabet while scroll-lock is activated. I think this can be easily extended to do other things and to be activated and deactivated using home and end:</p>
<p>Scrolllock::<br />
{<br />
  GetKeyState, scroll, Scrolllock, T<br />
  if scroll = U<br />
  {<br />
    SetScrollLockState, On<br />
    SendAlphabet()<br />
  }<br />
  else<br />
  {<br />
    SetScrollLockState, Off<br />
  }<br />
}</p>
<p>SendAlphabet()<br />
{<br />
  waitTime = 120<br />
  alphabet = a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,t,u,v,w,x,y,z<br />
  Loop<br />
  {<br />
    Loop, parse, alphabet, `,<br />
    {<br />
      SendInput %A_LoopField%<br />
      Sleep, %waitTime%<br />
      GetKeyState, scroll, Scrolllock, P<br />
      if scroll = D<br />
      {<br />
        SetScrollLockState, Off<br />
        Sleep 1000<br />
        exit = true<br />
        break<br />
      }<br />
    }<br />
    if exit = true<br />
      break<br />
  }<br />
}</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Editing text made easy with AutoHotkey by lageto</title>
		<link>http://tilm4nn.wordpress.com/2008/01/06/editing-text-made-easy-with-autohotkey/#comment-7</link>
		<dc:creator>lageto</dc:creator>
		<pubDate>Fri, 27 Feb 2009 22:21:14 +0000</pubDate>
		<guid isPermaLink="false">http://tilm4nn.wordpress.com/2008/01/06/editing-text-made-easy-with-autohotkey/#comment-7</guid>
		<description>@Chris: If I understand you right this is the answer to your question about switching the home and end key. script is below:

;BEGIN SCRIPT
$home::   ;S makes the following key a hotkey which activates whatever is after ::
Send {End}
return

$end::
Send {Home}
return
;END SCRIPT

Remember to save with .ahk extension and makes sure filetype is set to *all files</description>
		<content:encoded><![CDATA[<p>@Chris: If I understand you right this is the answer to your question about switching the home and end key. script is below:</p>
<p>;BEGIN SCRIPT<br />
$home::   ;S makes the following key a hotkey which activates whatever is after ::<br />
Send {End}<br />
return</p>
<p>$end::<br />
Send {Home}<br />
return<br />
;END SCRIPT</p>
<p>Remember to save with .ahk extension and makes sure filetype is set to *all files</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Editing text made easy with AutoHotkey by chris</title>
		<link>http://tilm4nn.wordpress.com/2008/01/06/editing-text-made-easy-with-autohotkey/#comment-6</link>
		<dc:creator>chris</dc:creator>
		<pubDate>Fri, 13 Feb 2009 04:53:41 +0000</pubDate>
		<guid isPermaLink="false">http://tilm4nn.wordpress.com/2008/01/06/editing-text-made-easy-with-autohotkey/#comment-6</guid>
		<description>i dont understand how to do this i made a auto macro for my game.. how would i make a hot key command.. so i can end the auto thing... i just need to no how to make a command to start and end like home as my start key and end as my end key... please send me a email our aim..redneck200513...  .skype...sk8terguy3 our yahoo..noobisskater@yahoo.com</description>
		<content:encoded><![CDATA[<p>i dont understand how to do this i made a auto macro for my game.. how would i make a hot key command.. so i can end the auto thing&#8230; i just need to no how to make a command to start and end like home as my start key and end as my end key&#8230; please send me a email our aim..redneck200513&#8230;  .skype&#8230;sk8terguy3 our <a href="mailto:yahoo..noobisskater@yahoo.com">yahoo..noobisskater@yahoo.com</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Editing text made easy with AutoHotkey by Keyboard Improvements &#124; Mind-Manual</title>
		<link>http://tilm4nn.wordpress.com/2008/01/06/editing-text-made-easy-with-autohotkey/#comment-5</link>
		<dc:creator>Keyboard Improvements &#124; Mind-Manual</dc:creator>
		<pubDate>Wed, 08 Oct 2008 11:05:21 +0000</pubDate>
		<guid isPermaLink="false">http://tilm4nn.wordpress.com/2008/01/06/editing-text-made-easy-with-autohotkey/#comment-5</guid>
		<description>[...] I&#8217;m interested in a script that would take a modifer like Ctrl-Shift and use the JKLI keys for arrow keys cause I often have to navigate toe another part of the text I&#8217;m writing and I write a lot often. Found it. [...]</description>
		<content:encoded><![CDATA[<p>[...] I&#8217;m interested in a script that would take a modifer like Ctrl-Shift and use the JKLI keys for arrow keys cause I often have to navigate toe another part of the text I&#8217;m writing and I write a lot often. Found it. [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Editing text made easy with AutoHotkey by michael chalk</title>
		<link>http://tilm4nn.wordpress.com/2008/01/06/editing-text-made-easy-with-autohotkey/#comment-3</link>
		<dc:creator>michael chalk</dc:creator>
		<pubDate>Sat, 17 May 2008 02:46:17 +0000</pubDate>
		<guid isPermaLink="false">http://tilm4nn.wordpress.com/2008/01/06/editing-text-made-easy-with-autohotkey/#comment-3</guid>
		<description>Hello tilm4nn, 

Great to read about someone else using AutoHotKey. i&#039;ve been using it for Auto Text, and it&#039;s just amazing. So good to be able to finally take my AutoText entries outside of ms word .. and even on the road with me ;-]

kind regards, michael</description>
		<content:encoded><![CDATA[<p>Hello tilm4nn, </p>
<p>Great to read about someone else using AutoHotKey. i&#8217;ve been using it for Auto Text, and it&#8217;s just amazing. So good to be able to finally take my AutoText entries outside of ms word .. and even on the road with me ;-]</p>
<p>kind regards, michael</p>
]]></content:encoded>
	</item>
</channel>
</rss>
