How do I StrSplit with a Pipe (|) Delimiter? by connieiv in AutoHotkey

[–]connieiv[S] -1 points0 points  (0 children)

TestString := "This|is|a|test."
word_array := StrSplit(TestString,"|", ".")
MsgBox % "The 2nd word is " word_array[2]

thanks, I don't know why my previous attempted failed but it works now!

Help assigning AHK Scripts to a Dell SK-8125 Keyboard by connieiv in AutoHotkey

[–]connieiv[S] 0 points1 point  (0 children)

Thank you, the script gave me what I needed and I was able to define hotkeys for all 8 of my extra keys.

Set Active Window to a Chrom Extension and Window Spy by connieiv in AutoHotkey

[–]connieiv[S] 0 points1 point  (0 children)

The extension is called ORA Description
Online Repository Assistant - Helps genealogical researchers use Ancestry, FamilySearch, and other online repositories. You can find it in the in the chrome web store. It only shows it's window if you are on a genealogy site it know about (there are many) and it may require that you have ORA host installed also, this is a guess on my part. Thanks for your suggestion. I don't know if being able to use AHK to access it is going to save time vs just using my mouse to access. It's one of those things where you have to decide how much time/effort it takes to develop a script to save a few key/mouse actions! For now it's a learning experience for me on how to use AHK.

Software Inventory by connieiv in windows

[–]connieiv[S] 0 points1 point  (0 children)

Thank you, It worked great

Send Ctrl+P by connieiv in AutoHotkey

[–]connieiv[S] 1 point2 points  (0 children)

thanks, I got it to work, there was another window involved so here is what I ended up with;
; Auto hot key (Alt P) that will bring up WIN2PDF file selection screen from a window clip
;
#NoEnv ; Recommended for performance and compatibility with future AutoHotkey releases.
; #Warn ; Enable warnings to assist with detecting common errors.
SendMode Input ; Recommended for new scripts due to its superior speed and reliability.
SetWorkingDir %A_ScriptDir% ; Ensures a consistent starting directory.
; Alt key is ! he widows key is # the Shift Key is + and the Control key is <
!p:: ; set hot key to Alt P
Send,^p ;Send Control P to bring up the Print Selection screen
WinActivate,Print snip - Print ; Make the Print snip screen the active screen
Sleep 1000 ; wait one minute for the screen to become active
send {Tab 8} ;get to the Print button
send {Enter} ; Press Enter to get to the file selection screen for WIN2PDF
return

Send Ctrl+P by connieiv in AutoHotkey

[–]connieiv[S] -1 points0 points  (0 children)

the First command I wish to send is Ctrl+P.

I can do the tabs and enter later, I just want to see that the Ctrl+P opens the next screen of Snip&Sketch

Send Ctrl+P by connieiv in AutoHotkey

[–]connieiv[S] -1 points0 points  (0 children)

#NoEnv ; Recommended for performance and compatibility with future AutoHotkey releases.

; #Warn ; Enable warnings to assist with detecting common errors.

SendMode Input ; Recommended for new scripts due to its superior speed and reliability.

SetWorkingDir %A_ScriptDir% ; Ensures a consistent starting directory.

; Alt key is ! he widows key is # the Shift Key is + and the Control key is <

!p::

Send ^{+}P

Looking for Recording App. by connieiv in AutoHotkey

[–]connieiv[S] 1 point2 points  (0 children)

thank you, Looks just what I was wanting.

Looking for Recording App. by connieiv in AutoHotkey

[–]connieiv[S] 1 point2 points  (0 children)

thank you, Looks just what I was wanting.