Timeline



Nov 28, 2016:

9:14 PM Ticket #3517 (VLC .exe not working with Windows 10) closed by Jos
No Bug: This seems to be a support request, not a bug report, so please come to the forum and post your questions there. Jos
8:24 PM Ticket #3517 (VLC .exe not working with Windows 10) created by justin.sherwood@…
When trying to run VLC player exe with silent parameter Windows 10 …
8:14 PM Ticket #3516 (Specify types of parameters of _Crypt_EncryptData) updated by Sponge Jhan
Replying to Jpm: > Can you provide a repro script so I can verify what should be done in the doc? > > Thanks Please run the code at the end of this comment. I do the same as the documentation, encrypting without explicit StringToBinary call and decrypting with BinaryToString using default encoding. My machine reports 59/56 for two lengths. Thanks! #include <Crypt.au3> #include <MsgBoxConstants.au3> $plaintext = "Hello! ជំរាបសួរ! Allô! Привет! 您好!مرحبا! હેલો! שלום! こんにちは!" $ciphertext = _Crypt_EncryptData($plaintext, "test", $CALG_RC4) $result = BinaryToString(_Crypt_DecryptData($ciphertext, "test", $CALG_RC4)) MsgBox($MB_OK, "Result", $result & @LF & _ "Length original: " & StringLen($plaintext) & @LF & _ "Length after decryption: " & StringLen($result))

Nov 26, 2016:

10:39 PM Ticket #3516 (Specify types of parameters of _Crypt_EncryptData) updated by jchd18
Sidenote: strings really should be converted to UTF8 before encryption and back from UTF8 after decryption, so that portability is achieved in all use cases (non-codepage chars in plaintext string or different codepages between encryption and decryption machines). Maybe the doc should mention that and perhaps give a multi-lingual example (e.g. plaintext = "Hello! ជំរាបសួរ! Allô! Привет! 您好!مرحبا! હેલો! שלום! こんにちは!").

Nov 25, 2016:

3:45 PM Ticket #3516 (Specify types of parameters of _Crypt_EncryptData) updated by J-Paul Mesnage
Component changed
In fact the doc say implicitly that the parameters are variants ($v*) so it is the user responsability to give string or binary. I understand that for chinease "characters" it seems better to use Binary as the AutoIt strings (UCS2) is not enough to handle all Chinese "characters" Can you provide a repro script so I can verify what should be done in the doc? Thanks

Nov 21, 2016:

11:09 AM Ticket #3515 (Assigning directly a value to an element of an array in array) updated by j0kky
It could be useful if the syntax: […] was accepted by Au3Check and correctly parsed by AutoIt3. In fact, it will be useless for simple arrays, but it will be fundamental for array in array. By now, the syntax […] is accepted only for reading values and this code returns the same error too: […]

Nov 20, 2016:

9:39 PM Ticket #3515 (Assigning directly a value to an element of an array in array) updated by Jos
That error comes from au3check, not autoit3. Don't think this format is supported anyways and doesn't work when ran without au3check. Jos
8:16 PM Ticket #3516 (Specify types of parameters of _Crypt_EncryptData) created by Sponge Jhan
The input $vData and $vKey of _Crypt_EncryptData must be bytes rather …
10:20 AM Ticket #3515 (Assigning directly a value to an element of an array in array) created by j0kky
If you want to assign a value to an element of an array contained in …

Nov 10, 2016:

8:43 PM Ticket #3497 (Aut2Exe fails when run from SciTE) closed by Jos
No Bug
8:42 PM Ticket #3497 (Aut2Exe fails when run from SciTE) updated by Jos
This is very likely an AV program locking the temp file while the compiler is trying to add the file to the PE header. Try adding the temp folder C:\Users\Me\Appdata\Local\AutoIt v3\Aut2Exe\ to the whitelist of your AV program. Please come to the forum in case the issue continues as that is the place to solve issues like this. Closin the report as nobug. Jos

Nov 7, 2016:

2:27 PM Ticket #2994 (Can't run _Excel_RangeFind example in 3.3.13.19) updated by anonymous
This one is working - https://www.autoitscript.com/forum/topic/182286-_excel_rangefind/?do=findComment&comment=1309096
2:20 PM Ticket #3112 (Function _Excel_RangeFind not working) updated by anonymous
14 months for now, and still version v3.3.14.2, and I have this error.

Nov 5, 2016:

7:00 PM Ticket #3514 (Add a treeview UDF calling $TVGN_LASTVISIBLE) updated by TicketCleanup
Version changed
Automatic ticket cleanup.
6:15 PM Ticket #3514 (Add a treeview UDF calling $TVGN_LASTVISIBLE) created by Crazy
According to MSDN, there is a macro using TVGN_LASTVISIBLE: …

Oct 29, 2016:

2:33 PM Ticket #3513 (Crash on _Timer_KillAllTimers 3.3.14.2 x64) closed by J-Paul Mesnage
Completed: Added by revision [11816] in version: 3.3.15.1
8:15 AM Ticket #3513 (Crash on _Timer_KillAllTimers 3.3.14.2 x64) updated by J-Paul Mesnage
True it "works" under 32-Bit but I am not sure it will work for ever. I will update the doc to warn that the Kill timer functions must not be executed under the setTimer defined function.
12:46 AM Ticket #3513 (Crash on _Timer_KillAllTimers 3.3.14.2 x64) updated by iAmNewbe
I get now what you are saying, _Timer_KillTimer and _Timer_KillAllTimers must be in the same scope and if need to kill a timer from a different scope such as a function to use a Toggle. That works but what I am saying is that the code I have been working with and tinkering with in that thread in the forum does work in 64 bit when Scite Full Version is NOT installed, something to look at there. Thank you for looking into this.
12:04 AM Ticket #3513 (Crash on _Timer_KillAllTimers 3.3.14.2 x64) updated by iAmNewbe
This code works in 64 Bit when the Full Version of Scite is not installed. The point of the timer is to run a function until a specific Switch Case is performed then turn off so the function is not called anymore. […]
Note: See TracTimeline for information about the timeline view.