Search found 40 matches

by pgeugene
17 Feb 2024, 05:30
Forum: Scripts and Functions (v2)
Topic: [V2] Tooltip2 to follow mouse with timeout
Replies: 12
Views: 2627

Re: [V2] Tooltip2 to follow mouse with timeout

@AHK_user and @NPerovic Thank you both for this beautiful function. Works nicely and found it's way to my standard library, too. Before finding this thread, i have created a function that does not follow the mouse cursor, but just shows the tooltip for a given time, without blocking execution of th...
by pgeugene
17 Feb 2024, 03:11
Forum: Ask for Help (v2)
Topic: Newly converted script not working
Replies: 9
Views: 323

Re: Newly converted script not working

Hello, Hotkeys are now functions in AHK v2. As with v1, variables in functions are local to the function, by default. See v2 documentation about variable scope. In v2, a variable must be defined before it is accessed. Assigning a global variable inside a function requires declaring the variable as ...
by pgeugene
16 Feb 2024, 04:25
Forum: Ask for Help (v2)
Topic: Newly converted script not working
Replies: 9
Views: 323

Newly converted script not working

I copied portion of V1 script and used converter tool to convert to V2 script but received error upon launching the new V2 script The script is to copy selected text and pasted it to the window I have chosen with a hotkey stated in the script V1 script +!c:: ; alt+shift+c to copy to the selected win...
by pgeugene
07 Feb 2024, 04:55
Forum: Scripts and Functions (v2)
Topic: Snipper - Window Snipping Tool
Replies: 125
Views: 30139

Re: Snipper - Window Snipping Tool

FG,
Thank you for your fast reply
It is working now
There were 2 mistakes causing my problem
1) I was using Snipper Lite version
2) I have included the extention-ocr script into Auto-Execute portion of Snipper Lite script
by pgeugene
06 Feb 2024, 05:34
Forum: Scripts and Functions (v2)
Topic: Snipper - Window Snipping Tool
Replies: 125
Views: 30139

Re: Snipper - Window Snipping Tool

I just included OCR extention into my Snipper main script but get below error
by pgeugene
28 Jan 2024, 23:43
Forum: Ask for Help (v2)
Topic: Failed to convert Auto reload script V1 to V2 Topic is solved
Replies: 2
Views: 231

Re: Failed to convert Auto reload script V1 to V2 Topic is solved

just me wrote:
28 Jan 2024, 06:28

Code: Select all

if InStr(FileGetAttrib(A_ScriptFullPath), "A")
You must not use "-and %-signs to referene a variable.
It is ok now..Thank you for your fast reply.
by pgeugene
28 Jan 2024, 05:37
Forum: Ask for Help (v2)
Topic: Failed to convert Auto reload script V1 to V2 Topic is solved
Replies: 2
Views: 231

Failed to convert Auto reload script V1 to V2 Topic is solved

below is my script V1 to reload ahk file upon saved ;STARTOFSCRIPT SetTimer,UPDATEDSCRIPT,1000 UPDATEDSCRIPT: FileGetAttrib,attribs,%A_ScriptFullPath% IfInString,attribs,A { FileSetAttrib,-A,%A_ScriptFullPath% posX = %A_CaretX% posY = %A_CaretY% ToolTip,Updated script,%posX%,%posY% Sleep,500 Reload ...
by pgeugene
16 Jan 2024, 03:38
Forum: Ask for Help (v2)
Topic: error loading V2 program during windows 10 loading
Replies: 1
Views: 146

error loading V2 program during windows 10 loading

I have recently installed V2 on top of V1 onto my Windows 10.
Now each time after I login and while V2 is loading, I will received an error message.
The error message is gone after I clicked on Continue button.
How can I fix the problem ?

Image
by pgeugene
11 Jan 2024, 04:39
Forum: Scripts and Functions (v1)
Topic: A helpful editing tool.
Replies: 42
Views: 4134

Re: A helpful editing tool.

I saved the script as "C:\Users\HP\Documents\Editor.ahk"

I received error message when run editor.ahk

When i checked "C:\Users\HP\Documents\Cache" folder, there is no descriptions.txt file created
by pgeugene
07 Jan 2024, 05:55
Forum: Ask for Help (v1)
Topic: Create icon for Gui
Replies: 1
Views: 208

Create icon for Gui

i found this launcher and need help to create new icon file for new button

https://github.com/zapperment/QuickLaunch


All icons are stored in below link

https://github.com/zapperment/QuickLaunch/tree/main/icons
by pgeugene
04 Jun 2023, 03:01
Forum: Ask for Help (v1)
Topic: Auto Keyboard Layout ( Why nobody willing to help ? )
Replies: 5
Views: 747

Auto Keyboard Layout ( Why nobody willing to help ? )

I found a script from https://gist.github.com/christianrondeau/00d7cd5848f33e029f00ce2b6b935ab9 My pc has English-US and Chinese-PRC keyboards I modified lines 15 to 19 per script instruction to below values Line 11 of the script stated "They must be set twice in the language ID" global DefaultLangu...
by pgeugene
02 Jun 2023, 03:50
Forum: Ask for Help (v1)
Topic: Change language input when WhatsApp is active Topic is solved
Replies: 2
Views: 249

Change language input when WhatsApp is active Topic is solved

Below is the code that supposed to press #{Space} when WhatsApp is active Unfortunately immediately the script is launched, #{Space} is pressed although WhatsApp is not active When I made WhatsApp active, #{Space} is not pressed Anything wrong with the code ? if WinActive("ahk_exe WhatsApp.exe") Sen...
by pgeugene
19 Dec 2021, 04:12
Forum: Scripts and Functions (v1)
Topic: SpicyKeys - use hotkeys to open or move/copy selected files in Windows Explorer
Replies: 6
Views: 2590

Re: SpicyKeys - use hotkeys to open or move/copy selected files in Windows Explorer

Hi,
Thank you for your fast replied.
Now it is working for both moving files and folder.
Tq
by pgeugene
17 Dec 2021, 03:30
Forum: Scripts and Functions (v1)
Topic: SpicyKeys - use hotkeys to open or move/copy selected files in Windows Explorer
Replies: 6
Views: 2590

Re: SpicyKeys - use hotkeys to open or move/copy selected files in Windows Explorer

Hi,
Thank you for your script.
However after selected the folder or file and pressed the hotkeys to move it to another path, an error pop up.
If I click Yes to continue,it was still working properly.
Below is the error msg.
spicykey.jpg
spicykey.jpg (35.48 KiB) Viewed 2235 times
by pgeugene
25 Dec 2020, 04:38
Forum: Scripts and Functions (v1)
Topic: Using Google Translate to automate text translation
Replies: 228
Views: 101441

Re: Using Google Translate to automate text translation

Although now I can click and drag LButton to select only One word for translation.
However I found it easier and faster to double click Lbutton to select single word
How to modify the script if I want to Double click LBotton to select only One word for translation
by pgeugene
27 Jun 2019, 04:45
Forum: Scripts and Functions (v1)
Topic: HotKey Launcher - By YoucefHam
Replies: 6
Views: 2971

Re: HotKey Launcher - By YoucefHam

Seem like I can't use "Windows" key [#] as hot key
by pgeugene
27 Jun 2019, 04:45
Forum: Scripts and Functions (v1)
Topic: HotKey Launcher - By YoucefHam
Replies: 6
Views: 2971

Re: HotKey Launcher - By YoucefHam

Seem like I can't use "Windows" key [#] as hot key

Go to advanced search