Jump to content

Autolaser

Active Members
  • Posts

    26
  • Joined

  • Last visited

About Autolaser

  • Birthday 03/02/1975

Profile Information

  • Location
    Germanny

Recent Profile Visitors

225 profile views

Autolaser's Achievements

  1. @f22raptor search in forum for AFX or test this https://www.autoitscript.com/forum/topic/153520-iuiautomation-ms-framework-automate-chrome-ff-ie/ Example 10 Automating mach 3 (AFX windows and other hard to get recognized by AutoIT) https://www.autoitscript.com/forum/topic/153520-iuiautomation-ms-framework-automate-chrome-ff-ie/?page=3#comment-1126899
  2. WindowsForms10.window.8.app is not a Winwows-Standardcontrol ! Please search the forum for "ControlClick WindowsForms" and you will find a few threads on this subject. change Name to Advanced Mode Test this $hWnd = "Camfrog Pro" If WinExists($hWnd) Then WinActivate($hWnd) WinWaitActive($hWnd) ControlClick($hWnd, "", "[NAME:toolStrip1]","Left",1)
  3. Please press again F7 in SciTE and post here the Log of the SciTE-Console.
  4. use Opt("GUIOnEventMode", 1) and AdlibRegister Opt("GUIOnEventMode", 1) HotKeySet("{ESC}", "_Exit") AdlibRegister("myfunc", 120000) Func myfunc() ConsoleWrite("myfunc ist running"&@CR) EndFunc Func _Exit() Exit EndFunc ;==>_Exit While 1 Sleep(50) WEnd
  5. _ScreenCapture_CaptureWnd #include <ScreenCapture.au3> Example() Func Example() Local $hGUI ; Create GUI $hGUI = GUICreate("Screen Capture", 400, 300) GUISetState(@SW_SHOW) Sleep(250) ; Capture window _ScreenCapture_CaptureWnd(@MyDocumentsDir & "\GDIPlus_Image.jpg", $hGUI) ShellExecute(@MyDocumentsDir & "\GDIPlus_Image.jpg") EndFunc ;==>Example
  6. You must take MouseClick not ControlClick MouseClick ( "button" [, x, y [, clicks = 1 [, speed = 10]]] ) coords in ControlClick is for position within the control.
  7. $hCoverLabel = GUICtrlCreateLabel('', $aRect1[2] + 10, 10, ($aRect2[0] + $aRect2[2]) - $aRect1[2], $aRect2[1]) GUICtrlSetBkColor(-1, '0x00ff0000') GUICtrlSetResizing($hCoverLabel,$GUI_DOCKALL)
  8. @BuckMaster Ich habe mal die deutsche Sprachdatei etwas angepasst. I have something to improve the German language file. I can not Upload Attachments See in Qoute
  9. @BuckMaster, here is a Bug on Settings / Options The script save permanently AutoUpdateVars=False CheckUpdate=True if edit manual to AutoUpdateVars=True CheckUpdate=False and start GUI Builder and go to Settings / Option is only "Auto Update Variables" checked not "Check for Updates on Startup" then no change settings and only save after restart "Check for Updates on Startup" is checked and "Auto Update Variables" not checked AutoUpdateVars=False CheckUpdate=True
  10. @BuckMaster, thanks for the new GUI designer some other names for you Quick & Easy GUI GUI Surfacer GUI Styler GUI Stylist Easy GUI Builder Easy GUI Producer Easy GUI Director Easy GUI Styler Express GUI Builder Express GUI Producer Express GUI Director Express GUI Styler
  11. hmmm, copy & paste error or magic?
  12. Yes this is possible I found this post from user "eukalyptus" in german autoit forum. I hope this help you. http://www.autoit.de/index.php?page=Thread&postID=60950#post60950 This code starts notepad.exe into a autoit gui as a child window. #include <WindowsConstants.au3> Opt("TrayIconDebug",1) $hGui = GUICreate("Test GUI", 320, 240) GUISetState(@SW_HIDE, $hGui) $hPid=Run(@SystemDir & 'notepad.exe',"", @SW_HIDE) WinWait("[CLASS:Notepad]", "", 5) $hChild = WinGetHandle("[CLASS:Notepad]", "") $NEXSTYLE = DllCall("user32.dll", "int", "GetWindowLong", "hwnd", $hChild, "int", 236) DllCall("user32.dll", "int", "SetWindowLong", "hwnd", $hChild, "int", 236, "int", BitOR($NEXSTYLE[0], $WS_EX_MDICHILD)) DllCall("user32.dll", "int", "SetParent", "hwnd", $hChild, "hwnd", $hGui) WinMove($hChild, "", 0, 0,320,240) GUISetState(@SW_SHOW, $hGui) WinSetState($hChild,"",@SW_SHOW) While GUIGetMsg()<>-3 Sleep(1) WEnd Func OnAutoItExit() ProcessClose($hPid) EndFunc
  13. Please show the complete code + exact error message.
  14. yes, the link in the "download link.html" to http://www.filedropper.com/autoittaskmanager is broken please update the link
  15. New Version ? 0.45.1 ? No info for changes and no linked on website? I changed the number in url and downloaded v0.45.1 In "About Autoit Debugger" I see Version 0.45.1.0 AutoIt_Debugger_Setup_v0.45.0.exe Size 2,19 MB AutoIt_Debugger_Setup_v0.45.1.exe Version 0.45.1 Size 4,98 MB http://www.thefoolonthehill.net/drupal/sites/default/files/WebFM/admin/files/AutoIt_Debugger/AutoIt_Debugger_Setup_v0.45.1.exe
×
×
  • Create New...