Showing posts with label autohotkey. Show all posts
Showing posts with label autohotkey. Show all posts

July 18, 2024

Battery Monitor PowerTool

This page provides documentation about the Battery Monitor PowerTool implementation.
It is a Work-In-Progress

February 26, 2024

Universal Date Picker with Calendar Week supporting Atlassian Tools (Jira, Confluence,...)

I have shared some time ago a small script for a universal date picker with calendar weeks displayed. Now in Jira and Confluence the date format is fixed to mm/dd/yyyy. Moreover, Confluence has a specific way of formatting dates. So I have adapted the tool to better integrate with Jira and Confluence. 
I share here the result.

October 24, 2023

Teams: Quick Share Screen (with second monitor)

Currently if you are in a Teams meeting on Windows using the Desktop app, it is quite cumbersome to quickly share your screen - specially if you use 2 monitors. I present here a better solution and improvement ideas.

October 4, 2023

New PowerTool for Atlassian Tools

Let me introduce a new member in the PowerTools family: I have named it "Atlasy". 
It improves UX and productivity with the Atlassian-based tools like Jira, Confluence, R4J.

September 19, 2023

Hotkey or Script to enable or disable Focus Assist in Windows 10

I was looking for a solution to set the Focus Assistant mode e.g. to Do not disturb by script, at the best with AutoHotkey. I share here finally how I can do this.

August 8, 2023

How to get Teams Client Language Setting

I explain in this post a way to get the Teams Client Language programmatically - for both Teams Classic and Teams New clients.

August 4, 2023

AutoHotkey: How to wait for Browser page to be loaded

In the-automator Newsletter and recent YouTube channel, a way to wait for a Browser to be loaded was shared.
After some research, I share here a better way to wait for a browser page to be loaded. 

July 28, 2023

Jira: Quick Update Epic Link(s)

Post is currently in DRAFT. This post explains how you can quickly link issues in Jira to an Epic using an AutoHotkey script.

July 18, 2023

AutoHotkey: Dynamic ListView and Variadic Argument

I have learned something great and unobvious/ undocumented for AutoHotkey ListView GUI Element: you can use variadic argument to make a generic function to display elements in a Table format with multiple dynamic columns.

July 6, 2023

Confluence: Personalize Mentions

I share here a way to personalize mentions in Confluence with Autohotkey.

June 22, 2023

AutoHotkey Basic Authentification for REST API e.g. Jira

I have stumbled upon an issue in the b64 encoding function that broke the Basic Authentication when using a longer password e.g. API token.
I share in this post how I do REST API calls with a Basic Authentication example for Jira including the fix for this issue.

June 16, 2023

AutoHotkey Alternative to Browser Redirectors

This summary is not available. Please click here to view the post.

June 14, 2023

Jira: Create multiple issue links by script

This post describes how to bulk add a link to issues in Jira using the API. This a draft/wip version. Comment if you want me to finalize it.

March 2, 2023

AutoHotkey Html Clipboard issue with Confluence

I have fixed last week in bug in my AutoHotkey IntelliPaste feature. This bug only occurred when pasting html formatted links to a Confluence page. It was converted to an image.

August 1, 2022

UIAutomation: Easily access properties

This video (How to easily access properties from UIA - YouTube) by The.Automator-s is a bit obsolete especially see here (t=417)



With one of recent Descolada's update in the UIAutomation library, you can now access the UIA properties directly.

I asked him about this handling in this issue and he nicely updated his library.

For example you can directly use .Name to access the 'Name' Property; no need to use the counter-intuitive .CurrentName anymore (as shown in Joe's video).

I recommend you keep your local UIAutomation library synchronized with the repo or check regularly for updates.

July 8, 2022

Shortcuts for Microsoft Teams Meeting Reactions (improved implementation based on UIAutomation)

I have shared in a previous post how to run Teams Meeting Reactions with a hotkey or command with AutoHotkey; this solution was based on ImageSearch/ FindText. I present here an improved solution based on UIAutomation.

July 1, 2022

Using UI Automation AHK Library to Control Microsoft Teams

I have recently learned (thanks to Joe and Isaias) about another way of automating programs with AutoHotkey based on the UI Automation API.
I give it a try here with Microsoft Teams. 
This post is a DRAFT.

Get Microsoft Teams Meeting Window using UIAutomation

I have shared previously how to get the active Teams meeting window with AutoHotkey with 2 ways: one prompting the user and an improved one using FindText.
I share now a better, more robust solution based on the UIAutomation library.

March 21, 2022

AHKCon 2022 Topics for a presentation

I collect here a list of AutoHotkey topics I could make a presentation about at the AHKCON 2022 announced here for this summer:

March 11, 2022

AHK Conditional include

I share here some learning how to bypass "call to non-existent function" error to make dependencies optional.