AutoHotkey Community

It is currently May 27th, 2012, 12:15 am

All times are UTC [ DST ]




Post new topic Reply to topic  [ 40 posts ]  Go to page 1, 2, 3  Next
Author Message
PostPosted: August 21st, 2005, 12:15 pm 
Offline

Joined: February 14th, 2005, 10:54 am
Posts: 447
Location: Texas, Usa
http://www.autohotkey.net/~Invalid%20User/Functions.zip


A large compilation of functions can be downloaded at the above link. I believe it is the largest here at the forum. Thanks to the authors of these fine functions. Enjoy.

Expect to see more array functions soon.

Here is an index of the function names:
--ARRAYS--
ArrayAdd
ArrayCreate
ArrayMin
ArrayMax
ArraySwap
ArraySwapPos
ArraySet
ArrayToString

--COMMANDS--
ControlGet
ControlGetFocus
ControlGetText
DriveGet
DriveStaceFree
FileGetAttrib
FileGetSize
FileGetVersion
FileRead
FileReadLine
FileSelectFile
FileSelectFolder
FormatTime
GetKeyState
GuiControlGet
ImageSearch_X
ImageSearch_Y
IniRead
Input
InputBox
MouseGetPosCtrl
MouseGetPosWin
MouseGetPos_X
MouseGetPos_Y
PixelGetColor
PixelSearch_X
PixelSearch_Y
Random
RegRead
Run
SoundGet
SoundGetWaveVolume
StatusBarGetText
StatusBarControlSupport
---SB_Segments
---SB_Icon
---SB_Text
StringGetPos
StringLeft
StringLen
StringLower
StringMid
StringReplace
StringRight
StringTrimLeft
StringTrimRight
StringUpper
SysGet
Transform
WinGet
WinGetActiveTitle
WinGetClass
WinGetText
WinGetTitle

--Conversions/Transform--
Abs
Asc
Asc_2
BinToTxt
Chr
FormatDate
FormatYear
Hex
HexToString
HTML
RGBtoHex
StringToHex
TxtToBin

--Encryption/Hash--
RC4

--FileManagement--
IniKeyGet
IniKeyGet2
IniSectionGet

--List Manipulation--
ListAdd
ListCut
ListItem
ListKeep
ListLen
ListMerge
ListMove
ListPart
ListPos
ListReloc
ListReplace
ListRemove
ListSort
_Sort
ListSort_B
ListSplit
ListUniq

--Math--
Ceil
CommonFactor
Cos
DegToRad
DexToHex
Div
EvenOdd
ExtractInteger
ExtractInteger_A
Floor
GCD
GetRelPos
InsertInteger
InsertInteger_A
LCD
Max
Mean
Median
Min
MixNum
Mod
Mode
Pow
PriComp
RadToDeg
RandomUniqNum
Round
Sin
Sqrt

--Misc--
AhkStructLib
ControlGetHWND
CRC32
GetBattLife
LeapYear
MemGetStats
Scruct_Update
Scruct_Enum
Scruct_Mod
Scruct_New
ScructTest
ScructTest_Draw
Web
WinInView


--Screen--
DispChangeSettings
FindMatrix
GetMatrix

--String--
ExtractNum
StringDelete
StringFlip
StringGetChar
StringInsert
StringReplaceChar
SwapValues

_________________
my lame sig :)


Last edited by Invalid User on March 9th, 2006, 4:11 pm, edited 8 times in total.

Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: August 21st, 2005, 1:19 pm 
Offline

Joined: March 2nd, 2004, 3:36 pm
Posts: 10720
Thanks for gathering them all into one place.


Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: August 27th, 2005, 3:58 pm 
Offline

Joined: September 24th, 2004, 3:00 pm
Posts: 814
Location: Germany
Hi,

it's not always good to use functions. I tried to check the performance with the following script:

Code:
setbatchlines, -1

time = %A_TickCount%
Loop, 200000
{
   Random, var1, 1, 100
   var1 := var1 * 100
}
time1 := A_TickCount - time

time = %A_TickCount%
Loop, 200000
{
   var1 := Random(1,100) * 100
}
time2 := A_TickCount - time

time = %A_TickCount%
Loop, 200000
{
   Random, var1, 1, 100
   var1 *= 100
}
time3 := A_TickCount - time

time = %A_TickCount%
Loop, 200000
{
   Random, var1, 1, 100
   EnvMult, var1, 100
}
time4 := A_TickCount - time

