Search found 2177 matches

by JoeWinograd
Yesterday, 19:30
Forum: Ask for Help (v1)
Topic: Wrap
Replies: 6
Views: 74

Re: Wrap

You're welcome, jr. Looking forward to your feedback tomorrow.
by JoeWinograd
Yesterday, 18:45
Forum: Ask for Help (v1)
Topic: Wrap
Replies: 6
Views: 74

Re: Wrap

this script should wrap after 300 pixels It does: jrachr print gui.png print what the wrapped gui shows when I press Ctrl & P The Print command is for plain text files. Since you are trying to print an image file (PNG), you should use the IrfanView /print parameter to print it. In other words, in t...
by JoeWinograd
26 Mar 2024, 14:24
Forum: Ask for Help (v1)
Topic: Need to know how to insert "["
Replies: 14
Views: 134

Re: Need to know how to insert "["

I don't know how to determine which modifier keys are needed for which characters. So, if you're trying to produce documentation on that, I can't help...hopefully, someone else in the group will jump in. If you're actually trying to send/insert all such characters via a script, I would address them ...
by JoeWinograd
26 Mar 2024, 13:18
Forum: Ask for Help (v1)
Topic: Need to know how to insert "["
Replies: 14
Views: 134

Re: Need to know how to insert "["

When I need to detect what modifier key to use I must no send anyhing. Then I don't understand your end goal. Your initial post says: I need to know what keys I need to press to insert "[" In order to insert "[" , you can Send % Chr(91) . If that's not what you're trying to do, please explain furth...
by JoeWinograd
26 Mar 2024, 12:50
Forum: Ask for Help (v1)
Topic: Need to know how to insert "["
Replies: 14
Views: 134

Re: Need to know how to insert "["

Hi @Archimede,
Instead of trying to figure out what keys to press, you could simply send it via the Chr function. For example:

Code: Select all

LeftBracket:=Chr(91)
Send %LeftBracket%
MsgBox % LeftBracket
Regards, Joe
by JoeWinograd
23 Mar 2024, 18:57
Forum: Ask for Help (v1)
Topic: toolbar-navigating macro doesn't work as function Topic is solved
Replies: 2
Views: 37

Re: toolbar-navigating macro doesn't work as function Topic is solved

Code: Select all

send {tab 3}{right %toolbarX%}{enter}
send {home}{down %paletteY%}{right %paletteX%}{enter}
by JoeWinograd
23 Mar 2024, 12:27
Forum: Forum Issues
Topic: AutoHotkey start page is broken
Replies: 10
Views: 167

Re: AutoHotkey start page is broken

gregster wrote:Now it works again on both computer and phone.
Glad to hear it! My hip-shot...Cloudflare was the culprit.
by JoeWinograd
23 Mar 2024, 01:39
Forum: Forum Issues
Topic: AutoHotkey start page is broken
Replies: 10
Views: 167

Re: AutoHotkey start page is broken

Fine here, too, with Brave, Chrome, Edge, and Firefox (Chicago area, USA).
by JoeWinograd
20 Mar 2024, 13:30
Forum: Ask for Help (v1)
Topic: Parsing JSON string with Jxon library Topic is solved
Replies: 2
Views: 88

Re: Parsing JSON string with Jxon library Topic is solved

Hi @geek,
Thank you very much! Both methods work perfectly! Regards, Joe
by JoeWinograd
20 Mar 2024, 11:34
Forum: Scripts and Functions (v1)
Topic: JSON 2.0 (and Jxon) - JSON lib for AutoHotkey
Replies: 77
Views: 66949

Re: JSON 2.0 (and Jxon) - JSON lib for AutoHotkey

Hi Folks, I thought it would be better to post a separate question for a usage issue, but after three days and more than 30 views, it has received no replies, so I decided to come here and hope that the JSON/Jxon experts hanging here can help. The quick summary is: How to access JSON elements that a...
by JoeWinograd
19 Mar 2024, 21:25
Forum: Scripts and Functions (v1)
Topic: forecast and weather GUI
Replies: 11
Views: 266

Re: forecast and weather GUI

TheNaviator wrote:replace the zeroes with your coordinates
OK, the link works with proper values for latitude and longitude.
by JoeWinograd
18 Mar 2024, 22:42
Forum: Scripts and Functions (v1)
Topic: forecast and weather GUI
Replies: 11
Views: 266

Re: forecast and weather GUI

