Search found 62 matches

by jsmain
07 Dec 2018, 11:05
Forum: Bug Reports
Topic: Control positioning bug???
Replies: 4
Views: 1915

Re: Control positioning bug???

?????? The second and third lines of my example code, as per the documentation I provided should place the edit box beside the text label, not on top of it. yp means to place it in the same y row, yp+n would place it in another y row. My problem is with the X column. Not signifying an x, it should s...
by jsmain
06 Dec 2018, 13:33
Forum: Bug Reports
Topic: Control positioning bug???
Replies: 4
Views: 1915

Control positioning bug???

So the help documentation states the following.... X: X-position. For example, specifying x0 y0 would position the control in the upper left corner of the window's client area, which is the area beneath the title bar and menu bar (if any). If X is omitted but not Y, the control will be positioned to...
by jsmain
16 Feb 2018, 13:03
Forum: SciTE4AutoHotkey
Topic: Language file query
Replies: 0
Views: 2301

Language file query

Is there a new language file available for AHK v2 yet?
by jsmain
17 Jan 2018, 15:58
Forum: Ask for Help (v1)
Topic: Regex Help
Replies: 2
Views: 820

Re: Regex Help

Thanks! That works too I guess. I was trying to do it all in one query.
by jsmain
17 Jan 2018, 14:32
Forum: Ask for Help (v1)
Topic: Regex Help
Replies: 2
Views: 820

Regex Help

I'm trying to parse a operation summary for files that didn't convert. I can't seem to get all the errors in my regex string. In this example, I am only getting 15 of the 22 errors.... https://regex101.com/r/aH4gab/2 Can someone help me get the remaining errors in the text please? I suspect it is in...
by jsmain
05 Jan 2018, 17:35
Forum: Scripts and Functions (v1)
Topic: Save AHK-Operation: winSend, winClick and more
Replies: 5
Views: 2075

Re: Save AHK-Operation: winSend, winClick and more

@jsmain Thank you very much - very generous and excellent translation indeed! :bravo: :bravo: :bravo: Well Thanks go to you for trying to assist me with my problem. In order for me to understand it, it needed to be converted, so I did the conversion, and so it wouldn't go to waste, I thought I'd pa...
by jsmain
04 Jan 2018, 22:32
Forum: Scripts and Functions (v1)
Topic: Save AHK-Operation: winSend, winClick and more
Replies: 5
Views: 2075

Re: Save AHK-Operation: winSend, winClick and more

Thanks for sharing. To understand, I needed to convert to English, so I thought I'd share the translated code/comments. ; winSend sends the string "Send" to the window "StartWindow". ; "StartWindow" can be qualified by e.g. "myWinTitle,myWinText,myExcludeTitle,myExcludeText" in the "StartWindow" str...
by jsmain
04 Jan 2018, 20:11
Forum: Ask for Help (v1)
Topic: WinWait not always consistent...
Replies: 5
Views: 1589

Re: WinWait not always consistent...

Seems as though I found an acceptable solution.... :superhappy: loop{ ; WinActivate, ahk_pid %PID% ; Click the Start Batch Conversion button ClassNN:Button1 ControlClick, &Start Batch Conversion, ahk_pid %PID%,, L,1,NA ;Batch Convert to Ots WinWait, Really Overwrite Existing Files?,,1 } until ErrorL...
by jsmain
04 Jan 2018, 13:37
Forum: Ask for Help (v1)
Topic: WinWait not always consistent...
Replies: 5
Views: 1589

WinWait not always consistent...

Is it just me, or do others also find that WinWait, WinWaitExist, and WinWaitActive are not always consistent? If I run a loop that starts say notepad, WinWait for it to open, and then open the open dialog, then wait for it to open then close the entire works, 1 of say 100 loops will get stuck with ...
by jsmain
03 Jan 2018, 19:06
Forum: Ask for Help (v1)
Topic: Multiple Windows and dialogs....
Replies: 3
Views: 923

