Hello orbs,
I make a few progress with Mousemove, Mouseclick and keys like Alt + T and Ctrl + Shift + P and it works, but unfortunatly on the next Dialog have Textbox "Edit" and want write Text on that, but with the "UIASpy.au3" can“t find the ID of the Edit's
#include <MsgBoxConstants.au3>
#include <GUIConstantsEx.au3>
#include <WindowsConstants.au3>
#include <AutoItConstants.au3>
WinWait("Start Page - AtmelStudio")
WinActivate("Start Page - AtmelStudio")
Sleep (500)
send("^T" , "") ; Alt + T
SLEEP (1000)
; Tools
send("+^P" , "") ;Ctrl+Alt+P
Sleep (500)
WinWait("Device Programming")
WinActivate("Device Programming")
MouseMove(650, 143) ;put mouse on the Apply Button location
MouseClick("primary", 650,143, 1, 1)
MouseUp($MOUSE_CLICK_LEFT)
; "Fuses"
MouseMove(404, 334)
MouseClick("primary", 404,334, 1, 1)
WinWait("AVRISP mkll (0000000000000) - Device Programming")
WinActivate("AVRISP mkll (0000000000000) - Device Programming")
Until here, works, but dosen't the below code
;High
$text = "0xDF"
MouseMove(624, 486, 100) 'location of the Editbox
sleep (1000)
ControlSetText ( "HIGH", "0xDD", 7804, "0xDF" ,0) 'not work then i don't know the Edit ID, perhaps with other command, i'm new in Autoit
;ClipPut($text)
;send("^v")
Regards