Search found 112 matches

by RDC
14 Oct 2023, 15:56
Forum: Ask for Help (v1)
Topic: RegExReplace Help?
Replies: 2
Views: 209

Re: RegExReplace Help?

Wow, thank you flyingDman for the quick reply!! I was just getting back in here to edit my post that I found the solution... TempText := RegExReplace(TempText, "\R(?=\R{2,})") I need to go read some docs about variables so I can get a better grasp of what I'm following. I see some resemblance betwee...
by RDC
14 Oct 2023, 15:25
Forum: Ask for Help (v1)
Topic: RegExReplace Help?
Replies: 2
Views: 209

RegExReplace Help?

Hello. I am attempting unsuccessfully to use RegExReplace to remove extra return lines. For example, I want the below... The quick brown fox jumps over the lazy dog The quick brown fox jumps over the lazy dog The quick brown fox jumps over the lazy dog The quick brown fox jumps over the lazy dog The...
by RDC
30 Jun 2023, 22:22
Forum: Gaming Help (v1)
Topic: Gui with Scroll
Replies: 5
Views: 742

Re: Gui with Scroll

I haven't had a chance to work with this yet, but it's in my list and may be what you are looking for.
viewtopic.php?t=55254#p237412

image.png
image.png (4.26 KiB) Viewed 669 times
by RDC
28 Jun 2023, 08:29
Forum: Ask for Help (v1)
Topic: Crop bitmap and export as Base64 string? ( Create Icons ) Topic is solved
Replies: 26
Views: 5575

Re: Crop bitmap and export as Base64 string? ( Create Icons ) Topic is solved

@Hellbent, many many thanks for the examples. Immensely helpful to me and I imagine all other lesser skilled coders.
Most likely even those deemed as gurus on here. I will be picking at this for awhile trying to learn what does what. Brilliant work!!
by RDC
26 Jun 2023, 07:54
Forum: Ask for Help (v1)
Topic: Crop bitmap and export as Base64 string? ( Create Icons ) Topic is solved
Replies: 26
Views: 5575

Re: Crop bitmap and export as Base64 string? ( Create Icons ) Topic is solved

