Jump to content

ratus69

Members
  • Posts

    12
  • Joined

  • Last visited

Recent Profile Visitors

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

ratus69's Achievements

Seeker

Seeker (1/7)

0

Reputation

  1. hello, I've installed the latest release of Scite and when I enable save.session.advanced=1, I have SciTEUser.properties and SciTEGlobal.properties in tabs with the script I wanted to open but none of the previous script used... any thoughts ? thanks
  2. very nice, thanks for sharing
  3. You should have written in bold, I've missed it first time I red your post I found an other thread where there's an example in comment 9 with radio : https://www.autoitscript.com/trac/autoit/ticket/1824 Anyway thanks for the info
  4. awesome work, thanks a lot argumentum !!
  5. just add Global Const $WM_QUIT = 18 and this fine piece will work smoothly I use it to close the systemtray of utorrent so utorrent won't recheck gigas of downloaded torrents when I restart it thanks for this thread, it was really helpfull to close a process sending a close order when WInclose doesn't work
  6. ok I have tried your example and the script is hanging but nothing happen I have tried it with an other application with a #32770 window class and it takes up to 25 seconds before highlighting the window
  7. hello junkew, 1. simplespy draw a red rectangle around the element of interest without problem 2. detective seems to have been improved since it tells a lot than a simple block, here it is what I get for my application CLO and for Scite : window detective CLO window detective Scite detective draw a red rectangle too around the elements like this and focus in the hierarchy list the item selected : window detective target element Now if ranorex spy or inspect gives more element I will install them, just tell me if window detective gives enough info or not There's one thing I don't understand : if I focus in my window using WinActivate ("CLO Enterprise OnlineAuth","") and I try to move the mouse using mousemove nothing happen, the mouse is not moving at all, it's very strange... I will try your examples thanks a bunch for your help junkew !
  8. thanks for your help junkew I don't want to waste your time and pollute this thread so perhaps I will need to open an other thread I have installed window inspector who seems to be as good as inspector and don't need 2Gb of installation here it is what I get for the frame containing the menu File Edit ... of the program I want to dialog with What I would like to do is to select file > import > alembic or to send shift - A which is the shortcut for this command, to the program I have tried Send, ControlSend with IDs, class etc but nothing seems to work so I thought UIA could make it but I don't get how to send text or command or clicks to this type of Qwidget anyway thanks again
  9. Hi all, I'm having hard time trying to simply pass text or button clicks to a Qwidget, I'm not a programmer but I know how to use Autoit I've found this thread and I'm using SimpleSpy to get a simple code to interact with my Qwidget Unfortunately I can't focus the windows with the code provided, this is strange, the script is just hanging... In this example I have open an "Open File" window inside the Qwidget this is why I have #32770 class window #include "UIAWrappers.au3" AutoItSetOption("MustDeclareVars", 1) _UIA_setVar("oP1","Title:=CLO Enterprise OnlineAuth;controltype:=UIA_PaneControlTypeId;class:=QWidget") ;CLO Enterprise OnlineAuth _UIA_setVar("oP2","Title:=Open File;controltype:=UIA_WindowControlTypeId;class:=#32770") ;Open File ;~ $oUIElement=_UIA_getObjectByFindAll(".mainwindow", "title:=;ControlType:=UIA_TitleBarControlTypeId", $treescope_subtree) _UIA_setVar("oUIElement","Title:=;controltype:=UIA_TitleBarControlTypeId;class:=") ;ControlType:=UIA_TitleBarControlTypeId;classname:=") ;~ Actions split away from logical/technical definition above can come from configfiles ;~_UIA_Action("oP1","highlight") _UIA_Action("oP1","setfocus") WinActivate ("[class:QWidget]","") or WinActivate ("[class:#32770]","") will work to get the focus.. I'm running windows 10 x64 Thanks for your help Here's wat spy gives me :
  10. hello, I can't manage to make it work but there's an easier solution found here '?do=embed' frameborder='0' data-embedContent>> thanks anyway
  11. Hi everybody, I have tried to find how to align text to the right in a column made with GuiCtrlCreateListView but I didn't find anything in help of autoit and in this forum. By default, it's aligned to the left So if somebody have a clue on how to make it, I will be thankful Thank you
×
×
  • Create New...