Search found 140 matches

by Visioneer
01 Nov 2020, 10:34
Forum: Ask for Help (v1)
Topic: Restart ahk
Replies: 1
Views: 280

Restart ahk

Hi, Sometimes many of my hotkeys stop working. Rather than figure out why right now, I want to quit ahk, and restart it via a hotkey, ^r I guess I need the correct #SingleInstance setting also, I have tried many things. It is for a compiled app. I have tried another exe FileInstall, zzlrunA.exe, zzl...
by Visioneer
01 Nov 2020, 10:14
Forum: Ask for Help (v1)
Topic: New Microsoft Edge Title regex to Remove trailing junk.
Replies: 19
Views: 1289

Re: New Microsoft Edge Title regex to Remove trailing junk.

Thanks boiler.

I guess the Title is different just based of the Windows version.
by Visioneer
27 Oct 2020, 12:42
Forum: Ask for Help (v1)
Topic: New Microsoft Edge Title regex to Remove trailing junk.
Replies: 19
Views: 1289

Re: New Microsoft Edge Title regex to Remove trailing junk.

Does your new Edge do Translating and Speaking ?
by Visioneer
27 Oct 2020, 10:32
Forum: Ask for Help (v1)
Topic: New Microsoft Edge Title regex to Remove trailing junk.
Replies: 19
Views: 1289

Re: New Microsoft Edge Title regex to Remove trailing junk.

Box Editor - 800covid2020.org - emailtomail.com and 1 more page - Profile 1 - Microsoft? Edge ahk_class Chrome_WidgetWin_1 Editing US10014 - and 2 more pages - Profile 1 - Microsoft? Edge ahk_class Chrome_WidgetWin_1 Again, Does mine (2 regexes) remove the Personal.* from your Edge.? What are the v...
by Visioneer
27 Oct 2020, 09:48
Forum: Ask for Help (v1)
Topic: New Microsoft Edge Title regex to Remove trailing junk.
Replies: 19
Views: 1289

Re: New Microsoft Edge Title regex to Remove trailing junk.

You wrote: myTitle := "AutoHotkey - and 1 more page - Microsoft​ Edge" modTitle := RegExReplace(myTitle, " - (and \d+ more pages?|Profile 1) - Microsoft.+Edge") MsgBox, % modTitle I do not have your Edge, so I can't know for sure, but "Profile 1" seems different than "Personal" you mentioned. Also I...
by Visioneer
26 Oct 2020, 18:27
Forum: Ask for Help (v1)
Topic: New Microsoft Edge Title regex to Remove trailing junk.
Replies: 19
Views: 1289

Re: New Microsoft Edge Title regex to Remove trailing junk.

Hi boiler, I read many do switch from the old Edge to the New Edge. Do checkout my Help page which has details to turn on ToolTips etc. The Translating and Speaking is cool. IMHO. It really does load much quicker than Chrome. Another program (ahk) I'm giving away for our Covid-19 program, lets you s...
by Visioneer
24 Oct 2020, 17:47
Forum: Ask for Help (v1)
Topic: New Microsoft Edge Title regex to Remove trailing junk.
Replies: 19
Views: 1289

Re: New Microsoft Edge Title regex to Remove trailing junk.

This worked for both. Thanks a lot. I actually use LinkDesc instead of myTitle which I used for edification. RegExmatch(LinkDesc, ".*(?= and.\d+.more.page.*)", myL) if !myL RegExmatch(LinkDesc, ".*(?= - Personal.*Microsoft.+Edge)", LinkDesc) else LinkDesc = %myL% myL = Glad I got you, as I had no kn...
by Visioneer
24 Oct 2020, 15:28
Forum: Ask for Help (v1)
Topic: New Microsoft Edge Title regex to Remove trailing junk.
Replies: 19
Views: 1289

Re: New Microsoft Edge Title regex to Remove trailing junk.

Yes. For my New Microsoft Edge on W7, I get things like: and 1 more page - Profile 1 - Microsoft​ Edge and 5 more pages - Profile 1 - Microsoft​ Edge added on to the actual Title. I swear. What I don't get is how you are getting Personal.*Microsoft.* I never get Personal. What Edge & what Windows ar...
by Visioneer
24 Oct 2020, 14:25
Forum: Ask for Help (v1)
Topic: New Microsoft Edge Title regex to Remove trailing junk.
Replies: 19
Views: 1289

Re: New Microsoft Edge Title regex to Remove trailing junk.

Hi boiler, Sure I ran them both, I said Great Start up a bit. No contains of course. Another approach. If myTitle and the regex how? Also, are you saying that your New Microsoft Edge only has "Personal" in the Title? Mine has all the other stuff. Can you show a regex incorporating both possibilities...
by Visioneer
24 Oct 2020, 13:46
Forum: Ask for Help (v1)
Topic: New Microsoft Edge Title regex to Remove trailing junk.
Replies: 19
Views: 1289

Re: New Microsoft Edge Title regex to Remove trailing junk.

might need

and /d more pages .*
and have a [|] to include if just "Personal" is a New Edge thing.?

How to use the regexmatch for the contains thing?
by Visioneer
24 Oct 2020, 13:22
Forum: Ask for Help (v1)
Topic: New Microsoft Edge Title regex to Remove trailing junk.
Replies: 19
Views: 1289