you don't need that line in the code with getbackground func, you might as well delete it. Yeah, especially since the weatherbackground var is not used anywhere in the script. :) The big problem is that the UrlDownloadToFile does not work. Using your link var unchanged, I ran this: downloadtest:=A_...
by JoeWinograd
18 Mar 2024, 14:49
Forum: Scripts and Functions (v1)
Topic: forecast and weather GUI
Replies: 11
Views: 266

Re: forecast and weather GUI

Hi @TheNaviator,

I see that this is your first post here, so let me start with...Welcome Aboard!

I was looking forward to testing this, but when I tried to run it, the GetBackground function is missing. Regards, Joe
by JoeWinograd
18 Mar 2024, 12:39
Forum: Scripts and Functions (v1)
Topic: [LIB] TrayIcon - Sean's TrayIcon for Unicode and 64 bit
Replies: 95
Views: 74034

Re: [LIB] TrayIcon - Sean's TrayIcon for Unicode and 64 bit

kashmirLZ wrote:So now whats a reliable way to always click the third element in the list?
After the TrayIcon_Button("AOL.exe", "R") call, try this in V1:

Send {Down 3}{Enter}

Or this in V2:

Send "{Down 3}{Enter}"

Both work here. Regards, Joe
by JoeWinograd
17 Mar 2024, 15:07
Forum: Ask for Help (v1)
Topic: Parsing JSON string with Jxon library Topic is solved
Replies: 2
Views: 88

Parsing JSON string with Jxon library Topic is solved

Hi Folks, I'm using the Jxon.ahk (Lib function) . I understand the AHK assignment statement syntax after calling oJxon:=Jxon_Load(jsonvar) . For example, with this JSON data subset... { "log": { "version": "1.1", "creator": { "name": "HelloWorld", "version": "123.45" }, "pages": [ { "timestarted": "...
by JoeWinograd
17 Mar 2024, 10:04
Forum: Scripts and Functions (v1)
Topic: [LIB] TrayIcon - Sean's TrayIcon for Unicode and 64 bit
Replies: 95
Views: 74034

Re: [LIB] TrayIcon - Sean's TrayIcon for Unicode and 64 bit

Hi kashmirLZ , It returns the index (zero-based) of the icon in the system tray over which the mouse is hovering. If the mouse is not hovering over an icon, it returns -1. Microsoft doc is here: https://learn.microsoft.com/en-us/windows/win32/controls/tb-gethotitem Very easy to test with this simple...
by JoeWinograd
06 Mar 2024, 00:50
Forum: Ask for Help (v1)
Topic: Outlook COM failure
Replies: 2
Views: 93

Re: Outlook COM failure

lmstearn wrote:might be taking the string value of the variable name
Hi lmstearn,
Great call! That's surely what's happening, because these two lines do work:

Code: Select all

   OuterDex := A_index
   msg .= Rules.Item(OuterDex+0).Name "`n"
Thanks very much! Regards, Joe
by JoeWinograd
04 Mar 2024, 15:37
Forum: Ask for Help (v1)
Topic: How to use Outlook Component Object Model (COM) to export Outlook 365 Rules to readable format
Replies: 9
Views: 480

Re: How to use Outlook Component Object Model (COM) to export Outlook 365 Rules to readable format

ShatterCoder wrote:Some digging reveals...
That's some awesome digging! Works a charm! For my purposes, I changed the check to ConditionType=2 (Subject) and the variable to c.Subject.Text...PERFECT! Thanks so much for your excellent help on this...very much appreciated! Regards, Joe
by JoeWinograd
03 Mar 2024, 10:45
Forum: Ask for Help (v1)
Topic: Outlook COM failure
Replies: 2
Views: 93

Outlook COM failure

Hi Folks, I'm working on an interesting thread with ShatterCoder : https://www.autohotkey.com/boards/viewtopic.php?f=76&t=126600 It has resulted in a tangential issue that I think is better in a new question. ShatterCoder's post has this line of code, which works fine: msg .= Rules.Item(OuterDex := ...
by JoeWinograd
01 Mar 2024, 20:00
Forum: Ask for Help (v1)
Topic: How to use Outlook Component Object Model (COM) to export Outlook 365 Rules to readable format
Replies: 9
Views: 480

Re: How to use Outlook Component Object Model (COM) to export Outlook 365 Rules to readable format

ShatterCoder wrote:the short answer is that you just change SentTo to From
Works great! That handles the From field. Now for the Subject field. The GIFs are very helpful, although I haven't figured out the answer for Subject. Any thoughts? Thanks!

Go to advanced search