Jump to content

argumentum

MVPs
  • Posts

    5,459
  • Joined

  • Last visited

  • Days Won

    181

argumentum last won the day on December 18 2025

argumentum had the most liked content!

About argumentum

Profile Information

  • Member Title
    ✨Universalist ✨
  • Location
    I'm in your browser now =)
  • WWW
    https://www.youtube.com/watch?v=SjwX-zMRxO0&t=5s
  • Interests
    Relax

Recent Profile Visitors

14,084 profile views

argumentum's Achievements

  1. Auto hotkey have a v1 and a v2 of their versions that may give you a heads up ? ;~ https://github.com/gedoor/ahkLauncher/blob/main/lib/ICustomDestinationList.ahk ;~ https://github.com/Ixiko/AHK-libs-and-classes-collection/blob/master/libs/g-n/JumpList.ahk Neither can I. But I'll wait right here for working code
  2. You can do TCP with AutoIt. You can do many things with AutoIt, but a video player is not. So, what are you up to ?. You could not help the one asking for help by just what is written. Read what the OP posted ( yourself ) and explain what he needs. You can't.
  3. Retrieves the position and size of a control relative to its parent its main window @jpm, calling the main window "the parent" is going to be brought up in the future, since there can be many child windows that each have it's own parent. We should call the "main window", just that: main window.
  4. is it a bird ?, is it an airplane ?, ..no, is superman ! Is it a window ?, is it a canvas ?, ..no, it's a form ! We call it a GUI but is a form and inside that form we do what we do. Am not familiar enough to make a writeup about it nor can find a reference link with an explanation of how M$ windows calls each component 🤷‍♂️ If any of you find such reference, please post it here. I'd like to know what is called what and how it works so that I can have a good notion of how a form/gui works Actually, I'd like to communicate in a way that is explicit and without a common ground of how to call stuff in a GUI..., is unsettling for me Thanks
  5. "What you see is what you get" I guess. 🤔 "Retrieves the position and size of a control relative to its window." is not a bad description even if not a great explanation. "..it's top level window" is more specific but more confusing too, like, "hmm, what is a top level window ?, is there a low level window ?" When automating a click-click, you look for the position relative to the frame of the client of the main window to find where to click-click. The target audience do look for such, and as described, it is what it does. Fixing the bug should not brake any scripts. Remarks The title/text is referencing the parent window, so be careful with "", which references the active window which may not be the one containing the controlID control. The above remark do clarify a bit more, and the proposed explanation about top-level could go there if the bug is not fixed.
  6. Yes. Did what you said and it all works. Thanks
  7. $hGUI=0x00000000002B08F8 +> [WEBEVENTS]: INIT_READY - Switching to Custom Menu (AutoIt Mode) "D:\au3.ForumCode\au3.NetWebView2Lib-1.4.0\NetWebView2Lib\examples\WebDemo_v1.4.au3" (550) : ==> The requested action with this object has failed.: $oWeb.AddInitializationScript($sBridge) $oWeb^ ERROR +> [Web1]: INIT_READY +> [Web2]: INIT_READY +> [Bridge1 JS]: {"type":"COM_TEST","status":"OK"} +> [Web1]: NAV_STARTING +> [Web2]: NAV_STARTING +> [Bridge2 JS]: {"type":"COM_TEST","status":"OK"} +> [Web2]: URL_CHANGED|https://www.google.com/search?q=web2 "D:\au3.ForumCode\au3.NetWebView2Lib-1.4.0\NetWebView2Lib\examples\TwinWebView.au3" (249) : ==> The requested action with this object has failed.: $oWeb2.WebViewSetFocus() $oWeb2^ ERROR +> [Web1]: URL_CHANGED|https://www.google.com/search?q=web1 "D:\au3.ForumCode\au3.NetWebView2Lib-1.4.0\NetWebView2Lib\examples\TwinWebView.au3" (217) : ==> The requested action with this object has failed.: $oWeb1.WebViewSetFocus() $oWeb1^ ERROR
  8. impatiently waiting for the whole package
  9. If you press F1 while the cursor is at a word, the help file will give you a description of it. I will step out of your postings until you show better proficiency.
  10. #include <Array.au3> _ArrayDisplay(GetMeTheTextAsArray("Texas")) Func GetMeTheTextAsArray($sTitle) Return StringSplit(WinGetText($sTitle), @CRLF, 0) EndFunc
  11. Why not just WinGetText() and StringSplit() it ?, it'd be simpler that way. If a MouseMove() is needed to update the data, then that is on the ones who coded the SmartRF being lazy.
  12. ..hard to paste the snapshot into my editor It looks good. If you still have a problem, explain it and I'll try to help Edit: oh, I see. do encapsulation, like '"my program'" with a ' and a " .... " ' 🤔
  13. If MsgBox(36, "Confirm", "Exit Application?", 0, $hGUI) = 6 Then Exit is better because it will disable the GUI while MsgBox() is active. Is there a way to do all these without registering a DLL ? - I hope someone with more knowledge can shed some light on the thread. Ok, but, it would be nicer, even if not better than this way. Thanks for the code
  14. @argumentum, please run WebView2AutoIt_v0.1\NetWebView2Lib\WebView2AutoIt\register_web2.au3 and it should work after that. Do place the project in a local drive
×
×
  • Create New...