I am having issues trying to run the next line of a script when using hotkeys.
There are two files.
Main file sample:
Code:
#Persistent
#Include Shared.ahk
SplashTextOn ,,,I expect to see this SplashText
Shared.afk
Code:
LeftMouseClick()
{
IfWinActive Requiem
{
MouseClick , Left
}
}
LAlt & P:: LeftMouseClick()
What I expect it to do is when I run the main file, it will show me the SplashText message. However, it doesn't when I have the "LAlt & P:: LeftMouseClick()" added to the end of Shared.afk. If I comment out that line the SplashText is shown.
