Search found 13 matches

by clarkj0388
10 Mar 2023, 17:55
Forum: Ask for Help (v1)
Topic: GuiControl, hide, but then can't show again
Replies: 1
Views: 225

GuiControl, hide, but then can't show again

I'm just trying to create a gui that flips between two pictures quickly... if I use GuiControl to change the pic, it creates the dreaded flicker. Instead I tried layering two images, and wanted to just hide and show the top image over and over again. It creates no flicker which is great, but once I ...
by clarkj0388
12 Feb 2023, 00:05
Forum: Ask for Help (v1)
Topic: URL Download to File not working
Replies: 4
Views: 459

Re: URL Download to File not working

and yes... I've tried it without the quotes as well... UrlDownloadToFile, https://www.google.com/maps/vt/data=9KZnDfCpPlvTU8liZSxRK68iPgkpi9GbpD2FYCu5E0ZDk38075U0gI7qkeyXnksU1tgsFuLu3sa0b2uT_d87J6zH8Jque0tCB2Zz3m2g5ECC1R6oXlB65pD6zoerLOEc_wa_V-gCPfFgLBsF54iPUz0S6hDMh8FhON_qdm-l,9QY-qAGDoGYenT4VpxyK9...
by clarkj0388
12 Feb 2023, 00:03
Forum: Ask for Help (v1)
Topic: URL Download to File not working
Replies: 4
Views: 459

Re: URL Download to File not working

Yes it does. Thanks. I wonder why passing it in as a var makes a difference over this: UrlDownloadToFile, "https://www.google.com/maps/vt/data=9KZnDfCpPlvTU8liZSxRK68iPgkpi9GbpD2FYCu5E0ZDk38075U0gI7qkeyXnksU1tgsFuLu3sa0b2uT_d87J6zH8Jque0tCB2Zz3m2g5ECC1R6oXlB65pD6zoerLOEc_wa_V-gCPfFgLBsF54iPUz0S6hDMh...
by clarkj0388
11 Feb 2023, 23:04
Forum: Ask for Help (v1)
Topic: URL Download to File not working
Replies: 4
Views: 459

URL Download to File not working

Hi all, Can someone come up with another solution to download the PNG generated by this URL? https://www.google.com/maps/vt/data=9KZnDfCpPlvTU8liZSxRK68iPgkpi9GbpD2FYCu5E0ZDk38075U0gI7qkeyXnksU1tgsFuLu3sa0b2uT_d87J6zH8Jque0tCB2Zz3m2g5ECC1R6oXlB65pD6zoerLOEc_wa_V-gCPfFgLBsF54iPUz0S6hDMh8FhON_qdm-l,9Q...
by clarkj0388
13 Dec 2022, 16:21
Forum: Ask for Help (v1)
Topic: Invisible GroupBox possible?
Replies: 1
Views: 168

Re: Invisible GroupBox possible?

I suppose I should just use separate GUIs... That always gets confusing for me, trying to keep track with Gui2, Gui3, etc. when updating via GuiControl.

Any advice?
by clarkj0388
13 Dec 2022, 16:00
Forum: Ask for Help (v1)
Topic: Invisible GroupBox possible?
Replies: 1
Views: 168

Invisible GroupBox possible?

I'm trying to group elements of a Gui so that I can animate them sliding in from off-screen, display for 10 seconds then slide back off screen. In an effort to keep things simple, I'd rather just slide the entire GroupBox, instead of each element inside of it simultaneously, but I don't really want ...
by clarkj0388
11 Nov 2022, 02:26
Forum: Ask for Help (v1)
Topic: Use Send {NumpadAdd} to trigger Keywait in another running script
Replies: 3
Views: 243

Re: Use Send {NumpadAdd} to trigger Keywait in another running script

A script that is waiting at: KeyWait, NumpadAdd for a {+} input from the number pad. As I explained, it's working fine with the physical keystroke, but not when I generate the keystroke from a gui in another script with a gui button that sends NumpadAdd. I've tried all the different versions of Send...
by clarkj0388
02 Nov 2022, 18:29
Forum: Ask for Help (v1)
Topic: Use Send {NumpadAdd} to trigger Keywait in another running script
Replies: 3
Views: 243

Use Send {NumpadAdd} to trigger Keywait in another running script

I have a control panel that I'd like to send {NumpadAdd} to trigger another script that is in a Keywait, NumpadAdd, D. My scripts work fine when I use the actual NumPadAdd button, but it's not working when I hit the GuiButton that runs: SendNumPadAdd: SetTitleMatchMode, 1 Winactivate, PianoTrivia Wi...
by clarkj0388
13 Aug 2022, 04:09
Forum: Ask for Help (v1)
Topic: Getting unexpected results with "Yesterday" using FormatTime
Replies: 8
Views: 898

Re: Getting unexpected results with "Yesterday" using FormatTime

just me Thank you! I haven't tested it yet. But it makes sense to me. I was thinking it could be something like that... but was stuck on the wrong section of code. I was thinking something needed to be reset, like using RANDOM, but this never occurred to me. I'll just initialize it every loop, and ...
by clarkj0388
13 Aug 2022, 02:57
Forum: Ask for Help (v1)
Topic: Getting unexpected results with "Yesterday" using FormatTime
Replies: 8
Views: 898

Re: Getting unexpected results with "Yesterday" using FormatTime

image.png
image.png (33.86 KiB) Viewed 715 times
the value of HOUR should be 0, and it's sorting to the %Today% folder, not the %Yesterday% folder...

grrr
by clarkj0388
13 Aug 2022, 02:55
Forum: Ask for Help (v1)
Topic: Getting unexpected results with "Yesterday" using FormatTime
Replies: 8
Views: 898

Re: Getting unexpected results with "Yesterday" using FormatTime

BoBo Thanks for this. This is so far beyond my system, it's crazy. I just manually move everything in the folder once a year, to a dated year backup folder. Currently I'm struggling with the if HOUR < 2 It's not performing properly after midnight. I think my code says as long as it's before 2am, to...
by clarkj0388
13 Aug 2022, 02:51
Forum: Ask for Help (v1)
Topic: Getting unexpected results with "Yesterday" using FormatTime
Replies: 8
Views: 898

Re: Getting unexpected results with "Yesterday" using FormatTime

Thanks for your help mikeyww I intentionally used the capital H in my formattime, so that the hour would be 0 past midnight and 1 past 1 am. Hence why "if HOUR < 2"... I want the files created for the first 2 hours of the new day, to still sort into the previous days folder. When I test it in a "san...
by clarkj0388
11 Aug 2022, 18:57
Forum: Ask for Help (v1)
Topic: Getting unexpected results with "Yesterday" using FormatTime
Replies: 8
Views: 898

Getting unexpected results with "Yesterday" using FormatTime

FormatTime, Today,, M.d.yy FormatTime, NOW,, M.d.yy-h.mm.sst FormatTime, HOUR,, H Yesterday += -1, days FormatTime, Yesterday, %Yesterday%, M.d.yy if HOUR < 2 { FileCopy, C:\PrintChit\pVenmo\resources\chit.png, C:\PrintChit\pArchive\dated\%Yesterday%\%SubjectClean%_%NOW%.png, 1 } else { FileCopy, C...

Go to advanced search