Jump to content

Fernandosato52

Members
  • Posts

    7
  • Joined

  • Last visited

Recent Profile Visitors

The recent visitors block is disabled and is not being shown to other users.

Fernandosato52's Achievements

Seeker

Seeker (1/7)

0

Reputation

  1. Hello, Is it possible to receive data serial from a Arduino? If Autoit support serial communication, how to do it? Thanks for any help Regards
  2. Hello, "To post code on the forum, please use the following procedure: Click the Code button on the editor toolbar." I use the Editor SciTE-Lite and not find the refered Code button for code tags Regards
  3. 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
  4. Hello, I've done it but it doesn't work. I ended up solving it with send keys like Alt + T or Ctrl + Shift + T which solved this first part. Then it goes to another Dialog that unfortunately does not have the Keys, the "UIASpy.au3" does not show any Button ID that I can use for the next step, so I think the only way is to move the mouse over the desired button and give the click command, it's not the most elegant way to do because it will not work in other image resolutions, another problem is that when I send the click command, it seems to repeat several times, even having 1 as the number of times, if someone has some idea or utility that can work, I'm grateful Thanks in advance Regards
  5. Hello, I try this #include "Includes\UIASpy_Gui.au3" and it shows a lot of window information, but i think coordinates also the clickable points are all relativ to the Main Window of the programm that will inspected, if you show a window child of the main window and move it to other location of the screen, all the coordinates changed Anyone know a Tool that works, so i can use the coordenate to make automation with Autoit Like i said, the Autoit Window Info Tool that comes with Autoit not work with the programm Atmel Studio Regards
  6. Hello, After install Autoit V3, want see how to automatize actions on programm Atmel Studio 7 (Version: 7.0.1417) but the Window Info programm not show the controls ID and other informations, it recognize only the Window Title: and Class: On other programms it works, make i anything wrong? Thanks for any help Regards Fernandosato52
×
×
  • Create New...