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 948 matches
AutoHotkey Community Forum Index
Author Message
  Topic: Running psexec.exe [Solved]
aaffe

Replies: 7
Views: 177

PostForum: Ask for Help   Posted: Mon Mar 01, 2010 11:16 am   Subject: Running psexec.exe [Solved]
Yes, try this:
; no psexec in the variable
varPSExecVariable = \\computername C:\demo.exe
; or
; varPSExecVariable := "\\computername C:\demo.exe"

#x::Run, %ComSpe ...
  Topic: Hotkey for Home, End, page up , down
aaffe

Replies: 7
Views: 103

PostForum: Ask for Help   Posted: Thu Feb 11, 2010 1:15 pm   Subject: Hotkey for Home, End, page up , down
For me it works.
  Topic: Copy text from URL target
aaffe

Replies: 2
Views: 290

PostForum: Scripts & Functions   Posted: Thu Feb 11, 2010 10:55 am   Subject: Copy text from URL target
You need autohotkey_L for this to do, dont you?
  Topic: a little FileSelectFolder problem
aaffe

Replies: 9
Views: 174

PostForum: Ask for Help   Posted: Wed Feb 10, 2010 1:27 pm   Subject: a little FileSelectFolder problem
Sorry, didnt read your post.
So you could check if Z:\Backup is in the var for the folder. If so, you could count the \`s. If there are two, ok. If less or more than two, msgbox wrong folder.

That ...
  Topic: a little FileSelectFolder problem
aaffe

Replies: 9
Views: 174

PostForum: Ask for Help   Posted: Wed Feb 10, 2010 12:40 pm   Subject: a little FileSelectFolder problem
So you could check if Z:\Backup is in the var for the folder. If so, you could count the \`s. If there are two, ok. If less or more than two, msgbox wrong folder.
  Topic: a little FileSelectFolder problem
aaffe

Replies: 9
Views: 174

PostForum: Ask for Help   Posted: Wed Feb 10, 2010 8:38 am   Subject: a little FileSelectFolder problem
Hy Oceanmachine,
yes, youre right. Ifinstring does the opposite than I wrote. Im sorry for this mistake.
  Topic: how to make any key a hotkey
aaffe

Replies: 3
Views: 130

PostForum: Ask for Help   Posted: Tue Feb 09, 2010 6:08 pm   Subject: how to make any key a hotkey
Input,XX,L1
MsgBox You pressed %XX%
  Topic: a little FileSelectFolder problem
aaffe

Replies: 9
Views: 174

PostForum: Ask for Help   Posted: Tue Feb 09, 2010 3:14 pm   Subject: a little FileSelectFolder problem
Just replace this:
;Hvis brukern har valgt Z:\Backup
if WhichFolder = Z:\Backup
{
MsgBox, You selected wrong folder.
Goto, VelgFil
}

;Hvis brukern har valgt Z&# ...
  Topic: fileappend to write contents in different colours..possible?
aaffe

Replies: 7
Views: 135

PostForum: Ask for Help   Posted: Tue Feb 09, 2010 12:08 pm   Subject: fileappend to write contents in different colours..possible?
But Notepad CANT show text in colors. Thats the problem, not ahk.
You can paste text to a html-file and define there colors of the text. then the text would be colored when the html file generated by ...
  Topic: Sending an attachment on a private message
aaffe

Replies: 2
Views: 155

PostForum: General Chat   Posted: Tue Feb 09, 2010 11:59 am   Subject: Sending an attachment on a private message
Load the file up to the internet and send the url with your pm.
  Topic: fileappend to write contents in different colours..possible?
aaffe

Replies: 7
Views: 135

PostForum: Ask for Help   Posted: Tue Feb 09, 2010 11:55 am   Subject: fileappend to write contents in different colours..possible?
Where can you define colors in notepad??? I cant at mine.
Btw: Fileappend doesnt write text to notepad but in a txt file.
ya thanks but i think to write into a simple notepad it wont work
  Topic: Help i want to connect some program with my second LAN card
aaffe

Replies: 4
Views: 175

PostForum: Ask for Help   Posted: Tue Feb 09, 2010 8:45 am   Subject: Help i want to connect some program with my second LAN card
Perhaps this is something for you?:
http://www.autohotkey.com/forum/viewtopic.php?t=40377
  Topic: Toggle Crouch and Sprint for Bad Company 2
aaffe

Replies: 7
Views: 1468

PostForum: Ask for Help   Posted: Tue Feb 09, 2010 8:32 am   Subject: Toggle Crouch and Sprint for Bad Company 2
Then try to adapt this script to your keys:
#MaxThreadsPerHotkey 2 ; Need this to allow two key press threads to run at same time
MButton::
Toggle:=!Toggle
While (Toggle)
...
  Topic: Toggle Crouch and Sprint for Bad Company 2
aaffe

Replies: 7
Views: 1468

PostForum: Ask for Help   Posted: Mon Feb 08, 2010 3:16 pm   Subject: Toggle Crouch and Sprint for Bad Company 2
Like this?:
~*LShift::
GetKeyState, state, Lshift
if state = P
Send {LCtrl Down}
else
Send {LCtrl Up}
return
~*XButton1::
GetKeyState, state, XButto ...
  Topic: Shared window over LAN
aaffe

Replies: 6
Views: 117

PostForum: Ask for Help   Posted: Mon Feb 08, 2010 2:24 pm   Subject: Shared window over LAN
FileAppend to the text-file the text.
Then FileRead from all computers from this text-file and show a message-box.
Search the help-file and the forum for examples.
Just try it yourself, show your c ...
 
Page 1 of 64 Goto page 1, 2, 3 ... 62, 63, 64  Next
All times are GMT
Jump to:  


Powered by phpBB © 2001, 2005 phpBB Group