Search found 133 matches

by Avastgard
12 Apr 2023, 13:12
Forum: Scripts and Functions (v1)
Topic: Screen clipping
Replies: 307
Views: 137648

Re: Screen clipping

[PLUGIN] Draw Shapes V. 2023 04 12 .002 Usage: Press P to activate basic drawing mode. how to install this plugin ? 1° download FG ScreenClipper at https://www.autohotkey.com/boards/viewtopic.php?p=506077#p506077 2° put this plugin "SM_DrawShape.ahk" in the Lib folder of the main script (RUN_Screen...
by Avastgard
11 Apr 2023, 20:52
Forum: Scripts and Functions (v1)
Topic: Screen clipping
Replies: 307
Views: 137648

Re: Screen clipping

SpeedMaster wrote:
16 Mar 2023, 20:18

[*]Basic drawing: this is more difficult to implement. I coded a plugin (beta version) with which you can draw some shapes. I'll post it as soon as I finish testing it.
Hey, @SpeedMaster, any news on that basic drawing plugin?
by Avastgard
16 Mar 2023, 09:52
Forum: Scripts and Functions (v1)
Topic: Screen clipping
Replies: 307
Views: 137648

Re: Screen clipping

Hi, SpeedMaster ! I tried all of your plugins and most of them work great. However, I had some problems using some of them: JL_Shrink.ahk: Double clicking does not shrink image. Using v. 1.0 SM_Grayscale.ahk: Pressing G exits the script. Using v. 1.5 Improvement suggestions: SM_AlwaysOnBottom.ahk: A...
by Avastgard
06 Mar 2023, 11:21
Forum: Ask for Help (v1)
Topic: Windows: Copy and Rename a file in a single step? Shortcut?
Replies: 11
Views: 2997

Re: Windows: Copy and Rename a file in a single step? Shortcut?

Is there a way to edit this code to append a certain word do the file's name? Like, instead of prompting me to rename the file, just copy and paste file.docx as file_backup.docx?
by Avastgard
27 Feb 2023, 11:04
Forum: Scripts and Functions (v1)
Topic: Screen clipping
Replies: 307
Views: 137648

Re: Screen clipping

You're on a roll, @SpeedMaster! Nice to see so many plugins rolling out so often! Thanks for your effort!
by Avastgard
23 Feb 2023, 11:44
Forum: Ask for Help (v1)
Topic: Create Send-To-Compressed (zipped)-folder event shortcut (or AutoHotKey Shortcut) on Windows 10
Replies: 21
Views: 4020

Re: Create Send-To-Compressed (zipped)-folder event shortcut (or AutoHotKey Shortcut) on Windows 10

I didn't manage to make the script split files, but the final script to zip selected files I have been using very successfully is this one: #NoEnv ; Recommended for performance and compatibility with future AutoHotkey releases. ; #Warn ; Enable warnings to assist with detecting common errors. SendMo...
by Avastgard
23 Feb 2023, 11:39
Forum: Ask for Help (v1)
Topic: Browse to and highlight/select file in Windows Explorer
Replies: 4
Views: 2605

Re: Browse to and highlight/select file in Windows Explorer

I am trying to insert this code into a larger script that pastes a specific file in the active folder. The idea is to have the file pasted and immediatelly have it open for renaming. Here is the code I have: #NoEnv ; Recommended for performance and compatibility with future AutoHotkey releases. ; #W...
by Avastgard
15 Feb 2023, 06:58
Forum: Scripts and Functions (v1)
Topic: Screen clipping
Replies: 307
Views: 137648

Re: Screen clipping

Thanks, it appears to be working. However, OCR is very slow and it is a very important feature to me. I have been using Joe Glines' version (Window Snipping.ahk for a while, which is less stable (script needs to be reloaded every now and then), but has a much faster OCR. By the way, about the rotati...
by Avastgard
13 Feb 2023, 09:25
Forum: Scripts and Functions (v1)
Topic: Screen clipping
Replies: 307
Views: 137648

Re: Screen clipping

Thanks for the update, @SpeedMaster!

Do you plan to add OCR functionality?
by Avastgard
10 Feb 2023, 10:40
Forum: Ask for Help (v1)
Topic: How to make the following hotstring?
Replies: 2
Views: 325

Re: How to make the following hotstring?

I'm not sure I understand your request, but if what you want is to type #1//#2 and have it transform into {}^{\Large{#1}}\!/\!_{\Large{#2}}, then this will work:

Code: Select all