Re: New Microsoft Edge Title regex to Remove trailing junk.

Thanks boiler, Great start. I still get the and 1 more page - Profile 1 or and 5 more pages - Profile 1 or and 2 more pages - Profile 1 So you have removed the" - Microsoft Edge" part. Also, I still need the "contains" replacement. Edit: Did not see the "or" second part. I don't know if "Personal" i...
by Visioneer
24 Oct 2020, 12:50
Forum: Ask for Help (v1)
Topic: New Microsoft Edge Title regex to Remove trailing junk.
Replies: 19
Views: 1289

New Microsoft Edge Title regex to Remove trailing junk.

Hi, Using WinGetActiveTitle, myTitle when a webpage is displayed in the New Microsoft Edge Browser, it shows a lot of extra junk, which may not be wanted. Try the Active Window Info utility also. For example: and 1 more page - Profile 1 - Microsoft​ Edge Also the "Microsoft Edge" part is devious, Co...
by Visioneer
01 Sep 2020, 23:31
Forum: Ask for Help (v1)
Topic: Fastest way to Pwb Process many records, and avoid "allow blocked content" popup.
Replies: 0
Views: 188

Fastest way to Pwb Process many records, and avoid "allow blocked content" popup.

Hi I need to Loop through thousands of records with send keys and shortest waits possible, using COM or whatever is fastest. It could take much longer if not very FAST. I am using W7 or W8.1 ahk Version v1.1.24.00 The yellow popup for "allow blocked content" ruins this of course. I can put in the Ch...
by Visioneer
31 Jul 2020, 15:42
Forum: Ask for Help (v1)
Topic: Display Longest Lines Length and Content of ReadFile variable Topic is solved
Replies: 3
Views: 1367

Re: Display Longest Lines Length and Content of ReadFile variable Topic is solved

Hi Thanks Bobo, Thanks works great. Saved me a lot of time updating some stragglers in an 850,000+ txt file. It helped me add a new class of situation to auto-edit Postal Codes. Then I'll run it again until I have them all. Thanks a lot Thanks ahk7, I reviewed that link. It was helpful too. I never ...
by Visioneer
30 Jul 2020, 14:02
Forum: Ask for Help (v1)
Topic: Display Longest Lines Length and Content of ReadFile variable Topic is solved
Replies: 3
Views: 1367

Display Longest Lines Length and Content of ReadFile variable Topic is solved

Hi, I have a very long txt file to be imported into a database, and I need to define the longest possible field, VarChar(??) I would like to Loop, Parse the var myF to get and MsgBox the longest number and content of longest line. So far I have this. Sadly, I have forgotten how to Parse with increme...
by Visioneer
04 Jul 2020, 16:37
Forum: Off-topic Discussion
Topic: jeeswg's homepage
Replies: 20
Views: 50722

Re: jeeswg's homepage

Hi jeeswg, I tried to send you a PM but it said you were not authorized to be added.? I hope you are well. Anyway, here goes. Hi jeeswg, How are you doing with all this crap? I am doing a Covid-19 response. Maybe I could use your help. I noticed you were researching Databases. I have tried several, ...
by Visioneer
21 May 2020, 22:11
Forum: Ask for Help (v1)
Topic: Possible to re-open all windows & programs?
Replies: 7
Views: 1213

Re: Possible to re-open all windows & programs?

Interesting idea poetbox, but so radical, it might compromise the so, so many things I am doing. I know nothing about VM etc. anyway. Got any links to learn your suggestions? I am using new Edge a lot lately, on W7 LOL. Works great. Can that get restored, or 10 notepad txt files opened, or 6+ PSPad ...
by Visioneer
11 May 2020, 14:10
Forum: Ask for Help (v1)
Topic: Possible to re-open all windows & programs?
Replies: 7
Views: 1213

Re: Possible to re-open all windows & programs?

There are many reasons for old PC's to shutdown My PC sleeps after about 30 min no activity all day long. I only "reboot", "shutdown", when I have to. Often I just have too many things running. It could be a lot of reasons. Usually it is a freeze. Not often, maybe once a week. A real pain when it do...
by Visioneer
11 May 2020, 04:26
Forum: Ask for Help (v1)
Topic: Possible to re-open all windows & programs?
Replies: 7
Views: 1213

Possible to re-open all windows & programs?

Hi, The Mac is loved for being able to re-open windows & programs on reboot. I know that this can be somewhat accomplished with windows settings, but it will then always do it on re-boot, which could be annoying to some. So, I was wondering if it would be possible for AHK to do this, but not on re-b...
by Visioneer
12 Apr 2020, 11:45
Forum: Ask for Help (v1)
Topic: New Edge msedge.exe browser parameters - Covid-19 help wanted
Replies: 0
Views: 1882

New Edge msedge.exe browser parameters - Covid-19 help wanted

Hi, I guess it is time to discuss the new MS Edge msedge.exe browser. Since it kills COM I hate it anyway, but I do want to include hotkey support for it, along with IE, Chrome, Firefox of course. I just downloaded it on Windows 7 and Windows 8.1 and it works so far. I do not have Windows 10 yet. I ...

Go to advanced search