Jump to content

Search the Community

Showing results for tags 'resolved'.

  • Search By Tags

    Type tags separated by commas.
  • Search By Author

Content Type


Forums

  • General
    • Announcements and Site News
    • Administration
  • AutoIt v3
    • AutoIt Help and Support
    • AutoIt Technical Discussion
    • AutoIt Example Scripts
  • Scripting and Development
    • Developer General Discussion
    • Language Specific Discussion
  • IT Administration
    • Operating System Deployment
    • Windows Client
    • Windows Server
    • Office

Categories

  • AutoIt Team
    • Beta
    • MVP
  • AutoIt
    • Automation
    • Databases and web connections
    • Data compression
    • Encryption and hash
    • Games
    • GUI Additions
    • Hardware
    • Information gathering
    • Internet protocol suite
    • Maths
    • Media
    • PDF
    • Security
    • Social Media and other Website API
    • Windows
  • Scripting and Development
  • IT Administration
    • Operating System Deployment
    • Windows Client
    • Windows Server
    • Office

Find results in...

Find results that contain...


Date Created

  • Start

    End


Last Updated

  • Start

    End


Filter by number of...

Joined

  • Start

    End


Group


Location


WWW


Interests

Found 4 results

  1. Hello, I am trying to create a small tool which alerts me when I receive a message from Skype for Business. You know sometimes you simple miss a conversation... I need to know when the message windows pops up: If message window active Then play a very loud sound EndIF Usually I would use WinActive() function, however it requires a title. And this doenst work, because the title is the name of the person messaging me, and can change every time. Is it possible to check if a Class "LyncTabFrameHostWindowClass" is active?
  2. Hi all, I'm encountering a weird issue. I'm attempting to toggle off Caps Lock and it briefly turns it off before it just turns right back on causing the LED to just strobe constantly. I'm using the following code: Opt("WinTitleMatchMode", 2) Global Const $VK_CAPITAL = 0x14 Main() Func _GetCapsLock() Local $ret $ret = DllCall("user32.dll","long","GetKeyState","long", $VK_CAPITAL) Return $ret[0] EndFunc Func Main() While 1 If _GetCapsLock() And WinActive("Chrome") Then Send("{CAPSLOCK OFF}")
  3. Have this AutoIT script used to click a button in Web to export data to Excel. It works well when run it from command line or AutoIT compiled .exe. But after added it to a Win10 VM Task Scheduler as I need to run it daily, it fails to be executed. Steps to reproduce: 1. Compile the script to .exe. 2. Go to Task Scheduler. Create the task to run this .exe. 3. Right click on the created task -> run -> shows nothing. Snippet of the code: Local $URL = "URL" Local $title = "title" Local $name = "name" Local $oIE = _IE
  4. Good evening, I need to configure a graphical interface where the contents of some "Button" are taken from a file I have foreseen to include with "#include". For the text no problem, the problem comes when I'm going to assign the color to the background of the "Button", the "Button" becomes BLACK WHITE. I included in the included file as follows: $ Promotion_Color = "$ Color_Red" Clarity I also imported #include the library <ColorConstants.au3> In the main program I wrote like this: $ Promotion = GUICtrlCreateButton ($ Promotion, Dim_Fin_X + $ 170, $ Dim_Fin_Y, 75
×
×
  • Create New...