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 12 matches
AutoHotkey Community Forum Index
Author Message
  Topic: Command similar to Loop (files & folders)
SHiLLySiT

Replies: 10
Views: 288

PostForum: Ask for Help   Posted: Thu May 17, 2007 11:07 pm   Subject: Command similar to Loop (files & folders)
thanks a bunch. I was trying to code it like that but couldn't seem to figure out how to do it correctly.

fyi: this is ObiWan. Finally decided to register. =D
  Topic: folder icons in gui / how do i get the right one from dll ?
SHiLLySiT

Replies: 12
Views: 431

PostForum: Ask for Help   Posted: Thu May 17, 2007 4:13 am   Subject: folder icons in gui / how do i get the right one from dll ?
I tend to do things the hard way. There might be another way and if there is, someone who knows will reply to this post.
  Topic: how to desactivate keyboard while macro is running
SHiLLySiT

Replies: 13
Views: 1168

PostForum: Ask for Help   Posted: Thu May 17, 2007 4:12 am   Subject: how to desactivate keyboard while macro is running

Menu, tray, Add, Run, handler
Menu, tray, Add
Menu, tray, Add, Exit, exit
Menu, Tray, NoStandard
return


+RButton::
MouseGetPos, mousex, mousey
Menu, tray, Show, %mousex%, %mousey% ...
  Topic: folder icons in gui / how do i get the right one from dll ?
SHiLLySiT

Replies: 12
Views: 431

PostForum: Ask for Help   Posted: Thu May 17, 2007 4:03 am   Subject: folder icons in gui / how do i get the right one from dll ?
Use the number of the icon

Icon, imageres.dll, IconNumber
  Topic: how to desactivate keyboard while macro is running
SHiLLySiT

Replies: 13
Views: 1168

PostForum: Ask for Help   Posted: Thu May 17, 2007 4:01 am   Subject: how to desactivate keyboard while macro is running
Oh wait, try doing it with a tray menu command. And have it sent to specifically that window. This removes the hotkey problem totally from play.
  Topic: how to desactivate keyboard while macro is running
SHiLLySiT

Replies: 13
Views: 1168

PostForum: Ask for Help   Posted: Thu May 17, 2007 3:59 am   Subject: how to desactivate keyboard while macro is running
Yeah see i have no problem with it in any of my editors. Last piece of advice i can give you.

1. Pick up keyboard.
2. Throw at wall.
3. If ctrl key doesn't come off, repeat steps 1 and 2.

Chee ...
  Topic: how to desactivate keyboard while macro is running
SHiLLySiT

Replies: 13
Views: 1168

PostForum: Ask for Help   Posted: Thu May 17, 2007 3:16 am   Subject: how to desactivate keyboard while macro is running
Oh yeah thats what i was originally thinking of.

Are you just putting {ctrl up} at the end? You need the send command with that.

^x::
SendInput blahblahblahblahblahblahblahblahblahblah
send, { ...
  Topic: how? stop cURL interpreting comma(,) in path/filename
SHiLLySiT

Replies: 6
Views: 327

PostForum: Ask for Help   Posted: Thu May 17, 2007 3:10 am   Subject: how? stop cURL interpreting comma(,) in path/filename
Best option is to NOT use commas.
  Topic: Remove numbers from a string?
SHiLLySiT

Replies: 12
Views: 325

PostForum: Ask for Help   Posted: Thu May 17, 2007 3:07 am   Subject: Remove numbers from a string?

FileRead, raw_contents, names2.txt
StringReplace, contents, raw_contents, 1,, All
StringReplace, contents, contents, 2,, All
StringReplace, contents, contents, 3,, All
StringReplace, contents, c ...
  Topic: Why do I get extra linefeeds?
SHiLLySiT

Replies: 1
Views: 154

PostForum: Ask for Help   Posted: Thu May 17, 2007 2:55 am   Subject: Why do I get extra linefeeds?
Section from the help file:

Each line of text on Clipboard typically ends with carriage return and linefeed (CR+LF), which can be expressed in the script as `r`n.




debug2:
StringReplac ...
  Topic: how to desactivate keyboard while macro is running
SHiLLySiT

Replies: 13
Views: 1168

PostForum: Ask for Help   Posted: Thu May 17, 2007 2:34 am   Subject: how to desactivate keyboard while macro is running
I don't have a problem with this script.

Though i do remember after using one of my past scripts that sent text in firefox, firefox started acting all funny. Like the mouse wheel would change text ...
  Topic: How to retrieve LAST active window?
SHiLLySiT

Replies: 50
Views: 2147

PostForum: Ask for Help   Posted: Thu May 17, 2007 2:18 am   Subject: How to retrieve LAST active window?
You could always set up the menu that you have in the tray as a right click pop up menu. I have this set up in one of my programs.


DetectHiddenWindows, on ;just a precaution

+RButton:: ...
 
Page 1 of 1
All times are GMT
Jump to:  


Powered by phpBB © 2001, 2005 phpBB Group