Jump to content

Leaderboard

Popular Content

Showing content with the highest reputation on 09/13/2011 in all areas

  1. Mobius

    AutoCamo - 98.18b

    Last updated 9/10/21 * Image may not represent current product Features Simple Integrated countermeasures against file and memory analysis based decompilers. Add basic types of resources into the interpreter or other types as raw data. Define multiple programs to execute pre and post build. Create and include pe version information. User defined patches that can be implemented globally on the interpreter and compiler or selectively. Handles its own basic macro's as well as environment variables in most fields for easier path finding. Drag and drop configs (script bound or separate) to the input edit box or to the icon to load them. Configuration settings can be copied to the clipboard or saved as config files or Au3 scripts. Settings can now be saved directly to an AutoIt3 script. Subsystem independant, can act as a gui or console tool. And much more. See next post for update information. A3C_97.16b.7z A3C_98_18_b.zip
    1 point
  2. UEZ

    run with parameters

    Have a look to the $cmdline variable in the help file. Br, UEZ
    1 point
  3. Then learn. The code I posted is from an operational program that I use at least once a week. It works exactly as advertised and does exactly what you're asking for. We're not here to write the bot* you want for you. We're not here to spoon feed you code. You can take what I posted apart line by line and learn what's going on, how the programming logic works, and cross reference it with the help file, or you can sit there and twiddle your thumbs and go nowhere. *Because that's what 99% of the pixelsearch questions boil down to. Game automation.
    1 point
  4. Give the current Tidy in the Beta downloads a spin and see if that does what it should do for you. These Keywords are now supported: included an update for autoit3wrapper.keywords.properties and au3.autoit3wrapper.api, but are not needed for Tidy to work. I Obviously not had much time to do any testing so make sure you keep a good copy of your code when testing this version. @Melba_23, This is what siesta's are good for... of to get some nice Gelato
    1 point
  5. You could manually do a save session, then load session after running Tidy. This will save the folds and/or bookmarks and reload them, as well as reload the file. EDIT: You could also write a Tool for yourself that automatically saves the session, then runs Tidy, then loads the session. I have no experience with using Lua so I can't be of much help there.
    1 point
  6. Melba23

    No checkbox text color

    ineedh3lp, You need to remove the theme from the control before you can colour it: #include <GUIConstantsEx.au3> Opt('MustDeclareVars', 1) Example() Func Example() Local $msg GUICreate("My GUI color text") ; will create a dialog box that when displayed is centered Local $hCheckbox = GUICtrlCreateCheckbox ("my Red checkbox text", 10, 20) DllCall("UxTheme.dll", "int", "SetWindowTheme", "hwnd", GUICtrlGetHandle($hCheckbox), "wstr", 0, "wstr", 0) GUICtrlSetColor(-1, 0xff0000) ; Red GUISetState() ; Run the GUI until the dialog is closed While 1 $msg = GUIGetMsg() If $msg = $GUI_EVENT_CLOSE Then ExitLoop WEnd EndFunc ;==>Example All clear? M23
    1 point
  7. this should work $start = timerinit() Do PixelSearch(blah blah blah) $diff = timerdiff ($start) Until Pixelsearch(blah blah blah) NOT @error OR $diff > 10000 ;(10 seconds or 10,000 miliseconds, change this number for delay. sebs
    1 point
  8. I have tested this with four old apps with a Delphi TListBox class control (Reshacker etc.), however, YMMV... Check that the TITLE and CLASS text are correct, or preferably, copy the window/control text from the au3info tool to the clipboard by double clicking the title/class/advanced mode text. Run this with the Report Access Definitions window open. You'll need to be running SciTE for the consolewrites. Good Luck #Include <GuiListBox.au3> Global $sWin = "[TITLE:Report Access Definitions; CLASS:TfrmRad]" Global $sCtrl = "[CLASS:TListBox; INSTANCE:1]" Global $sTxtBuf, $sTxt Global $hParent = WinGetHandle($sWin) ConsoleWrite('+$hParent = ' & $hParent & @CRLF) If IsHWnd($hParent) = 0 Then Exit MsgBox(4096, "TfrmRad", "Error: Window handle not returned") Global $hTListBox = ControlGetHandle($hParent, "", $sCtrl) ConsoleWrite('+$hTListBox = ' & $hTListBox & @CRLF) If IsHWnd($hParent) = 0 Then Exit MsgBox(4096, "TListBox", "Error: Control handle not returned") For $i = 0 To _GUICtrlListBox_GetCount($hTListBox) -1 $sTxt = "Index[" & $i & "] Text: " & _GUICtrlListBox_GetText($hTListBox, $i) $sTxtBuf &= $sTxt & @CRLF ConsoleWrite('-' & $sTxt & @CRLF) Next MsgBox(4096, "Report Access Definitions", $sTxtBuf)
    1 point
  9. Mobius

    AutoCamo - 98.18b

    98.18b Represents the last time we touched this product before doing other things. Although recently compiled and tested on windows 10 from a repaired archive it's still bloody old, and the same issues still follow with its use. It is what it is, an old and unfinished glance at older builds of Autoit and the topic this program covers.
    1 point
×
×
  • Create New...