| Author |
Message |
Topic: About Special Character |
Sakurako
Replies: 1
Views: 137
|
Forum: Bug Reports Posted: Sun May 11, 2008 8:37 pm Subject: About Special Character |
| Probably some special character(s) as "‧" could not be recognized accurately ... |
Topic: Simple date conversion (help) |
Sakurako
Replies: 6
Views: 182
|
Forum: Ask for Help Posted: Fri Mar 14, 2008 9:53 am Subject: Simple date conversion (help) |
Test := "Test000000CreationDate: 03/13/08 10:15TestDone"
RegExMatch(Test, "CreationDate: (\d{1,2})/(\d{1,2})/(\d{1,2 ... |
Topic: Function RegExMatch() BUG? |
Sakurako
Replies: 3
Views: 223
|
Forum: Ask for Help Posted: Thu Mar 13, 2008 9:14 am Subject: Function RegExMatch() BUG? |
| If a function needs to reference or create a large number of global variables, it can be defined to assume that all its variables are global (except its parameters) by making its first line either the ... |
Topic: Function RegExMatch() BUG? |
Sakurako
Replies: 3
Views: 223
|
Forum: Ask for Help Posted: Thu Mar 13, 2008 9:08 am Subject: Function RegExMatch() BUG? |
Test := A_TickCount
Test()
Test()
{
local Var1
RegExMatch(Test, "(\d+)", Var)
listvars
pause
}Test(Var = "")
... |
Topic: i have listview select confusion |
Sakurako
Replies: 8
Views: 339
|
Forum: Ask for Help Posted: Tue Mar 11, 2008 3:19 pm Subject: i have listview select confusion |
Gui, Add, ListView, HwndTestVar, Test
Loop, 6
LV_Add("", "test " A_Index)
Gui, Add, Edit, section vENum
Gui, Add, Button, ys gTest, Test
Gui, Add, Button, ys gTest0, ... |
Topic: HELP PLZ! |
Sakurako
Replies: 2
Views: 108
|
Forum: Ask for Help Posted: Tue Mar 11, 2008 6:35 am Subject: HELP PLZ! |
| SendInput {Up} |
Topic: i have listview select confusion |
Sakurako
Replies: 8
Views: 339
|
Forum: Ask for Help Posted: Tue Mar 11, 2008 5:19 am Subject: i have listview select confusion |
Gui, Add, ListView, HwndTestVar, Test
LV_Add("", "test 1")
LV_Add("", "test 2")
LV_Add("", "test 3")
Gui, Add, E ... |
Topic: FileCheck() |
Sakurako
Replies: 1
Views: 868
|
Forum: Scripts & Functions Posted: Tue Mar 11, 2008 2:20 am Subject: FileCheck() |
FileSelectFolder, FolderName
If FolderName =
return
TimeCheck := A_TickCount
FileCheck(FolderName, ".*")
TimeCheck := A_TickCount - TimeCheck
Msg := "<&quo ... |
Topic: Encrypt Utility |
Sakurako
Replies: 17
Views: 1382
|
Forum: Scripts & Functions Posted: Sat Feb 23, 2008 1:39 am Subject: Encrypt Utility |
Original Version: each character in password would be used individually
Current Version: the format of password would be used, but not sure whether different password would have similar format or not ... |
Topic: Number Generating Utility |
Sakurako
Replies: 15
Views: 546
|
Forum: Scripts & Functions Posted: Thu Feb 21, 2008 2:50 am Subject: Number Generating Utility |
CoordRec fix version
NumGenerate(Num_S = 30000, RecLength = 1000)
{
static x = 0, CoordRec, ColorCheck, ColorRecList = "S0xFFFFFFS0x000000S"
x += 1
If Mod(x, Num_S ... |
Topic: Number Generating Utility |
Sakurako
Replies: 15
Views: 546
|
Forum: Scripts & Functions Posted: Wed Feb 20, 2008 10:40 pm Subject: Number Generating Utility |
... the function provided as script, but not command. However, even as script it should not be that slow
Test Result
TestNum: 300000
Decimal Fraction Format: x.xxxxxx
----------------
NumGenera ... |
Topic: Number Generating Utility |
Sakurako
Replies: 15
Views: 546
|
Forum: Scripts & Functions Posted: Wed Feb 20, 2008 11:34 am Subject: Number Generating Utility |
| It would be up to user decision ... |
Topic: Number Generating Utility |
Sakurako
Replies: 15
Views: 546
|
Forum: Scripts & Functions Posted: Wed Feb 20, 2008 11:00 am Subject: Number Generating Utility |
TestS := Round(NumGenerate() * 300000)
Random, Test0, 0, 300000
Random,, NewSeed
Random, Test1, 0, 300000
Msgbox, 64, NumTest, NumGenerate() %TestS%`nTest0 %Test0%`nTes ... |
Topic: Number Generating Utility |
Sakurako
Replies: 15
Views: 546
|
Forum: Scripts & Functions Posted: Wed Feb 20, 2008 10:31 am Subject: Number Generating Utility |
| Better encryption method might require generating of irregular number, but for current system theoretically it would be unlikely to have good enough irregularity. Note that even with NumGenerate() fun ... |
Topic: Number Generating Utility |
Sakurako
Replies: 15
Views: 546
|
Forum: Scripts & Functions Posted: Wed Feb 20, 2008 10:20 am Subject: Number Generating Utility |
| It should be able to generate a number which is neither less than 0 nor greater than 1 ... |
| |