
UPSman2
Active Members-
Posts
48 -
Joined
-
Last visited
Everything posted by UPSman2
-
and the dll is full of functions
-
ok 1 last thing, maybe you could make it so the user can put in a custom interval on the graph, like by 3's, 4's, etc... or maybe even by "π" (pi's)
-
maybe another thing you might be able to do is make the asymptotes another color, like blue or something (if possible) Edit: about second tooltip, probably my bad w/ the "4x" as apposed to "4*x"
-
nice job suggestion: maybe make it so you can zoom in/out on the graph or crop zoom certain areas its buggy a bit EX: function: f(x)=4x graph produced: Another Bug (tooltip, the asymptote)
-
Embed DLLs in script and call functions from memory (MemoryDll UDF)
UPSman2 replied to Ward's topic in AutoIt Example Scripts
because i dont know how to -
Embed DLLs in script and call functions from memory (MemoryDll UDF)
UPSman2 replied to Ward's topic in AutoIt Example Scripts
if anyones interested heres a program i found that does that HexConverter.rar -
i really didn't know what to call this... its kinda pointless and very easy to make but i like it instructions: just click on the green area (at different places) and then press run CODE#include <GUIConstantsEx.au3> #include <StaticConstants.au3> #include <WindowsConstants.au3> #Include <GuiListView.au3> $Form1 = GUICreate("point it", 620, 235, 193, 125) $ListView1 = GUICtrlCreateListView("Point #|X|Y", 462, 0, 157, 204) GUICtrlSendMsg(-1, 0x101E, 0, 50) GUICtrlSendMsg(-1, 0x101E, 1, 40) GUICtrlSendMsg(-1, 0x101E, 2, 40) $Graphic1 = GUICtrlCreateGraphic(0, 0, 409, 232) GUICtrlSetBkColor(-1, 0xC0DCC0) $Button1 = GUICtrlCreateButton("Run", 549, 207, 63, 22, 0) Opt("MouseCoordMode",2) $lastx = 15 $lasty = 15 $count = 1 GUISetState(@SW_SHOW) While 1 $nMsg = GUIGetMsg() Switch $nMsg Case $GUI_EVENT_CLOSE Exit Case $GUI_EVENT_PRIMARYDOWN $a = MouseGetPos() If $a[0] < 409 And $a[1] < 232 Then GUICtrlSetGraphic ( $Graphic1, $GUI_GR_MOVE, $lastx, $lasty) GUICtrlSetGraphic ( $Graphic1, $GUI_GR_LINE, $a[0], $a[1]) GUICtrlSetGraphic ( $Graphic1, $GUI_GR_DOT, $a[0], $a[1]) GUICtrlSetGraphic ( $Graphic1, $GUI_GR_REFRESH) GUICtrlCreateListViewItem($count&"|"&$a[0]&"|"&$a[1], $ListView1) $count+=1 $lastx = $a[0] $lasty = $a[1] EndIf Case $Button1 $n = 0 MouseMove(15,15) While 1 $x = _GUICtrlListView_GetItem($ListView1, $n, 1) $y = _GUICtrlListView_GetItem($ListView1, $n, 2) If $x[3] = "" And $y[3] = "" Then ExitLoop EndIf MouseMove($x[3],$y[3]) $n +=1 WEnd EndSwitch WEnd
-
i don't know any solution but i'm not that great at math nor autoit... so there might be an answer but i don't know it
-
MsgBox(0,"",97^255) returns infinity too, only because its a huge number (its equalivanlt to "0x61"^"0xFF") so its probably not your math or way of conversion that is messing up it's just that autoit doesn't support such large numbers
-
thanks for the help, i just created them earlier and hide them for later use, but thanks none the less
-
Combine $WS_EX_LAYERED with $WS_EX_TOOLWINDOW
UPSman2 replied to AustrianOak's topic in AutoIt General Help and Support
BitOR($WS_EX_TOOLWINDOW,$WS_EX_LAYERED) at least i think so -
is it possible to add new controls to a tabsheet once it's already been created? if so how?
-
Age of Conan - Keystroke to Inactive Window
UPSman2 replied to KaJe's topic in AutoIt General Help and Support
well imo it looks like AOC has some protection against this, you might be able to spoof the window being maximized while its minimized through memory writing... but thats a whole other subject -
Age of Conan - Keystroke to Inactive Window
UPSman2 replied to KaJe's topic in AutoIt General Help and Support
well heres another odd question... does controlclick() work? -
oddly enough... thats interesting to me... lol
-
Age of Conan - Keystroke to Inactive Window
UPSman2 replied to KaJe's topic in AutoIt General Help and Support
it might be that age of conan blocks simulated key strokes, but i can't be sure of it unless i own the game -
winlist() wingethandle() look up those two functions
-
Basically it generates BB code that makes texts like this: lkshalkdhaslkh34324lkjnbdsfdhsflkweh wjlekjwe or any other color combo you make it Instructions: you just change the color of the "from" and "to" group to what you want it to be, then you either sim (simulate) it or you can input text into the 1st edit box and generate the bb code which then apears in the 2nd edit BB_color_code_.au3
-
well... personally i think it might be possible to make this relatively fast if you focus down to dll calls and math, so my personal goal would be to make it in autoit anyways ;p Edit: Added files to orginal post
-
i don't think theres any need for paying anyone, but from what it looks like maybe you could look up PixelGetColor() function, or if this software is free to download or has a demo (link plz) it would better help us get an idea how or what is needed to press the next hand button
-
Well as the topic says its unfinished and it seems i never finish any project... its for reference for anyone who's going to trying to try make a fully functional/faster one what is it? -basically its a memory searcher -the only problem is that search speed isn't great with method used with V1, and the method in V2 crashes at Stringsplit how? -V1: basically does a virtquery of selected process and reads the section into a single Byte[xxx] return, then uses stringinstr() to search within it. -V2: same as V1 but instead of stringinstr() it uses stringsplit() method...which causes an error i personally would like to further the development of this project but unfortunately search speed is slow on V1 so there is no point unless i can get a faster method like V2... well this code is messy... feel free to ask questions if you have any V1 and V2 attached below V1.au3 V2.au3
-
Help with Send command
UPSman2 replied to Rydextillxixdiex's topic in AutoIt General Help and Support
Send("{UP down}") Send("{Right down}") Send("{Left down}") Sleep(10000) Send("{UP up}") Send("{Right Up}") Send("{Left Up}") does that work? -
how would you close (or temporarily disconnect) a specified port with autoit?
-
kinda on topic but maybe not... (its the code i was implementing this topic into) but why does this crash autoit (i've narrowed it down to the stringinstr function is where it's crashing) have windows calculator open when you run this... #include <NomadMemory.au3> #Include <Array.au3> dim $ValidMemory[500][2] $ProcessHandle = _MemoryOpen(ProcessExists("calc.exe")) VirtualQuery() SearchData("01000000") Func SearchData($Data) ;i think needs more work $n = 0 Do $n = $n + 1 $Memory_Read = _MemoryRead($ValidMemory[6][0], $ProcessHandle, 'byte['&$ValidMemory[6][1]&']') ;reads bytes $StringSplit3 = StringSplit($Memory_Read, "1", 1) ControlSetText ( "yo.txt - Notepad", "", "Edit1", $Memory_Read) ;~ String_FindAll($Memory_Read,$Data) Until $n = $ValidMemory[0][0] EndFunc Func VirtualQuery() ;functional but rewriteable Local $StartMemory = 0 ;Dec(0x00000000) Local $EndMemory = 4294967295 ;Dec(0xFFFFFFFF) Local $Address, $LastAddress, $n = 0, $BaseAddress, $RegionSize, $State Local $Buffer = DllStructCreate('dword;dword;dword;dword;dword;dword;dword') While 1 DllCall($ProcessHandle[0], 'int', 'VirtualQueryEx', 'int', $ProcessHandle[1], 'int', $Address, 'ptr', DllStructGetPtr($Buffer), 'int', DllStructGetSize($Buffer)) $BaseAddress = '0x' & Hex(DllStructGetData($Buffer, 1)); + 0) $RegionSize = DllStructGetData($Buffer, 4) $AllocProtect = Hex(DllStructGetData($Buffer, 3)) $LastAddress = $Address $Address = '0x' & Hex($BaseAddress + $RegionSize) If $AllocProtect = 0x04 Then ; if isn't protected $n = $n + 1 $ValidMemory[$n][0] = $BaseAddress ;address $ValidMemory[$n][1] = $RegionSize; distance of good $ValidMemory[0][0] = $n EndIf If $BaseAddress < 0 Then $BaseAddress = 2147483648 + ($BaseAddress) + 2147483648 EndIf If ($BaseAddress + $RegionSize) >= $EndMemory Then ExitLoop EndIf If $Address = $LastAddress Then ExitLoop EndIf WEnd EndFunc Func String_FindAll($String,$SearchString) $StringLen1 = StringLen($SearchString) $StringSplit = StringSplit($String, $SearchString, 1) $StringSplit[0] = $StringSplit[0] -1 ;converting to # found $StringSplit[1] = StringLen($StringSplit[1]) + 1 If $StringSplit[0] <> 1 Then If $StringSplit[0] >= 2 Then $StringSplit[2] = $StringSplit[1] + (StringLen($StringSplit[2])+ $StringLen1) If $StringSplit[0] >= 3 Then For $trig = 3 to $StringSplit[0] Step 1 $StringSplit[$trig] = $StringSplit[$trig-1] + (StringLen($StringSplit[$trig])+ $StringLen1) Next EndIf EndIf EndIf Return $StringSplit EndFuncoÝ÷ Ú))äx-«b(!¶wvÚ¢{Þ®Ûaz·º¹è~Ø^騯*Þiا¶¬¶¸§²×vÚìZuç"©l¶¸§»·¢}ý¶IèÂÇ¢wm)äx-+"(!¶ç¢Úk¢øy×§¢è!wèm«"q©rÛ²x©¡ö¦zj+ÊÇÈ^®+Þmç§¶¼¢h©¶¬¶¸§)ì¶·îËb¢|(®KºØ¶Çky§_ºYr²Z0¡ùZ®«¦º ©¬êÞ²Ø^²«qê¯yÚ'zíéò±æ«r«²Ú®+ajËazËkx"Ëkëa¡Ö®¶sb6æ6ÇVFRfÇC´uT6öç7FçG4WæS2fwC°¢6æ6ÇVFRfÇCµvæF÷w46öç7FçG2æS2fwC°¢6æ6ÇVFRfÇC´æöÖDÖVÖ÷'æS2fwC°¢4æ6ÇVFRfÇC´wVÆ7EfWræS2fwC° ¢5&VvöâwVf÷&Ó¢b33c´wVôf÷&ÓÒuT7&VFRgV÷C´×"â6V&6gV÷C²Â3#RÂ3sÂ#3rÂC¢b33c´÷Våô'WGFöâÒuT7G&Ä7&VFT'WGFöâgV÷C´÷VâgV÷C²ÂÂÂSÂ#¢b33c´Æ&VÃÒuT7G&Ä7&VFTÆ&VÂgV÷Cµ6V&6fÇVS¢gV÷C²ÂRÂCrÂsÂr¢b33cµ6V&6ôçWBÒuT7G&Ä7&VFTçWBgV÷C²gV÷C²ÂRÂcBÂCRÂ#¢b33c´w&÷WÒuT7G&Ä7&VFTw&÷WgV÷C´FFGRgV÷C²ÂsÂCÂsÂsR¢b33c´FV6ÖÅõ&FòÒuT7G&Ä7&VFU&FògV÷C´FV6ÖÂgV÷C²ÂÂcÂSRÂr¤uT7G&Å6WE7FFRÓÂb33c´uTô4T4´TB¢b33cµFWEõ&FòÒuT7G&Ä7&VFU&FògV÷CµFWBgV÷C²ÂÂ"ÂSRÂr¤uT7G&Ä7&VFTw&÷WgV÷C²gV÷C²ÂÓÂÓ¢b33cµ6V&6ô'WGFöâÒuT7G&Ä7&VFT'WGFöâgV÷Cµ6V&6gV÷C²ÂRÂrÂsRÂ#R¢b33c´6æ6VÅô'WGFöâÒuT7G&Ä7&VFT'WGFöâgV÷C´6æ6VÂgV÷C²ÂRÂrÂsRÂ#R¤uT7G&Å6WE7FFRÓÂb33c´uTôDR¢b33cµ&VfæUô'WGFöâÒuT7G&Ä7&VFT'WGFöâgV÷Cµ&VfæRgV÷C²ÂÂrÂsRÂ#R¤uT7G&Å6WE7FFRÓÂb33c´uTôDR¢b33cµ&öw&W74&"ÒuT7G&Ä7&VFU&öw&W72sRÂ2Â#2Âr¢b33cµ6V&6ôÆ&VÂÒuT7G&Ä7&VFTÆ&VÂgV÷C´æ÷BGF6VBgV÷C²ÂCrÂ#ÂcrÂr¢b33cµ&WGW&åôÆ7EfWrÒuT7G&Ä7&VFTÆ7EfWrgV÷C´FG&W77ÅfÇVRgV÷C²ÂÂSÂ#CÂ#B¤uT7G&Å6VæD×6rÓÂR¤uT7G&Å6VæD×6rÓÂR¢b33cµ&Vg&W6ô'WGFöâÒuT7G&Ä7&VFT'WGFöâgV÷Cµ&Vg&W6gV÷C²Â#SRÂc"ÂSBÂ#R¢b33c´ÖöFgô'WGFöâÒuT7G&Ä7&VFT'WGFöâgV÷C´ÖöFggV÷C²Â#SRÂRÂSrÂ#R¤uT6WE7FFR5uõ4õrÂb33c´wVôf÷&Ó¢4VæE&Vvöà ¢5&Vvöâf&&ÆRFV0¤vÆö&Âb33cµ&ö6W74æFÆRÂb33c¶FG&W75³ÒÂb33cµfÆDÖVÖ÷'³SÕ³%Т4VæE&Vvöà ¥vÆR¢b33c´×6sÒuTvWD×6r 7vF6b33c´×6s 66Rb33c´uTôUdTåEô4Äõ4P W@ 66Rb33c´÷Våô'WGFöà ÷Vå&ö6W72 66Rb33cµ6V&6ô'WGFöà bb33cµ&ö6W74æFÆRÒFVà ×6t&÷cBÂgV÷C´W'&÷"gV÷C²ÂgV÷Cµ6VÆV7B&ö6W72Fò6V&6â&Vf÷&R6V&6ærâgV÷C² VÇ6P ôuT7G&ÄÆ7EfWuôFVÆWFTÆÄFV×2uT7G&ÄvWDæFÆRb33cµ&WGW&åôÆ7EfWr uT7G&Å6WE7FFRb33cµ6V&6ô'WGFöâÂb33c´uTôDR uT7G&Å6WE7FFRb33cµ&VfæUô'WGFöâÂb33c´uTõ6÷r uT7G&Å6WE7FFRb33c´6æ6VÅô'WGFöâÂb33c´uTõ6÷r uT7G&Å6WDFFb33cµ6V&6ôÆ&VÂÂgV÷Cµ6V&6ærâââgV÷C² f'GVÅVW' b33cµ6V&6õfÇVRÒuT7G&Å&VBb33cµ6V&6ôçWB b33c·2ÒFÖW$æB 6V&6FF6öçfW'EFõ6V&6b33cµ6V&6õfÇVR ×6t&÷ÂgV÷C²gV÷C²ÅFÖW$Ffbb33c·2 uT7G&Å6WDFFb33cµ6V&6ôÆ&VÂÂgV÷C´FöæRgV÷C² VæD` 66Rb33c´6æ6VÅô'WGFöà &W6WDwV VæE7vF6¥tVæ@ ¤gVæ26öçfW'EFõ6V&6b33c´FFô6öçfW'Fær¶FöæP Æö6Âb33c´WõfÇVRÂb33c´WõG&ÓÂb33c´WõG&Ó"Âb33c´WõG&Ó2Âb33c´WõG&Ó@ b33c´FFGUô6V6³ÒuT7G&Å&VBb33c´FV6ÖÅõ&Fò b33c´FFGUô6V6³"ÒuT7G&Å&VBb33cµFWEõ&Fò bb33c´FFGUô6V6³Òb33c´uTô4T4´TBFVà b33c´WõfÇVRÒWb33c´FFô6öçfW'Fær³#3CScs¢b33c´WõG&ÓÒ7G&æuG&Õ&vBb33c´WõfÇVRÂb³ ¢b33c´WõG&Ó"Ò7G&æuG&Õ&vB7G&æuG&ÔÆVgBb33c´WõfÇVRÃ"ÃB³3@¢b33c´WõG&Ó2Ò7G&æuG&Õ&vB7G&æuG&ÔÆVgBb33c´WõfÇVRÃBÃ"³S` b33c´WõG&ÓBÒ7G&æuG&ÔÆVgBb33c´WõfÇVRÃb³s &WGW&âb33c´WõG&ÓBfײb33c´WõG&Ó2fײb33c´WõG&Ó"fײb33c´WõG&Ó³sSc3C VÇ6Tbb33c´FFGUô6V6³"Òb33c´uTô4T4´TBFVà &WGW&âW7G&æuFô&æ'b33c´FFô6öçfW'Fær VæD`¤VæDgVæ0 ¤gVæ2÷Vå&ö6W72¶FöæP uT6WE7FFR5uôD4$ÄRÂb33c´wVôf÷&Ó b33c´wVôf÷&Ó"ÒuT7&VFRgV÷Cµ6VÆV7B&ö6W72gV÷C²ÂRÂ#bÂ#Â#rÂ&Dõ"b33cµu5õ54ÔTåRÂb33cµu5ô4DôâÂb33cµu5õõUÂb33cµu5õõUtäDõrÂb33cµu5ô$õ$DU"Âb33cµu5ô4Ä4$Ääu2 b33c´wV%ôÆ7BÒuT7G&Ä7&VFTÆ7BgV÷C²gV÷C²ÂÂÂÂsR b33c´wV%ô÷Våô'WGFöâÒuT7G&Ä7&VFT'WGFöâgV÷C´÷VâgV÷C²ÂSÂÂsRÂ# uT6WE7FFR5uõ4õr ¢b33c´wV%õ&ö6W74Æ7BÒ&ö6W74Æ7B¢b33c´wV%õ7G&æuõ&ö6W74Æ7BÒb33c´wV%õ&ö6W74Æ7E³Õ³Ð¢f÷"b33cµG&vvW"Ò"Fòb33c´wV%õ&ö6W74Æ7E³Õ³Ð¢b33c´wV%õ7G&æuõ&ö6W74Æ7BÒb33c´wV%õ7G&æuõ&ö6W74Æ7Bfײb33·Âb33²fײb33c´wV%õ&ö6W74Æ7E²b33cµG&vvW%ճТæW@ ¢wV7G&Å6WDFFb33c´wV%ôÆ7BÂb33c´wV%õ7G&æuõ&ö6W74Æ7B vÆR b33c´×6s"ÒuTvWD×6r 7vF6b33c´×6s 66Rb33c´uTôUdTåEô4Äõ4R uTFVÆWFRb33c´wVôf÷&Ó" uT6WE7FFR5uôTä$ÄRÂb33c´wVôf÷&Ó vä7FfFRb33c´wVôf÷&Ó WDÆö÷ 66Rb33c´wV%ô÷Våô'WGFöâ b33cµ6VÆV7FVEõ&ö6W72ÒuT7G&Å&VBb33c´wV%ôÆ7B b33cµ&ö6W74æFÆRÒôÖVÖ÷'÷Vâ&ö6W74W7G2b33cµ6VÆV7FVEõ&ö6W72 vå6WEFFÆRb33c´wVôf÷&ÓÂgV÷C²gV÷C²ÂgV÷C´×"â6V&6gV÷C²fײb33cµ6VÆV7FVEõ&ö6W72fײgV÷C²gV÷C² uT7G&Å6WDFFb33cµ6V&6ôÆ&VÂÂgV÷C´GF6VBgV÷C² uTFVÆWFRb33c´wVôf÷&Ó" uT6WE7FFR5uôTä$ÄRÂb33c´wVôf÷&Ó vä7FfFRb33c´wVôf÷&Ó WDÆö÷ VæE7vF6 tVæ@¤VæDgVæ0 ¤gVæ2&W6WDwV¶FöæP uT7G&Å6WE7FFRb33cµ6V&6ô'WGFöâÂb33c´uTõ6÷r uT7G&Å6WE7FFRb33cµ&VfæUô'WGFöâÂb33c´uTôDR uT7G&Å6WE7FFRb33c´6æ6VÅô'WGFöâÂb33c´uTôDR uT7G&Å6WDFFb33cµ6V&6ôÆ&VÂÂgV÷C´GF6VBgV÷C² uT7G&Å6WDFFb33cµ&öw&W74&" ôuT7G&ÄÆ7EfWuôFVÆWFTÆÄFV×2uT7G&ÄvWDæFÆRb33cµ&WGW&åôÆ7EfWr¤VæDgVæ0 ¤gVæ26V&6FFb33c´FF¶Fæ²æVVG2Ö÷&Rv÷&° b33c¶âÒ b33c¶ã"Ò ôuT7G&ÄÆ7EfWuô&VvåWFFRb33cµ&WGW&åôÆ7EfWr Fð b33c¶âÒb33c¶â² b33c´ÖVÖ÷'õ&VBÒôÖVÖ÷'&VBb33cµfÆDÖVÖ÷'²b33c¶åÕ³ÒÂb33cµ&ö6W74æFÆRÂb33¶'FU²b33²fײb33cµfÆDÖVÖ÷'²b33c¶åÕ³Òfײb33µÒb33²·&VG2'FW2 b33cµ7G&æuôÆVæwFÒ7G&ætÆVâgV÷C¶gV÷C² b33c¶Ò b33c·Ò vÆR b33c·6V&6Ò7G&ætå7G"b33c´ÖVÖ÷'õ&VBÂb33c´FFÂÂÂb33c¶ bb33c·6V&6fÇC²fwC²FVà b33c·Òb33c·² b33c¶FG&W75³ÒÒb33c·²6f÷Væ@ b33c¶FG&W75²b33c·ÒÒWb33cµfÆDÖVÖ÷'²b33c¶åÕ³Ò²b33c·6V&6Òó"Ó·7F÷&W2f÷VæBFG&W70 b33c¶Òb33c·6V&6²b33cµ7G&æuôÆVæwF²æWr7F'B÷67Föà uT7G&Ä7&VFTÆ7EfWtFVÒb33c¶FG&W75²b33c·ÒfײgV÷C·ÂgV÷C²fײb33cµ6V&6õfÇVRÂb33cµ&WGW&åôÆ7EfWr VÇ6P WDÆö÷ VæD` tVæ@ b33cµ&öw&W72Òb33cµfÆDÖVÖ÷'²b33c¶åÕ³ÒòC#Ccs#R¢# uT7G&Å6WDFFb33cµ&öw&W74&"Âb33cµ&öw&W72 VçFÂb33c¶âÒb33cµfÆDÖVÖ÷'³Õ³Ð ôuT7G&ÄÆ7EfWuôVæEWFFRb33cµ&WGW&åôÆ7EfWr¤VæDgVæ0 ¤gVæ2f'GVÅVW'¶gVæ7FöæÂ'WB&Ww&FV&ÆP Æö6Âb33cµ7F'DÖVÖ÷'Ò´FV2 Æö6Âb33c´VæDÖVÖ÷'ÒC#Ccs#R´FV2dddddddb Æö6Âb33c´FG&W72Âb33c´Æ7DFG&W72Âb33c¶âÒÂb33c´&6TFG&W72Âb33cµ&Vvöå6¦RÂb33cµ7FFP Æö6Âb33c´'VffW"ÒFÆÅ7G'V7D7&VFRb33¶Gv÷&C¶Gv÷&C¶Gv÷&C¶Gv÷&C¶Gv÷&C¶Gv÷&C¶Gv÷&Bb33² vÆR FÆÄ6ÆÂb33cµ&ö6W74æFÆU³ÒÂb33¶çBb33²Âb33µf'GVÅVW'Wb33²Âb33¶çBb33²Âb33cµ&ö6W74æFÆU³ÒÂb33¶çBb33²Âb33c´FG&W72Âb33·G"b33²ÂFÆÅ7G'V7DvWEG"b33c´'VffW"Âb33¶çBb33²ÂFÆÅ7G'V7DvWE6¦Rb33c´'VffW" b33c´&6TFG&W72Òb33³b33²fײWFÆÅ7G'V7DvWDFFb33c´'VffW"²² b33cµ&Vvöå6¦RÒFÆÅ7G'V7DvWDFFb33c´'VffW"ÂB b33cµ&÷FV7BÒWFÆÅ7G'V7DvWDFFb33c´'VffW"Âb b33c´Æ7DFG&W72Òb33c´FG&W70 b33c´FG&W72Òb33³b33²fײWb33c´&6TFG&W72²b33cµ&Vvöå6¦R bb33cµ&÷FV7BÒBFVâ²b6âb33·B&÷FV7FV@ b33c¶âÒb33c¶â² b33cµfÆDÖVÖ÷'²b33c¶åÕ³ÒÒb33c´&6TFG&W72¶FG&W70 b33cµfÆDÖVÖ÷'²b33c¶åÕ³ÒÒb33cµ&Vvöå6¦S²F7Fæ6Röbvöö@ b33cµfÆDÖVÖ÷'³Õ³ÒÒb33c¶à VæD` bb33c´&6TFG&W72fÇC²FVà b33c´&6TFG&W72Ò#CsC3cC²b33c´&6TFG&W72²#CsC3cC VæD` bb33c´&6TFG&W72²b33cµ&Vvöå6¦RfwC³Òb33c´VæDÖVÖ÷'FVà WDÆö÷ VæD` bb33c´FG&W72Òb33c´Æ7DFG&W72FVà WDÆö÷ VæD` tVæ@¤VæDgVæ
-
Check all check boxes in an application window?
UPSman2 replied to MuffinMan's topic in AutoIt General Help and Support
could you mouse over the check boxes with "autov3 window info" tool and look under the control tab and tell me what it says