| Author |
Message |
Topic: Simple Yaml Parser |
Rabiator
Replies: 9
Views: 2195
|
Forum: Scripts & Functions Posted: Tue Apr 19, 2011 2:05 pm Subject: Simple Yaml Parser |
That's perfect!
Thanks a lot for your quick work . |
Topic: Simple Yaml Parser |
Rabiator
Replies: 9
Views: 2195
|
Forum: Scripts & Functions Posted: Tue Apr 19, 2011 8:33 am Subject: Simple Yaml Parser |
Thanks for your answer!
Too bad that your script is useles for me. I don't want to use AHK_L.
Perhaps I'll try to fix it myself.
Never mind. |
Topic: Simple Yaml Parser |
Rabiator
Replies: 9
Views: 2195
|
Forum: Scripts & Functions Posted: Mon Apr 18, 2011 1:10 pm Subject: Simple Yaml Parser |
| When Yaml_Delete() shall delete the first item of an associated list, it doesn't do this, but it deletes the values of all items of this list instead. Deleting another item than the first one works go ... |
Topic: My status and website changes |
Rabiator
Replies: 87
Views: 14052
|
Forum: Announcements Posted: Tue Oct 12, 2010 9:50 pm Subject: My status and website changes |
Chris,
I'm sorry that you stop with AutoHotkey.
It helped me a billion times to make things faster or make them generally possible - occupationally and privately. And most important, it was and is ... |
Topic: FileSetTime doesn't work with composite parameters. |
Rabiator
Replies: 11
Views: 1833
|
Forum: Bug Reports Posted: Fri Mar 05, 2010 5:31 pm Subject: FileSetTime doesn't work with composite parameters. |
and this does not:
FileSetTime, oVar2,%a_scriptdir%\%oVar1%
variable oVar2 is in the "yyyyMMddHHmmss" format (actually it is the output of a FileGetTime of another script).
This works:Fi ... |
Topic: Using a value on excel as a flag |
Rabiator
Replies: 8
Views: 835
|
Forum: Ask for Help Posted: Wed Feb 17, 2010 11:17 pm Subject: Using a value on excel as a flag |
Better late than never.  |
Topic: [closed] assume static mode broken |
Rabiator
Replies: 3
Views: 321
|
Forum: Ask for Help Posted: Sat Dec 05, 2009 4:22 pm Subject: [closed] assume static mode broken |
Hi DerRaphael!
Gosub, % "StackInternal_" ( IsLabel( "StackInternal_" . Method ) ? Method : "Default" )
____________________________________ ... |
Topic: Returning multiple values from a function? |
Rabiator
Replies: 7
Views: 597
|
Forum: Ask for Help Posted: Mon Nov 02, 2009 9:53 pm Subject: Returning multiple values from a function? |
Another and simpler way is to return a string containing the separated return values:
a := PolarToCartesian(5, 0.2048328 * 3.1415926535)
StringSplit, array, a, |
MsgBox x = %array1%`ny ... |
Topic: WaitPixelColor() |
Rabiator
Replies: 16
Views: 7866
|
Forum: Scripts & Functions Posted: Sun Oct 04, 2009 8:26 am Subject: WaitPixelColor() |
At a first glance:
If errorlevel = 0
{
Msgbox Found it.
Return
}
Else if errorlevel = 1
{
Msgbox Error
return
}
Else if Errorlevel = 2
{
Msgbox Timed out.
Return ... |
Topic: associative arrays |
Rabiator
Replies: 2
Views: 1094
|
Forum: Scripts & Functions Posted: Mon May 25, 2009 7:41 pm Subject: Re: associative arrays |
That's a fine idea, thank you!
However, it is not possible to assign the value 0 to the member. Has the "else" to be removed? |
Topic: Serial ( COM ) Port Console Script |
Rabiator
Replies: 120
Views: 47175
|
Forum: Scripts & Functions Posted: Mon May 04, 2009 8:26 pm Subject: Serial ( COM ) Port Console Script |
| Would anyone know if this behaviour is by design?It is. You have to set , Off. By default it is On.AutoTrim, Off |
Topic: Standard Windows Wizard Template |
Rabiator
Replies: 14
Views: 4009
|
Forum: Scripts & Functions Posted: Wed Apr 29, 2009 7:52 pm Subject: Standard Windows Wizard Template |
Nice idea .
I will surely use it when the time comes! |
Topic: FileSetTime doesn't work with composite parameters. |
Rabiator
Replies: 11
Views: 1833
|
Forum: Bug Reports Posted: Sat Feb 28, 2009 1:59 pm Subject: FileSetTime doesn't work with composite parameters. |
| Thank you both for clarifying and for updating the documentation! |
Topic: FileSetTime doesn't work with composite parameters. |
Rabiator
Replies: 11
Views: 1833
|
Forum: Bug Reports Posted: Fri Feb 27, 2009 2:46 pm Subject: FileSetTime doesn't work with composite parameters. |
Thanks, it works!
FileSetTime is the only command/function I know, that excepts a traditional and an expression variable.
This is slightly confusing. At least the intended behavior should be docum ... |
Topic: FileSetTime doesn't work with composite parameters. |
Rabiator
Replies: 11
Views: 1833
|
Forum: Bug Reports Posted: Fri Feb 27, 2009 8:53 am Subject: FileSetTime doesn't work with composite parameters. |
This works.
FullDay = 20000101
FileSetTime, %FullDay%, c:\test.txt
This doesn't. In lieu the file timestamp gets the actual date and time.
Y = 2000
M = 01
D = 02
FileSetTime, %Y%%M%%D%, c ... |
| |