Re: Multiple Windows and dialogs....

OMG! Thank You!

Sorry I haven't been able to respond.... Work, Holiday and such....
Just got back to my project, and this is just what I was looking for! Thank you!
by jsmain
08 Dec 2017, 20:59
Forum: Ask for Help (v1)
Topic: Multiple Windows and dialogs....
Replies: 3
Views: 923

Multiple Windows and dialogs....

Ok, I get how to get the HWND & PID of the main window. If I have multiple instances of an application window open, and open a dialog in each, How do I tie each dialog to it's correct process? For instance, I have 2 instances of VLC open, and each has the Adjustments and Effects dialog open. Again, ...
by jsmain
03 Mar 2017, 11:28
Forum: Ask for Help (v1)
Topic: HTTP requests...
Replies: 3
Views: 5047

Re: HTTP requests...

That worked very well! Thanks!
by jsmain
02 Mar 2017, 08:56
Forum: Ask for Help (v1)
Topic: HTTP requests...
Replies: 3
Views: 5047

Re: HTTP requests...

Thanks! I will give that a try!
by jsmain
01 Mar 2017, 22:37
Forum: Ask for Help (v1)
Topic: HTTP requests...
Replies: 3
Views: 5047

HTTP requests...

I'm trying to control a PTZ camera, and am having difficulty. When using ComObjCreate("WinHttp.WinHttpRequest.5.1"), I'm not receiving the response I get in a browser. When using ComObjCreate("Msxml2.XMLHTTP"), I do, but I seem to only get one shot. I'm trying to use the numpad to control the camera...
by jsmain
20 Sep 2016, 12:00
Forum: Ask for Help (v1)
Topic: Gui, Submit problem
Replies: 2
Views: 1035

Re: Gui, Submit problem

Thanks for that!
A Duh moment I guess!
by jsmain
20 Sep 2016, 11:28
Forum: Ask for Help (v1)
Topic: Gui, Submit problem
Replies: 2
Views: 1035

Gui, Submit problem

Never had issue with this before, but it's been a while since I used it. I'm not sure if its broken (Bug) or my code. I have this example, and it doesn't work as expected. It will not update the IP variable after being changed. I am running version 1.1.24.01 AHK. #SingleInstance, Force Global IP := ...
by jsmain
26 Oct 2015, 15:01
Forum: Ask for Help (v1)
Topic: Closing a Stale browser window?
Replies: 4
Views: 1772

Re: Closing a Stale browser window?

Nevermind, I think I just got it natively in AHK with WinGetText. WinGetText, Var, Time & Attendance: Sign in if var contains closeone.htm WinClose return Although I need to make certain it is closing just that instance of the "Time & Attendance: Sign in" page. Now it just has to pop up again to tes...
by jsmain
26 Oct 2015, 14:50
Forum: Ask for Help (v1)
Topic: Closing a Stale browser window?
Replies: 4
Views: 1772

Re: Closing a Stale browser window?

No familiar with coding any of those. The URL contains "/pages/closeone.htm" but again, I don't have an address bar due to the configuration of the window. I'm trying to use regex and winexist, and close the window, but not having much luck with consistency when using the full URL, and as it isn't i...
by jsmain
23 Oct 2015, 12:46
Forum: Ask for Help (v1)
Topic: Closing a Stale browser window?
Replies: 4
Views: 1772

Re: Closing a Stale browser window?

Nothing?
by jsmain
20 Oct 2015, 08:40
Forum: Ask for Help (v1)
Topic: Closing a Stale browser window?
Replies: 4
Views: 1772

Closing a Stale browser window?

I have a pop up browser window that should close on it's own, but doesn't. It is not my software. The window has the following source... <html> <script language="JavaScript"> //window.opener = "e"; self.close(); </script> </html> There is no navigation bar, just a blank window with a title bar. The ...

Go to advanced search