Jump to content

kcvinu

Active Members
  • Posts

    1,175
  • Joined

  • Last visited

  • Days Won

    2

kcvinu last won the day on June 9 2023

kcvinu had the most liked content!

About kcvinu

  • Birthday 04/23/1982

Profile Information

  • Location
    Keralam
  • Interests
    Programming, Electronics, Indian Astrology

Recent Profile Visitors

1,294 profile views

kcvinu's Achievements

  1. @Andreik That's a good idea. Thank you, let me try.😀
  2. @Andreik, Nothing special, I am just trying to find which is the faster way. Exe file is convenience because, when running from another program, it's quite easy to manage parameters. But in case of script, we need to run Autoit3.exe & AutoitWrapper.au3. So parameter list will be bigger and clumsy. In my use case, most of my scripts are running with PhraseExpress or QtTabbar (Famous windows explorer extension).
  3. Which is the fastest way to run a script ? 1. Making an exe file from script (without using UPX) and run 2. Starting Autoit3.exe with script as a parameter.
  4. For Python to be a threat to AutoIt, it would have to reduce the exe size when we convert the script to exe. And that's not possible. I think we can do almost any automation tasks in python too. But when we convert our script to an exe file, Autoit would make 1.2 MB file and python script would be 7+ MB file.
  5. @Mateocedillo Hi, It can be implemented from the Nim side. But I was busy in these days. I will sure look into it.
  6. @Mateocedillo, Thanks for trying the library. Let me check the key navigation.
  7. @ayu_2403, I had the same issue few weeks ago. And I found the solution by myself. See this answer You will need to use a python script. Read my answer in that link and feel free to ask any questions.
  8. @akanada, I think that's because of not setting the working directory. You can check this with these steps. 1. Open your script folder and start cmd from there. 2. Copy & paste the run command from SciTE editor to cmd and run. (SciTE will show you the running command in output window.)
  9. Hi all, A script braking change !!! I just improved the way of using property getter/setter and event. New way. ; Set a property Local $btn1 = glf_NewButton($frm, "Normal", 15) glf_ControlSetProperty($btn2, $btn2.backColor, 0x90be6d) ; Get a property Local $txt = glf_ControlGetProperty($tb, $tb.text) ; Set an event handler glf_ControlAddHandler($btn1, $btn1.onClick, "onBtnClick") glf_MainMenuAddHandler($frm, "Basic Job", $frm.onMenuClick, "menuClick") Please download the updated files from git repo
  10. @Andreik, Thanks. Let me check what I can do with x86. I had very little priority when it came to the X86.
  11. Hi all, I just pushed a bug fixed version of Glance gui lib. Please check. Changed some stack generated strings to heap strings.
  12. We need an option to avoid unwanted outputs like system arch and etc. Sometimes output terminal is populated with these messages.
  13. @Andreik, Oh I see. That's interesting. Let me check.
  14. @Andreik This time TreeView click ? Double or single ?
×
×
  • Create New...