AutoHotkey Community

It is currently May 23rd, 2012, 4:53 am

All times are UTC [ DST ]


Search found 12 matches
Search these results:

Author Message

 Forum: Support   Topic: Command similar to Loop (files & folders)

Posted: May 18th, 2007, 12:07 am 

Replies: 10
Views: 559


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

 Forum: Support   Topic: folder icons in gui / how do i get the right one from dll ?

Posted: May 17th, 2007, 5:13 am 

Replies: 12
Views: 1417


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.

 Forum: Support   Topic: how to desactivate keyboard while macro is running

Posted: May 17th, 2007, 5:12 am 

Replies: 13
Views: 1667


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% return handler: WinActivate, WINDOW NAME HERE WinWait, WINDOW NAME HERE SendInput, YOU TEXT HERE return exit: ExitApp t...

 Forum: Support   Topic: folder icons in gui / how do i get the right one from dll ?

Posted: May 17th, 2007, 5:03 am 

Replies: 12
Views: 1417


Use the number of the icon

Icon, imageres.dll, IconNumber

 Forum: Support   Topic: how to desactivate keyboard while macro is running

Posted: May 17th, 2007, 5:01 am 

Replies: 13
Views: 1667


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.

 Forum: Support   Topic: how to desactivate keyboard while macro is running

Posted: May 17th, 2007, 4:59 am 

Replies: 13
Views: 1667


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.

Cheers! =D

 Forum: Support   Topic: how to desactivate keyboard while macro is running

Posted: May 17th, 2007, 4:16 am 

Replies: 13
Views: 1667


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, {CTRL UP}

Oh and i just realized "+^" doesn't work for me.

 Forum: Support   Topic: how? stop cURL interpreting comma(,) in path/filename

Posted: May 17th, 2007, 4:10 am 

Replies: 6
Views: 820


Best option is to NOT use commas.

 Forum: Support   Topic: Remove numbers from a string?

Posted: May 17th, 2007, 4:07 am 

Replies: 12
Views: 639


FileRead, raw_contents, names2.txt StringReplace, contents, raw_contents, 1,, All StringReplace, contents, contents, 2,, All StringReplace, contents, contents, 3,, All StringReplace, contents, contents, 4,, All StringReplace, contents, contents, 5,, All StringReplace, contents, contents, 6,, All St...

 Forum: Support   Topic: Why do I get extra linefeeds?

Posted: May 17th, 2007, 3:55 am 

Replies: 1
Views: 444


Section from the help file:
Quote:
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.



Code:
debug2:
StringReplace, clipsource, clipboard, `r, , All
SendInput %ClipSource%
Return

 Forum: Support   Topic: how to desactivate keyboard while macro is running

Posted: May 17th, 2007, 3:34 am 

Replies: 13
Views: 1667


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 size and other buttons did weird things. I forget what i did to fix it but you could try and use this: ...

 Forum: Support   Topic: How to retrieve LAST active window?

Posted: May 17th, 2007, 3:18 am 

Replies: 51
Views: 6533


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:: ;hold shift and right click. WinGetActiveTitle, win ;get current title MouseGetPos, mousex, mousey ;get current mou...
Sort by:  
Page 1 of 1 [ Search found 12 matches ]


All times are UTC [ DST ]


Powered by phpBB® Forum Software © phpBB Group