Search found 3460 matches

by guest3456
17 Mar 2023, 12:23
Forum: Off-topic Discussion
Topic: Test your Forum Posts
Replies: 421
Views: 216632

Re: Test your Forum Posts

test reply to see if submitting forum replies is slow

edit: yep
by guest3456
17 Mar 2023, 12:22
Forum: Forum Issues
Topic: why is the forum so slow Topic is solved
Replies: 19
Views: 2820

Re: why is the forum so slow Topic is solved

Is it typical for the submission of replies or posts to take a few seconds? ^this is whats been most noticable for me for the past month or two edit: and just happened right now with this post (while the rest of the forum is fast) edit2: submitting the edit was fast, but submitting the original rep...
by guest3456
16 Mar 2023, 09:47
Forum: Scripts and Functions (v1)
Topic: v1 -> v2 Script Converter
Replies: 146
Views: 72095

Re: v1 -> v2 Script Converter

Sorry, but I will post everything thanks for all of your reports, extremely useful to help people find fixes unfortunately this project is community effort, and people contribute when they have time. if are you able to fix these bugs, please submit pull request on github and your changes will be me...
by guest3456
13 Mar 2023, 22:55
Forum: Scripts and Functions (v2)
Topic: Notepad written in ahk V2
Replies: 3
Views: 941

Re: Notepad written in ahk V2

well done
by guest3456
11 Mar 2023, 04:54
Forum: Ask for Help (v2)
Topic: Confusion about global variable Topic is solved
Replies: 11
Views: 2893

Re: Confusion about global variable Topic is solved

boiler wrote:
11 Mar 2023, 03:04
Global variables wrote:Any variable reference in an assume-local function may resolve to a global variable if it is only read.
thought v2 was meant to remove this "common source of confusion".. guess not
by guest3456
10 Mar 2023, 14:21
Forum: Forum Issues
Topic: anyone else not a fan of the new V1 section Topic is solved
Replies: 34
Views: 5317

Re: anyone else not a fan of the new V1 section Topic is solved

