AutoHotkey Community

It is currently May 24th, 2012, 6:58 am

All times are UTC [ DST ]


Search found 67 matches
Search these results:

Author Message

 Forum: Support   Topic: Rerun certain process automatically after closing it

Posted: March 13th, 2012, 8:28 pm 

Replies: 3
Views: 94


start:
Runwait, program.exe
goto start

 Forum: Support   Topic: Highlight text?

Posted: March 13th, 2012, 5:56 pm 

Replies: 9
Views: 228


Nice.. God luck with it.

 Forum: Support   Topic: a question about wow spell rotation autohotkey

Posted: March 13th, 2012, 5:47 pm 

Replies: 3
Views: 148


If you need mouseclick to preforme that action it wold be nice if you could include a screenshot so we know where to click.

 Forum: Support   Topic: Highlight text?

Posted: March 13th, 2012, 5:40 pm 

Replies: 9
Views: 228


Try with another key.
Eks shift should work together with another key.

It must be your keyboard. I can make a hotkey.
a & b:: msgbox
And it works fine.

I wold advice you to try and update your drivers.

 Forum: Support   Topic: How to let the script run when you hit the button?

Posted: March 13th, 2012, 5:30 pm 

Replies: 2
Views: 84


Code:
Gui, Add, Button, gSubButtonOk x242 y106 w110 h90 , Button Ok
Gui, Show, w479 h379, Untitled GUI
return

SubButtonOk:
Run, myapp.exe
return

GuiClose:
ExitApp

 Forum: Issues   Topic: StringReplace and CMD input

 Post subject: StringReplace and CMD input
Posted: March 13th, 2012, 3:56 pm 

Replies: 0
Views: 333


AHK_L ANSI 32Bit v1.1.07.01
Windows 7 64bit DK

StringReplace i not working as expected with a Danish charset when the input is from a command line.
I dont know how else to enplane it other than to link til another post.

http://www.autohotkey.com/forum/viewtopic.php?t=83734

 Forum: Support   Topic: Please help. Maybe a bug with StringReplace

Posted: March 13th, 2012, 3:17 pm 

Replies: 15
Views: 515


No. But perhaps i can change the text before i run it with the exe file.

Should i report the bug?

 Forum: Support   Topic: Please help. Maybe a bug with StringReplace

Posted: March 13th, 2012, 3:08 pm 

Replies: 15
Views: 515


#NoEnv ; Recommended for performance and compatibility with future AutoHotkey releases. #Warn ; Recommended for catching common errors. #SingleInstance, force SendMode Input ; Recommended for new scripts due to its superior speed and reliability. SetWorkingDir %A_Temp%; Ensures a consistent startin...

 Forum: Support   Topic: Please help. Maybe a bug with StringReplace

Posted: March 13th, 2012, 2:56 pm 

Replies: 15
Views: 515


If i run this #NoEnv ; Recommended for performance and compatibility with future AutoHotkey releases. #Warn ; Recommended for catching common errors. #SingleInstance, force SendMode Input ; Recommended for new scripts due to its superior speed and reliability. SetWorkingDir %A_Temp%; Ensures a consi...

 Forum: Support   Topic: Please help. Maybe a bug with StringReplace

Posted: March 13th, 2012, 2:46 pm 

Replies: 15
Views: 515


No it do not work in the top.. #NoEnv ; Recommended for performance and compatibility with future AutoHotkey releases. #Warn ; Recommended for catching common errors. #SingleInstance, force SendMode Input ; Recommended for new scripts due to its superior speed and reliability. SetWorkingDir %A_Temp%...

 Forum: Support   Topic: Please help. Maybe a bug with StringReplace

Posted: March 13th, 2012, 2:33 pm 

Replies: 15
Views: 515


For some reason it works. I tried to add this. TestFunc(besked) { StringCaseSense, on ... } Works to The funny thing is if i move StringReplace, besked, besked,Æ, \u00c6, all StringReplace, besked, besked,Ø, \u00d8, all StringReplace, besked, besked,Å, \u00c5, all StringReplace, besked, besked,æ, \u...

 Forum: Support   Topic: Please help. Maybe a bug with StringReplace

Posted: March 13th, 2012, 2:20 pm 

Replies: 15
Views: 515


I run SendSMS.exe "Phone######" "Sms with æøå and ÆØÅ" If i put a msgbox %besked% right after besked=%2% That will show Sms with æøå and ÆØÅ The same inside SendSMS function right after StringReplace, besked, besked,`n, \n, all No change. But i i switch from at cmd input to a nor...

 Forum: Support   Topic: Please help. Maybe a bug with StringReplace

Posted: March 13th, 2012, 1:56 pm 

Replies: 15
Views: 515


No it comes from a command line input. If you cant see that i the first couple off lines i dont think you can help. I dont think there is a problem with the code i think its is AHK. Maby i should move to bug forum. If %2% Include æ ø å. For some reason StringReplace do not change that. But if i chan...

 Forum: Support   Topic: Simple GUI with two options

Posted: March 13th, 2012, 8:57 am 

Replies: 7
Views: 154


If understand correct. InputBoxLoop: InputBox, Output, Title, Write som tekst IfEqual, Output, text1 { MsgBox, Hey.. Correct } else IfEqual, Output, text2 { MsgBox, Hey.. Correct } else if ErrorLevel { MsgBox, CANCEL was pressed. exitapp } else { Goto, InputBoxLoop...

 Forum: Support   Topic: Highlight text?

Posted: March 13th, 2012, 8:51 am 

Replies: 9
Views: 228


Maby a better way?? This way you should have the to functions in one button.
Code:
CapsLock::
send {LButton down}
Loop
{
   GetKeyState,  CheckCL, CapsLock, P
   IfEqual, CheckCL, U
      break
}
send {LButton up}
return
Sort by:  
Page 1 of 5 [ Search found 67 matches ]


All times are UTC [ DST ]


Powered by phpBB® Forum Software © phpBB Group