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 48 matches
AutoHotkey Community Forum Index
Author Message
  Topic: AHKArray [Real Array - One Variable] [Version 6]
olegbl

Replies: 92
Views: 21516

PostForum: Scripts & Functions   Posted: Fri Dec 18, 2009 7:49 pm   Subject: AHKArray [Real Array - One Variable] [Version 6]
Oh my gosh. Please don't quintuple post... Once is enough...
The documentation link works just fine: http://www.autohotkey.net/~olegbl/AHKADocumentation/.
But, as hugov and HotKeyIt mentioned, you'r ...
  Topic: AHKArray [Real Array - One Variable] [Version 6]
olegbl

Replies: 92
Views: 21516

PostForum: Scripts & Functions   Posted: Tue Oct 20, 2009 3:35 pm   Subject: AHKArray [Real Array - One Variable] [Version 6]
Haha, yes, I suppose for backwards-compatibility/support, AHKA would still be a choice. ^.^
  Topic: AHKArray [Real Array - One Variable] [Version 6]
olegbl

Replies: 92
Views: 21516

PostForum: Scripts & Functions   Posted: Tue Oct 20, 2009 12:36 am   Subject: AHKArray [Real Array - One Variable] [Version 6]
Well, this one simply became obsolete a couple of years ago with the invention of low_level, which allows you to have real data structures (linked lists, trees, etc), rather than parsed strings.

No ...
  Topic: AHKArray [Real Array - One Variable] [Version 6]
olegbl

Replies: 92
Views: 21516

PostForum: Scripts & Functions   Posted: Mon Oct 19, 2009 5:45 pm   Subject: AHKArray [Real Array - One Variable] [Version 6]

; Some x,y Coordinates For Testing
x1 := 1
y1 := 1
x2 := 3
y2 := -2

; Initialize
myArray := AHKA_NewArray()

; Adding First Ordered Pair
myOrderedPair := A ...
  Topic: AHKArray [Real Array - One Variable] [Version 6]
olegbl

Replies: 92
Views: 21516

PostForum: Scripts & Functions   Posted: Tue Mar 10, 2009 12:17 am   Subject: AHKArray [Real Array - One Variable] [Version 6]
Sorry, AHKA is outdated and I no longer support it or work on it.
You can ask InfoGulch to add this function to his array library (index := 0
Loop
{
tempIndex := AHKA_Find(array ...
  Topic: AHKArray [Real Array - One Variable] [Version 6]
olegbl

Replies: 92
Views: 21516

PostForum: Scripts & Functions   Posted: Sat Jan 03, 2009 8:16 pm   Subject: AHKArray [Real Array - One Variable] [Version 6]
By obsolete I mean there's much more powerful (& fast) techniques for creating true arrays now than how AHKA does it. AHKA was built a while ago when some of these techniques simply weren't possib ...
  Topic: [Concept Showcase] [Library] AHK Linked Lists
olegbl

Replies: 2
Views: 1051

PostForum: Scripts & Functions   Posted: Mon Nov 10, 2008 10:35 am   Subject: [Concept Showcase] [Library] AHK Linked Lists
Hmm, this is very interesting.
I haven't familiarized myself with DLLCall yet, so that is definetly a better way. LowLevel is quite an amazing library.. Didn't think such great progress had been made ...
  Topic: AHKArray [Real Array - One Variable] [Version 6]
olegbl

Replies: 92
Views: 21516

PostForum: Scripts & Functions   Posted: Sat Nov 08, 2008 7:55 am   Subject: AHKArray [Real Array - One Variable] [Version 6]
This has been mentioned, but is redundant due to hexing, as that fixes this problem.
The whole library is basically obsolete now.
It is in perfectly working condition, but I will no longer work on i ...
  Topic: [Concept Showcase] [Library] AHK Linked Lists
olegbl

Replies: 2
Views: 1051

PostForum: Scripts & Functions   Posted: Fri Nov 07, 2008 8:57 pm   Subject: [Concept Showcase] [Library] AHK Linked Lists
So, I've been toying around with the idea of converting AHKA to a linked list. I doubt I'll actually do that, but I did create a working Linked List. (I'd like to say right here that AHK REAAAALLLLLYY ...
  Topic: AHKArray [Real Array - One Variable] [Version 6]
olegbl

Replies: 92
Views: 21516

PostForum: Scripts & Functions   Posted: Fri Oct 31, 2008 6:21 pm   Subject: AHKArray [Real Array - One Variable] [Version 6]
ClipboardAll is used to save data such as pictures, music, files, etc, and thus rather difficult to store as an array of strings.
If you would like to store a clipboard that only has text-data, you m ...
  Topic: [lib] SimpleArray - short & fast string array - v3.5
olegbl

Replies: 72
Views: 11523

PostForum: Scripts & Functions   Posted: Thu Oct 23, 2008 6:27 am   Subject: [lib] SimpleArray - short & fast string array - v3.5
Oh man! If I knew about that beforehand, AHKA would be a lot different. Oh well XD
  Topic: [lib] SimpleArray - short & fast string array - v3.5
olegbl

Replies: 72
Views: 11523

PostForum: Scripts & Functions   Posted: Wed Oct 22, 2008 7:04 pm   Subject: [lib] SimpleArray - short & fast string array - v3.5
Hm, I've always wondered, is there an equivalent of the C & in AHK? It would make life so much easier for people...
Edit: p.s. not the byref &, the pointer &
  Topic: [lib] SimpleArray - short & fast string array - v3.5
olegbl

Replies: 72
Views: 11523

PostForum: Scripts & Functions   Posted: Tue Oct 14, 2008 8:21 pm   Subject: [lib] SimpleArray - short & fast string array - v3.5
Well, that's the point of nulls, they now mean (though not originally) that the string is ended. Then again, considering AHK doesn't store strings as pointers, it might forget about anything after the ...
  Topic: [lib] SimpleArray - short & fast string array - v3.5
olegbl

Replies: 72
Views: 11523

PostForum: Scripts & Functions   Posted: Tue Oct 14, 2008 7:57 pm   Subject: [lib] SimpleArray - short & fast string array - v3.5
That's a good idea.
Something like '\0' (NUL) would basically never be inputted (or technically will always be inputted, but never put in the array), it would be kind of like strtok-ing in C. Though ...
  Topic: [lib] SimpleArray - short & fast string array - v3.5
olegbl

Replies: 72
Views: 11523

PostForum: Scripts & Functions   Posted: Tue Oct 14, 2008 7:15 pm   Subject: [lib] SimpleArray - short & fast string array - v3.5
Actually, from what infogulch said, I understand it as the delimiter being encoded rather than the pipe character. Which is much much more efficient.
 
Page 1 of 4 Goto page 1, 2, 3, 4  Next
All times are GMT
Jump to:  


Powered by phpBB © 2001, 2005 phpBB Group