Since we are still moving a lot of v1 posts from Ask for Help (v2) , my impression is that it is actuallly not obvious to many people that there was a change and/or how to react to this change (probably because they don't find the v1 help, or simply don't realize the implications of the v2 main rel...
by guest3456
10 Mar 2023, 01:38
Forum: About This Community
Topic: AutoHotkey v2 Official Release Announcement - Q&A
Replies: 41
Views: 22405

Re: AutoHotkey v2 Official Release Announcement - Q&A

Benny-D wrote:
06 Mar 2023, 08:01
boiler wrote:
06 Mar 2023, 06:19
There are many more things that are different in v2, which are summarized here.
- Ah, I see. Thank you!
Oh my God! So many things! It'll be like re-writing all scripts from scratch!
this will help:
viewtopic.php?f=6&t=25100
by guest3456
02 Mar 2023, 21:41
Forum: Bug Reports
Topic: Need more braces in loop blocks in v2
Replies: 11
Views: 1856

Re: Need more braces in loop blocks in v2

Python has a lot going for it but this and the reliance on indented source code are not two of them. if AHK relied on indentation like python does, then your function1() would work as you intended it, with the else being attached to the correct if block i struggle to see any downsides of forcing in...
by guest3456
28 Feb 2023, 19:03
Forum: About This Community
Topic: Proposing new AHK banners
Replies: 15
Views: 7578

Re: Proposing new AHK banners

gregster wrote:
28 Feb 2023, 12:40
I like the old (current) banner better. I don't see how it's not suited for v2.
+1

current banner looks professional. not a fan of the new suggested banner
by guest3456
28 Feb 2023, 02:26
Forum: Ask for Help (v2)
Topic: [V2.02] MouseMove Doesn't Work As Expected In Dual Monitor Setup
Replies: 4
Views: 957

Re: [V2.02] MouseMove Doesn't Work As Expected In Dual Monitor Setup

If that is the case, why does the client area fall outside of the active window on the secondary monitor and not the primary? Shouldn't they be the same (i.e. MouseMove(0,0) should take the mouse position to the top left corner of the active window, regardless of which monitor it is on? When I ente...
by guest3456
25 Feb 2023, 22:05
Forum: Bug Reports
Topic: Rounding Bug
Replies: 45
Views: 5518

Re: Rounding Bug

could you multiply by 1000, and then round, and then divide back down to display? It doesn't work. Num := 1.035 msgbox % SRound(Num) ; Returns 1.03 SRound(Num) { Num := Round(Num*1000)/1000 Return Round(Num,2) } Your first Round has no effect here since by default it acts on decimals but after mult...
by guest3456
23 Feb 2023, 17:52
Forum: Forum Issues
Topic: anyone else not a fan of the new V1 section Topic is solved
Replies: 34
Views: 5317

Re: anyone else not a fan of the new V1 section Topic is solved

joedf wrote:
23 Feb 2023, 15:24
@guest3456 Maybe you can make this into a poll?
done
by guest3456
23 Feb 2023, 15:19
Forum: Forum Issues
Topic: anyone else not a fan of the new V1 section Topic is solved
Replies: 34
Views: 5317

Re: anyone else not a fan of the new V1 section Topic is solved

I think it would look better if V1 had it's own "section" (not sure what to call these blue bars), this makes it stand out, I had to "trim" the image a bit - but the other sub-sections like editors and tutorial are fine under the v2 "section" (missing from this image) But if possible a "v1" blue ba...
by guest3456
23 Feb 2023, 01:25
Forum: Forum Issues
Topic: anyone else not a fan of the new V1 section Topic is solved
Replies: 34
Views: 5317

anyone else not a fan of the new V1 section Topic is solved

feels like there could/should be a better way to layout the forum than this. 95% of the users are going to be using V1 and asking for help regarding it

edit: added poll
by guest3456
05 Feb 2023, 22:42
Forum: Bug Reports
Topic: Rounding Bug
Replies: 45
Views: 5518

Re: Rounding Bug

oldbrother wrote:
05 Nov 2022, 08:41
@malcev I use it for pricing only. 2-3 digits is enough for me.
Have a good day!
could you multiply by 1000, and then round, and then divide back down to display?
by guest3456
05 Feb 2023, 22:17
Forum: Scripts and Functions (v1)
Topic: Creating signed JWT with RS256 (RSA Signature with SHA-256) for Google Oauth2 authenticating with service account
Replies: 16
Views: 4534

Re: Creating signed JWT with RS256 (RSA Signature with SHA-256) for Google Oauth2 authenticating with service account

I think it can be done like this: StrPut("1.2.840.113549.1.1.1", &szOID_RSA_RSA, "utf-8") excellent. what is that magic number above? also, is there a way to import those plaintext keys back inside the crypto api? so like, the user can export those plaintext keys to disk, and then reimport them lat...
by guest3456
03 Feb 2023, 15:14
Forum: General Discussion
Topic: What has happened to AutoHotkey?!
Replies: 33
Views: 7368

Re: What has happened to AutoHotkey?!

i agree that fat arrows anon funcs should be removed from any examples in the documentation
by guest3456
25 Jan 2023, 12:48
Forum: Tips and Tricks
Topic: MVC pattern example
Replies: 15
Views: 5066

Re: MVC pattern example

can you give a quick explanation of the MVC pattern and its pros/cons and why you prefer it? There are lots of info online about MVC. This concept is used a lot behind the scenes and basically separates data storage (model) from the implementation of that data (view). The controller portion is used...
by guest3456
12 Jan 2023, 21:59
Forum: Wish List
Topic: [v2] Add A_Offset for zero-based memory functions
Replies: 2
Views: 890

Re: [v2] Add A_Offset for zero-based memory functions

presumably you're talking about this builtin variable occuring inside loops, in which case, i think it'd be better named to be simply A_ZeroIndex or something, since offset is only one of many possible use cases for this inside of a loop
by guest3456
04 Jan 2023, 11:02
Forum: AutoHotkey Development
Topic: [Idea] Hashing as built-in function
Replies: 6
Views: 1882

Re: [Idea] Hashing as Buildin function

for unit tests for hashing a file, you can cross check against:

cmd:

Code: Select all

certutil -hashfile FILE_NAME SHA256
powershell:

Code: Select all

Get-FileHash -a sha256 FILE_NAME
would prefer sha256 to be default

Go to advanced search