msgbox, direct: %time1% `nfunction: %time2% `nwithout expressions: %time3% `nwith EnvMult: %time4%

Return

Random(Min="", Max="")
{
   Random, OutputVar, % Min, % Max
   Return OutputVar
}


Interesting, that EnvMult is faster than *=

_________________
Tekl


Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: August 27th, 2005, 4:17 pm 
Offline

Joined: March 2nd, 2004, 3:36 pm
Posts: 10720
Interesting benchmark. EnvMult is slightly faster than *= because the optimizer fails to remove the spaces around *=.

Therefore, you can slightly speed up *= by omitting the spaces:
var1*=100

I'll improve the optimizer so that it won't matter in the next version.


Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: August 27th, 2005, 5:00 pm 
Offline

Joined: September 24th, 2004, 3:00 pm
Posts: 814
Location: Germany
Whoops, without the spaces *= is now faster than EnvMult ;-)

_________________
Tekl


Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: September 3rd, 2005, 7:09 pm 
Offline

Joined: March 2nd, 2004, 3:36 pm
Posts: 10720
I thought for sure the difference in benchmarks was due to the spaces, but when I checked the code it seems that the spaces are already removed. Stranger still, I can no longer produce the difference in benchmark between EnvMult and *=. They're about the same now, even with older versions of AutoHotkey.

So I'm not sure what's going on; maybe it was a fluke. Do you still see var1 *= 100 being slower than EnvMult when you run the benchmark?


Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: September 4th, 2005, 4:15 pm 
Offline
User avatar

Joined: December 29th, 2004, 1:28 pm
Posts: 2544
Quote:
Function Compilation [Download]


Looks great. Thanks :)


Report this post
Top
 Profile  
Reply with quote  
PostPosted: January 19th, 2006, 10:26 pm 
Offline
User avatar

Joined: August 11th, 2004, 1:47 am
Posts: 5347
Location: UK
Invalid User wrote:

This is the wrong URL, please use the URL from the 'Open URL' link in the file manager. The reason I'm telling you this is because I got a few emails from various people telling me that they couldn't access the file.


Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: January 20th, 2006, 6:15 am 
Offline

Joined: February 14th, 2005, 10:54 am
Posts: 447
Location: Texas, Usa
the open link gave me a blank page everytime I used it, so I was never able to get a different url for it. How can I correct the problem?

...in addition, could you email me the user name and pw for the acct it was posted under? or..Feel free to post it here, I dont have anything to hide, and the pw is unique to that site(which is why I forgot it)

_________________
my lame sig :)


Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: January 20th, 2006, 7:35 am 
Offline

Joined: December 7th, 2005, 8:29 am
Posts: 345
Hi,

i have an account on autohotkey.net and i can't download the file,

is there a way to post somewhere else?

thanks


Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: January 20th, 2006, 9:12 am 
Offline

Joined: July 12th, 2005, 1:21 pm
Posts: 633
I do not know how to access anything from others. Could someone give me a little tip? I do not see any option to do this.. :oops:

Thalon

_________________
AHK-Icon-Changer
AHK-IRC
deutsches Forum


Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: January 20th, 2006, 9:31 am 
Offline

Joined: January 31st, 2005, 9:50 am
Posts: 3910
Location: Bremen, Germany
Yes you can, I have a a picture hosted here
http://autohotkey.net/file/users/Member ... idy_v7.jpg

The owner of the file can get the link from the "Open URL" link by copying the link into clipboard. (or following that link and copying the address from your browser address bar)

_________________
Ciao
toralf
Image


Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: January 20th, 2006, 11:41 am 
For your convenience, I put a mirror of the Funcs.zip up here (latest modified date is 21-08-2005, so I'm not sure if this is the latest version)


Report this post
Top
  
Reply with quote  
 Post subject:
PostPosted: January 20th, 2006, 12:04 pm 
Offline
User avatar

Joined: August 11th, 2004, 1:47 am
Posts: 5347
Location: UK
Invalid User wrote:
the open link gave me a blank page every time I used it, so I was never able to get a different url for it. How can I correct the problem?
It's supposed to give you a blank page beacause the zip is not a HTML formatted file that the browser can display. Right click on the 'Open URL' link and select 'Copy Link Location' (for Firefox) or 'Copy Shortcut' (for IE). toralf gave an example of how a URL should look like.

Thalon wrote:
I do not know how to access anything from others. Could someone give me a little tip? I do not see any option to do this..
You were able to download my XMLReader scripts :roll:
Try to disable your download managers or firewalls to see if they cause the problem. Also, try using a better browser.

twhyman wrote:
i have an account on autohotkey.net and i can't download the file
You do not need to have an account to download the file (like toralf kindly demonstrated). Invalid User needs to post the correct URL. I don't think I can go into his file manager account to retrieve it for him (all passwords are md5'd).


Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: January 20th, 2006, 12:19 pm 
Offline

Joined: July 12th, 2005, 1:21 pm
Posts: 633
To access foreign data I have to have always a link, which is posted by the owner (or knowing it's exact position and writing the link by hand)?

Titan wrote:
You were able to download my XMLReader scripts Rolling Eyes
Try to disable your download managers or firewalls to see if they cause the problem. Also, try using a better browser.
In your case the script was directly shown in my browser (Mozilla Firefox ;) ) and not a file to download - that's maybe also a difference..

I downloaded it from daonlyfreez.net now..

Thalon

_________________
AHK-Icon-Changer
AHK-IRC
deutsches Forum


Report this post
Top
 Profile  
Reply with quote  
Display posts from previous:  Sort by  
Post new topic Reply to topic  [ 40 posts ]  Go to page 1, 2, 3  Next

All times are UTC [ DST ]


Who is online

Users browsing this forum: Maestr0, Rajat and 52 guests


You can post new topics in this forum
You can reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot post attachments in this forum

Search for:
Powered by phpBB® Forum Software © phpBB Group