:*:#1//#2::
SendRaw, {}^{\Large{#1}}\!/\!_{\Large{#2}}
return
by Avastgard
09 Feb 2023, 14:08
Forum: Ask for Help (v1)
Topic: Is it possible to split PDF files according to size?
Replies: 6
Views: 17511

Re: Is it possible to split PDF files according to size?

gmoises I tried your script, but couldn't make it work. I'm still a noob and can't tell if your two scripts are different ways to solve the same problem or if it would be necessary to merge both of them in one script. I tried two different versions: Version 1: #NoEnv ; Recommended for performance a...
by Avastgard
09 Feb 2023, 11:55
Forum: Scripts and Functions (v1)
Topic: Screen clipping
Replies: 307
Views: 137648

Re: Screen clipping

Awesome, thanks for this! But I can't get it to work. The yellow square shows, but disappears once I let go of LButton and doesn't clip the image. Could you further explain how to install the plugin? Here's the folder structure I have: ...ScreenClipper\ Lib\ RUN_ScreenCLip.ahk ...Lib\ FG_Context_Cli...
by Avastgard
31 Jan 2023, 16:40
Forum: Ask for Help (v1)
Topic: Different InputBoxes depending on the result of ClipWait Topic is solved
Replies: 4
Views: 440

Different InputBoxes depending on the result of ClipWait Topic is solved

I have this code: #y:: AutoTrim Off ; Retain any leading and trailing whitespace on the clipboard. ClipboardOld = %ClipboardAll% Clipboard = ; Must start off blank for detection to work. Send ^c ClipWait 1 if ErrorLevel ; ClipWait timed out. return ; Replace CRLF and/or LF with `n for use in a "send...
by Avastgard
31 Jan 2023, 11:32
Forum: Ask for Help (v1)
Topic: #Include generates special character error Topic is solved
Replies: 2
Views: 302

Re: #Include generates special character error Topic is solved

Possibly: https://www.autohotkey.com/docs/v1/FAQ.htm#nonascii I'm an idiot. Just a few weeks ago I pointed the exact same error on a user's script in Reddit. And for some reason I created scripts to be included as .txt files (which default to UTF-8) first that I later renamed to .ahk. Thanks for th...
by Avastgard
31 Jan 2023, 10:25
Forum: Ask for Help (v1)
Topic: #Include generates special character error Topic is solved
Replies: 2
Views: 302

#Include generates special character error Topic is solved

I have the following code: ; ; AutoHotkey Version: 1.x ; Language: English ; Platform: Win9x/NT ; Author: A.N.Other <myemail@nowhere.com> ; ; Script Function: ; Template script (you can customize this template by editing "ShellNew\Template.ahk" in your Windows folder) ; #NoEnv ; Recommended for perf...
by Avastgard
25 Jan 2023, 08:34
Forum: Ask for Help (v1)
Topic: Is it possible to split PDF files according to size?
Replies: 6
Views: 17511

Re: Is it possible to split PDF files according to size?

Thanks a lot guys. I will give @gmoises' script a try and report back. If that doesn't work, I will read Ghostscript's documentation as suggested by @mikeyww (alhtough it seems quite advanced for a beginner like me).
by Avastgard
25 Jan 2023, 08:12
Forum: Ask for Help (v1)
Topic: Create Send-To-Compressed (zipped)-folder event shortcut (or AutoHotKey Shortcut) on Windows 10
Replies: 21
Views: 4020

Re: Create Send-To-Compressed (zipped)-folder event shortcut (or AutoHotKey Shortcut) on Windows 10

I see, thanks for the clarification.

I will do some more research and see if I can put something together.
by Avastgard
24 Jan 2023, 09:33
Forum: Ask for Help (v1)
Topic: Is it possible to split PDF files according to size?
Replies: 6
Views: 17511

Is it possible to split PDF files according to size?

I constantly have to upload PDF files to platforms that only accept files up to a specific size, so I always have to split these PDF into smaller files. I used to do this with ilovepdf.com, but recent privacy policies at work blocked ilovepdf.com from being used. I am now trying to find a way to do ...
by Avastgard
24 Jan 2023, 07:55
Forum: Ask for Help (v1)
Topic: Create Send-To-Compressed (zipped)-folder event shortcut (or AutoHotKey Shortcut) on Windows 10
Replies: 21
Views: 4020

Re: Create Send-To-Compressed (zipped)-folder event shortcut (or AutoHotKey Shortcut) on Windows 10

Thank you very much, it works perfectly, even when using Windows 11's multiple explorer tabs. EDIT: Last request, I promise: would it be possible to split the .zip files into smaller .zip files so that each one does not exceed a certain size? In some occasions I have to upload a lot of files to plat...

Go to advanced search