Now it happens that CapsLock freezes.
And this also needs to be changed, otherwise it does not work.
Code: Select all
~SC3A & f1::
Code: Select all
~SC3A & f1::
Code: Select all
Encrypt := Crypt.Encrypt.String("AES", "CBC", "abcdefghijklmnop abcdefghijklmnop", "1234567890123456", "1234567890123456")
MsgBox % Crypt.Decrypt.String("AES", "CBC", Encrypt, "1234567890123456", "123")
Code: Select all
Page.Call("Target.createTarget", {url: url2, background: LightJson.true})
Code: Select all
Page.Call("Target.createTarget", {url : url2})
Code: Select all
Page.Call("Target.createTarget", {url : url2, background: Chrome.Jxon_True()})
Code: Select all
MyFile:=3
CountF:=109
MsgBox % Format("{:0" StrLen(CountF) "}", MyFile)
Code: Select all
fn := Func("StrLen").Bind("123")
MsgBox % fn.Name
Code: Select all
test.init()
return
Class test {
init() {
this.f_func1 := ObjBindMethod(this, "func1")
SetTimer, % this.f_func1, 1111
}
func1() {
ToolTip, % "hello world"
}
}
Code: Select all
SetTimer(this.f_func1, 1111)