AutoHotkey Homepage AutoHotkey Community
Let's help each other out
 
 FAQFAQ   SearchSearch   MemberlistMemberlist   RegisterRegister 
 ProfileProfile   Log in to check your private messagesLog in to check your private messages   Log inLog in 

Search found 19 matches
AutoHotkey Community Forum Index
Author Message
  Topic: Toggle LAlt doesn’t work (keep it pressed down) in Excel
bbint

Replies: 1
Views: 300

PostForum: Ask for Help   Posted: Mon Jun 13, 2011 10:41 pm   Subject: Toggle LAlt doesn’t work (keep it pressed down) in Excel
Can anyone open Excel 2007 to test something out =)?

I don’t like to hold my modifier keys; I find it more comfortable to toggle it like a Caps Lock. I got this code from an AHK member along time ...
  Topic: Attain mouse grid effect of voice recognition software
bbint

Replies: 9
Views: 336

PostForum: Ask for Help   Posted: Wed Jun 01, 2011 12:03 am   Subject: Attain mouse grid effect of voice recognition software
I’ll probably stick with a less efficient method so I can manipulate it later. I’m not smart enough to handle yours.

Lol I don’t even understand why something as simple as this doesn’t work when I ...
  Topic: Attain mouse grid effect of voice recognition software
bbint

Replies: 9
Views: 336

PostForum: Ask for Help   Posted: Mon May 30, 2011 8:18 pm   Subject: Attain mouse grid effect of voice recognition software
How would I change the top part of nimda’s code if I wanted the option of choosing to input
qwe
asd
zxc
as sort of a left-handed numberpad

What needs to change here?

Loop 9 ; This loop sets ...
  Topic: Attain mouse grid effect of voice recognition software
bbint

Replies: 9
Views: 336

PostForum: Ask for Help   Posted: Wed May 25, 2011 1:31 am   Subject: Attain mouse grid effect of voice recognition software
Hi.

I’m trying to do my best to avoid using the mouse. I’d like to try to get the mouse moving to coordinates.

Firstly, this is foolish compared to learning the shortcuts of a software, but I’m ...
  Topic: Does anyone have experience running IronAHK on Windows?
bbint

Replies: 2
Views: 410

PostForum: Ask for Help   Posted: Sun Mar 27, 2011 9:33 pm   Subject: Does anyone have experience running IronAHK on Windows?
Hey at least when I run that script that only has Msgbox Hello World, the IronAHK icon in the status bar actually stays this time and doesn’t disappear.
http://i.imgur.com/BqXKk.png

Besides that, ...
  Topic: Does anyone have experience running IronAHK on Windows?
bbint

Replies: 2
Views: 410

PostForum: Ask for Help   Posted: Sun Mar 27, 2011 1:35 am   Subject: Does anyone have experience running IronAHK on Windows?
I’m still confused as to how to even start IronAHK. Are you just supposed to drag an .ahk script onto IronAHK.exe? I get this “Could not look up method” error when I drag my script onto it, or if I us ...
  Topic: Dragging AHK scripts on to IronAHK (for Linux) not working
bbint

Replies: 3
Views: 241

PostForum: Ask for Help   Posted: Thu Dec 30, 2010 7:40 pm   Subject: Dragging AHK scripts on to IronAHK (for Linux) not working
Hi. My computer labs are going to be using Linux, and I understand that IronAHK is pretty much AHK for linux. When I drag an AHK script onto IronAHK.exe, I get this error:

http://i.imgur.com/1nqo7. ...
  Topic: How do you ouput the original key instead of your remap?
bbint

Replies: 2
Views: 197

PostForum: Ask for Help   Posted: Sat Nov 21, 2009 9:58 am   Subject: How do you ouput the original key instead of your remap?
sweet!
Thanks a_h_k

I saw the $ in the documentation, but there were no examples, so I was doing this:

1::
Send $1
Sleep 50
Send $2
return

haha I suck
  Topic: How do you ouput the original key instead of your remap?
bbint

Replies: 2
Views: 197

PostForum: Ask for Help   Posted: Sat Nov 21, 2009 8:39 am   Subject: How do you ouput the original key instead of your remap?
Here's a partial piece of a hotkey I have


1::
Send 1
Sleep 50
Send 2
return



I want to get the number 12, but it doesn't work
I only get the 2

Besides simply using another k ...
  Topic: Focus and Highlighting of Search results in AHK forum
bbint

Replies: 3
Views: 655

PostForum: Ask for Help   Posted: Sat Nov 21, 2009 12:11 am   Subject: Focus and Highlighting of Search results in AHK forum
I see
I still think it would be better if we could have the option of seeing the highlighted words in the results page instead of having to open one of the results

URL of first page of results:
h ...
  Topic: Focus and Highlighting of Search results in AHK forum
bbint

Replies: 3
Views: 655

PostForum: Ask for Help   Posted: Fri Nov 20, 2009 7:56 pm   Subject: Focus and Highlighting of Search results in AHK forum
I did a search query with the term “blind” because I wanted to see examples of the {Blind} being used
In the search results, “blind” isn’t being highlighted
I could’ve sworn that search results were ...
  Topic: Remapped key to key - How remap key to old key and not new
bbint

Replies: 1
Views: 376

PostForum: Ask for Help   Posted: Tue Aug 11, 2009 6:40 pm   Subject: Remapped key to key - How remap key to old key and not new
I remapped dash to execute pagedown
I want to make F8 send a dash, but F8 executes pagedown instead

-::Send {PgDn}
F8::-


how do I make it so that F8 sends a dash ...
  Topic: A hotkey to Pause a loop and Unpause it doesn't work.. why?
bbint

Replies: 1
Views: 343

PostForum: Ask for Help   Posted: Sun Jul 19, 2009 6:36 pm   Subject: A hotkey to Pause a loop and Unpause it doesn't work.. why?

1::
Loop 30 ; I'm plan on viewing 30 power point slides hands-free
{
sleep 50000 ; I give myself 50 seconds to view the slide
send {PgDn} ; it automatically moves to the n ...
  Topic: Is there any way to get Shift to toggle like Caps lock?
bbint

Replies: 6
Views: 2767

PostForum: Ask for Help   Posted: Tue Jun 09, 2009 10:56 pm   Subject: Is there any way to get Shift to toggle like Caps lock?
last noob question.. is sinkfaze's code supposed to work if I just copy and paste that?

$%A_LoopField%
PressKey

am I supposed to replace any of those?

thanks
  Topic: Is there any way to get Shift to toggle like Caps lock?
bbint

Replies: 6
Views: 2767

PostForum: Ask for Help   Posted: Mon Jun 08, 2009 7:35 pm   Subject: Is there any way to get Shift to toggle like Caps lock?
Right now, I need 2 buttons:

Shift::Send {Shift down}
LCtrl::Send {Shift up}

I’d like to be able to press shift, press the buttons that I want shift-modified ...
 
Page 1 of 2 Goto page 1, 2  Next
All times are GMT
Jump to:  


Powered by phpBB © 2001, 2005 phpBB Group