You should be able to just replace the gdip lib I am using with the path to your copy of the gdip lib. There is no difference besides the name I gave the file. Use your full path ( #Include C\\...\gdip.ahk ). Thank you. I should have tried that first before asking. But at least now I get to see you...
by RDC
25 Jun 2023, 06:25
Forum: Ask for Help (v1)
Topic: Crop bitmap and export as Base64 string? ( Create Icons ) Topic is solved
Replies: 26
Views: 5575

Re: Crop bitmap and export as Base64 string? ( Create Icons ) Topic is solved

Wow, this looks really nice. Anyone know where to get the "My Altered GDIP lib" from?
I have Gdip.ahk and Gdip_All.ahk and neither seem to work with this. :(
by RDC
26 May 2023, 16:56
Forum: Ask for Help (v1)
Topic: I want to move the pop-up window to the right bottom of the corner
Replies: 8
Views: 918

Re: I want to move the pop-up window to the right bottom of the corner

Just use the search bar for "positions"...
There are many posts on this and most appear to apply to Guis.
search.php?keywords=positions&fid%5B0%5D=76
by RDC
26 May 2023, 08:01
Forum: Ask for Help (v1)
Topic: Timer
Replies: 6
Views: 511

Re: Timer

I guess I misunderstood your original request. I wasn't aware the tray could be closed, only hidden along with the entire taskbar.
by RDC
25 May 2023, 15:16
Forum: Ask for Help (v1)
Topic: Timer
Replies: 6
Views: 511

Re: Timer

Maybe check to see if you are running a most recent save?
This works for me exactly as posted.
by RDC
24 May 2023, 14:43
Forum: Ask for Help (v1)
Topic: I want to move the pop-up window to the right bottom of the corner
Replies: 8
Views: 918

Re: I want to move the pop-up window to the right bottom of the corner

I do wonder though if one can avoid/get rid of the visual effect of the window being moved from center to the right bottom corner? It's like a very quick flash that shows up on screen. I just want it to open in that position like it naturally opens there. The Gui Hide option fixes that. Then just h...
by RDC
23 May 2023, 07:08
Forum: Ask for Help (v1)
Topic: Right Click Remap
Replies: 4
Views: 355

Re: Right Click Remap

Some of us just do not have coding background and do not comprehend. Keep at it fasteddie , I've been a member of this site for a few months now and am just getting to where at least some of the documentation makes sense. It's almost like being told to read a book written in Chinese when you've had...
by RDC
21 May 2023, 12:00
Forum: Ask for Help (v1)
Topic: I want to move the pop-up window to the right bottom of the corner
Replies: 8
Views: 918

Re: I want to move the pop-up window to the right bottom of the corner

This should do the trick... #NoEnv #SingleInstance force #Persistent ; Version 3.1 ; Grab active window WinGetActiveTitle, activeWinTitle ; Create popup-window Gui, +AlwaysOnTop Gui, Add, Text, x18 y7 w200 h20, ID: Gui, Add, Edit, vID x18 y30 w190 h20 Gui, Add, Button, x20 y630 w90 h30 gCopy, Copy G...
by RDC
18 May 2023, 08:04
Forum: Ask for Help (v1)
Topic: Display MsgBox when certain website is opened
Replies: 4
Views: 509

Re: Display MsgBox when certain website is opened

Many thanks garry , I had gotten assistance already from flyingDman in another thread. It's pretty sleek too. And thanks for adding the ExitApp. I usually don't worry about adding that in the forums simply because my exit routine is a bit lengthy. Full script with flyingDman's input... /* Refresh Sc...
by RDC
17 May 2023, 18:06
Forum: Ask for Help (v1)
Topic: How do I reset script?
Replies: 3
Views: 436

Re: How do I reset script?

flyingDman , all I can say is wow and thanks!! Your code is much cleaner and easier to understand, and more importantly it works! You resolved all my prior issues. You wouldn't know if that can be altered so that it only gives the notice once until no more instances are detected would you? What I m...
by RDC
17 May 2023, 08:05
Forum: Ask for Help (v1)
Topic: How do I reset script?
Replies: 3
Views: 436

How do I reset script?

Can anyone help edit the below code to reset once YouTube is detected? It simply monitors YouTube opening. Once it does it notifies with a beep/message box. It does this part just fine. What I would like is for the script to not only detect when YouTube is open and notify, but to also reset and noti...
by RDC
16 May 2023, 17:35
Forum: Ask for Help (v1)
Topic: Display MsgBox when certain website is opened
Replies: 4
Views: 509

Re: Activate hotkeys in specific web page

Something like this? Far from refined, but should get you going. #Persistent #SingleInstance, Force SetTimer, YouTubeCheck, 500 ; Set in milliseconds 1stRun := true ; Variable to track the first run Return YouTubeCheck: if (1stRun) ; Check if it's the 1st run. { if WinExist("ahk_exe firefox.exe") ; ...
by RDC
16 May 2023, 08:20
Forum: Ask for Help (v1)
Topic: Number::Numpad::Number? Can this work?
Replies: 3
Views: 428

Re: Number::Numpad::Number? Can this work?

Thank you guys!! I suspected as much but never it hurts to ask those that actually know.
by RDC
16 May 2023, 08:04
Forum: Ask for Help (v1)
Topic: Number::Numpad::Number? Can this work?
Replies: 3
Views: 428

Number::Numpad::Number? Can this work?

Quick question...can numpad keys be tied to the basic number keys so that regardless of pressing something like Numpad1 or just the number 1 is treated exactly the same? Something like below...? And if so, would doing so interfere with other scripts that would also use specific numpad or number keys...
by RDC
15 May 2023, 08:17
Forum: Off-topic Discussion
Topic: Share your AHK Templates...
Replies: 1
Views: 2700

Share your AHK Templates...

I am hoping others may share their AHK Templates to help us noobs. The below is what I see every time I create a new script. I realize it is beyond bloated, but has a bunch of stuff that aids me so I don't have to keep looking things up in documentation. Although I'm at a point where I'm actually st...

Go to advanced search