
system24
Active Members-
Posts
551 -
Joined
-
Last visited
Everything posted by system24
-
Certain programs/games essentially nullify AutoIt
system24 replied to Khiash's topic in AutoIt General Help and Support
Which Touhou game? I once used my ScreenCapture app to take some screenshots of the game at full screen mode, but for some reason it can't. -
Recognize softwares which installed on PC
system24 replied to sarita's topic in AutoIt General Help and Support
http://www.autoitscript.com/forum/index.php?showtopic=81467 -
Bug in advanced title matching(using instance) ?
system24 replied to FreeFry's topic in AutoIt General Help and Support
Nothing that I can think of. The order of INSTANCE is controlled by the order the windows are activated. Sorry if I don't have to reiterate the obvious. -
Bug in advanced title matching(using instance) ?
system24 replied to FreeFry's topic in AutoIt General Help and Support
Does "[LAST]" mean the last active window? -
Use Eval() to read the variables. Eval("$x = $" & $name);Example TBH this is not quite a good idea, but I can't find a better alternative except using arrays. Like this. Global $troopstot=2 Global $troop[$troopstot][4] $troop[0][0] = GUICtrlCreateLabel("troop_1",10,10);Creates the first group of troop's data $troop[0][1] = GUICtrlCreateInput("troop_1_2",10,10) $troop[0][2] = GUICtrlCreateInput("troop_1_3",10,10) $troop[0][3] = GUICtrlCreateInput("troop_1_4",10,10) $troop[1][0] = GUICtrlCreateLabel("troop_2",20,10);Creates the 2nd group of troop's data $troop[1][1] = GUICtrlCreateInput("troop_2_2",20,10) $troop[1][2] = GUICtrlCreateInput("troop_2_3",20,10) $troop[1][3] = GUICtrlCreateInput("troop_2_4",20,10) GUICtrlSetOnEvent($Button, "AddTroop") ;On button pressed event adds a group of troop data to the pre-existing ones (incremental) Func AddTroop() $troopstot += 1 ReDim $troop[$troopstot][4] $troop[$troopstot][0] = GUICtrlCreateLabel("troop_2",20,10) $troop[$troopstot][1] = GUICtrlCreateInput("troop_2_2",20,10) $troop[$troopstot][2] = GUICtrlCreateInput("troop_2_3",20,10) $troop[$troopstot][3] = GUICtrlCreateInput("troop_2_4",20,10) EndFunc
-
Help me improve that script..
system24 replied to StatQuo's topic in AutoIt General Help and Support
Try to put Sleep(100) after EndSelect and see what happens. -
Problems with _DateAdd and _DateSplit
system24 replied to GrahamT's topic in AutoIt General Help and Support
Dim $Date Dim $Time _DateTimeSplit($NewTime, $Date, $Time) $TimeStr = StringFormat("%02i:%02i", $Time[1], $Time[2]) -
Need Decent Explantion On @Comspec
system24 replied to FinalVersion's topic in AutoIt General Help and Support
Hmm... this is so wrong. Maybe this. AutoIt syntax for what? -
Loop to close confirmation boxes does not work
system24 replied to Mucho's topic in AutoIt General Help and Support
While 1 $hWin = WinGetHandle("MetaStock", "Save changes to Layo") If @error = 1 Then ExitLoop Else WinActivate($hWin) Send("!n") EndIf WEnd -
[RESOLVED] stringinstr, what am i doing wrong?
system24 replied to gcue's topic in AutoIt General Help and Support
Try If $firm_check = 0 Then... @error only returns 1 if either the first or second parameter is invalid. -
Yeah, confusing at best.
-
So, both char *str and char str[25] are pointer-based strings?
-
So you can't use pointer-based strings for input. Everytime I do that this happens...
-
StringRegExp('newdid=104010">City Of Birth<', 'newdid=(\d+)">|(.+)<', 3) Note that I replaced "\w" with ".". "\w" doesn't work as expected.
-
[solved] probably something easy
system24 replied to snowman533's topic in AutoIt General Help and Support
From the help file: Sets the way coords are used in the mouse functions, either absolute coords or coords relative to the current active window: 0 = relative coords to the active window 1 = absolute screen coordinates (default) 2 = relative coords to the client area of the active window Absolute coordinates are the coordinates where the origin ([0, 0] or [1, 1] I think) is on the upper left corner of the screen. In relative coordinates, the origin is at the upper left corner of the active window [for option 0] or the client area [for option 2]. That's what I know. -
Is there Hot Keys? And few simple questions...
system24 replied to magicboy11's topic in AutoIt General Help and Support
Here and here. -
$regvalue = RegRead("HKLM\Software\WhateverKey", "WhateverValue") If @error <> 0 Then MsgBox(0, "", "Not Found") Else MsgBox(0, "", "Found") EndIf
-
I hope not. Try profiling it using Dependency Walker. It helped me pinpoint what could be the likely culprit to my problem, but still I have no idea how to fix it. MSVCR71.dll is what? Windows is now somewhat suffering from word recession. One of the errors on my computer said 'floating point not loaded'. And why is the sky blue? This explains it.
-
Please help with my excel problem :(
system24 replied to nicky40's topic in AutoIt General Help and Support
#include<Excel.au3> $Pub_Code = "001" $Pub_Abr = "bto" $Pub = $Pub_Code & $Pub_Abr $oExcel = _ExcelBookNew() _ExcelWriteCell($oExcel, "Test1", 1, 1) _ExcelBookSaveAs($oExcel, "H:\Remote\Remot" & $Pub & "\SaveAsExample", "xls") MsgBox(0, "", "SaveAs") _ExcelWriteCell($oExcel, "Test2", 2, 2) _ExcelBookSave($oExcel) MsgBox(0, "", "Save") _ExcelBookClose($oExcel)