Custom Query
Results (79 - 81 of 3882)
Ticket | Resolution | Summary | Owner | Reporter |
---|---|---|---|---|
#830 | No Bug | recode --> ControlSend | azunai@… | |
Description |
hi there, maybe someone else has mentioned this before, but controlsend is a bit buggy, isn't it? after some time, all it does is shit, pressing randomly some keystrokes e.g. ControlSend("Window","","","Hallo!!") writes something like : hALlo!! or HALlo11 also capslock/alt/shift got activated by this command, or the "WIN" key so it does crap activating some hotkeys from another application or so on so i would suggest a recode, or that you maybe take a look at this function greetíngs ;) |
|||
#2086 | No Bug | recieve error in array combination v 3.3.8.0 | benwinnipeg9 | |
Description |
hi, pretty new to the forum but have been using Autoit a while. I download version 3.3.8.0 today and when i ran my script that worked in previous 3.3.6.1 it ran great but gave me Error Allocating Memory in v3.3.8.0. I had also added 8 GB of ram to my laptop today and at first assumed i got bad ram, after doing a mem test with no errors i downgraded to Autoit 3.3.6.1 and no errors any more. I realize this UDF is not used all that much, just wanted you to be aware of it. simple code... #include <Array.au3> Global $aArray[49] = [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49] for $i = 6 To 6 $aArrayCombo = _ArrayCombinations($aArray, $i, ",") Next _ArrayDisplay($aArraycombo, "arraycombo") Thanks to you who maintain and update! Merry Christmas and Hapy New Year, Ben |
|||
#874 | No Bug | reading special keys (like alt, ctl etc) from an ini | Rishav | |
Description |
not sure if its a bug or feature. my ini file contains; [CARRIER ETA] Name=HEEEERE'S JOHHNYYY!! Address=The Overlook Hotel, Colorado the code calling it is ControlSend("App- [Carriers]", "Address", controlId, $InputCarrierDetails[2][1]) When the code is run, it however takes the two "!!" exclamations as alt and does unexpected operations. I think the code should take he characters in an ini file as they are and not use them as special codes. |