AutoHotkey Community

It is currently May 24th, 2012, 7:30 am

All times are UTC [ DST ]


Search found 538 matches
Search these results:

Author Message

 Forum: Support   Topic: skins in GUI

 Post subject: Re: skins in GUI
Posted: May 21st, 2012, 5:09 am 

Replies: 6
Views: 76


I would look at the GDI+ threads to create the best looking windows

 Forum: Support   Topic: FILES: COPY from - PASTE to

Posted: July 31st, 2011, 11:03 pm 

Replies: 19
Views: 898


It's not an error. Try running my example from before and you'll see why. funct() funct(x=false){ [color=green];This is the same as x := false[/color] Msgbox %x% [color=green];boolean false[/color] } x=false Msgbox %x% [color=green];literal 'false' [/color] I do not seem to...

 Forum: Support   Topic: Autofire

Posted: July 31st, 2011, 8:34 pm 

Replies: 8
Views: 10133


I implemented the script months ago, it worked fine, but now the mouse cursor appears at the upper left cornor of the desktop or turn left and up in game?! Any suggestions? $RButton:: While GetKeyState("RButton","P") Send {RButton} return ? This is an old topic...

 Forum: Support   Topic: Hotkeys only work once.

Posted: July 31st, 2011, 8:26 pm 

Replies: 1
Views: 92


Read the manual*

*
That was a hint. It is a sneaky hint.

 Forum: Support   Topic: FILES: COPY from - PASTE to

Posted: July 31st, 2011, 8:13 pm 

Replies: 19
Views: 898


FileAppend SomeText, File1.txt FileAppend SomeOtherText, File2.txt Overwrite := True Overwrite2 = True [color=green];FileCopy File1.txt, File2.txt, %OverWrite% ;This will work[/color] FileCopy File1.txt, File2.txt, %OverWrite2% ;This will not work Also, your code without comments vDoOverwrite = tru...

 Forum: Support   Topic: using Expression Method for variables?

Posted: July 3rd, 2011, 5:03 am 

Replies: 5
Views: 172


Code:
List :=
(
"
Two
Lines
"
)


Loop Parse, List, `n
 {
   VarB := "Something" A_Index
   Msgbox % VarB
 }

 Forum: Support   Topic: Is this legit.

Posted: July 3rd, 2011, 4:57 am 

Replies: 2
Views: 111


Code:
If VarA>VarB
 Funct()
else
 Sleep 1

 Forum: Support   Topic: Random Sleep Times?

Posted: April 24th, 2011, 2:33 am 

Replies: 20
Views: 1179


Functions Don't worry, it confuses everyone at first. ;Call this function RandSleep(100,1000) ;You specify the x and y values, in the above example the x was 100 and the y was 1000 RandSleep(x,y) { ;Generate a random number between x(100) and y(1000) Random, ran...

 Forum: Support   Topic: return a string?

Posted: April 24th, 2011, 1:04 am 

Replies: 2
Views: 183


Code:
msgbox % GoGo()

GoGo()
{
  A=GO
  B=play
  return % A . B
 }

 Forum: Support   Topic: Random Sleep Times?

Posted: April 24th, 2011, 12:51 am 

Replies: 20
Views: 1179


Take a look at random

 Forum: Support   Topic: Problem with StringSplit inside multiple loops

Posted: April 23rd, 2011, 11:54 pm 

Replies: 2
Views: 117


FileRead, Chunk, Wordlist.txt StringSplit, Word, Chunk, `; Loop, %Word0% { CurrentWord := Word%A_Index% StringSplit, Conj, CurrentWord, `,, %A_Tab% Loop, %Conj0% { CurrentConj := Conj%A_Index% FileAppend, %CurrentConj% `r`n, Test.txt } } Tell me if anything is unclear

 Forum: Support   Topic: array

Posted: March 21st, 2011, 4:19 am 

Replies: 7
Views: 232


Here's an example of creating an array in AHK_L Ranks := Object() Ranks.Insert(0, "Ace", 2, 3, 4, 5, 6, 7, 8, 9, 10, "Jack", "Queen", "King") ;Array starts at '0' ;ie, ; 0 = ace ; 1 = two ; 2 = three ; ... ; 11 = queen ; 12 = king Loop 13 Msgbo...

 Forum: Support   Topic: array

Posted: March 21st, 2011, 2:27 am 

Replies: 7
Views: 232


Have you looked at the helpfile?

 Forum: Offtopic   Topic: Short story.

Posted: March 2nd, 2011, 3:49 am 

Replies: 4
Views: 436


Reminds me of:
Image

 Forum: Support   Topic: iTunes script help

Posted: March 2nd, 2011, 3:33 am 

Replies: 8
Views: 242


Try looking at ControlSend

Maybe something like

Code:
^!Right::ControlSend,, {Right}, iTunes
Sort by:  
Page 1 of 36 [ Search found 538 matches ]


All times are UTC [ DST ]


Powered by phpBB® Forum Software © phpBB Group