I've always thought it would be very cool to see how much freely available data on the internet could be mined by an automated, free-roving, intelligent agent. I've tried a few times to get started designing something like that, but I always try and design too large of a system the first time through. That process just causes me to get bored, and makes me want to move on to something else. I need to get into the habit of doing small, fast iterations. It's so hard for me to produce something that falls way short of my ultimate goal. I know I need to look at it like a step on the way to my grand idea, but I can't ever keep that in mind while I'm in the middle of something.
Pandora Desktop Hotkeys Enhanced
I noted an issue with my original Pandora Desktop Hotkey script in that the embedded Flash control in the Pandora Desktop app sometimes has a different "control" name. This change in name would _sometimes_ make the script unable to send keys to the control. Here's an updated script that tries to work around this issue by simply sending keys to either of the possible names for that embedded control. Enjoy! DetectHiddenWindows, On ; Pandora Controls ;Ctrl-Win-Alt-Right Arrow ^#!Right:: IfWinExist, ahk_class ApolloRuntimeContentWindow ControlSend, WebPluginView1, {RIGHT} ; Next ControlSend, WebPluginView2, {RIGHT} ; Next return ;Ctrl-Win-Alt-Up Arrow ^#!Up:: IfWinExist, ahk_class ApolloRuntimeContentWindow ControlSend, WebPluginView1, {UP} ; Volume Up ControlSend, WebPluginView2, {UP} ; Volume Up return ;Ctrl-Win-Alt-Shift-Up Arrow ^#!+Up:: IfWinExist, ahk_class ApolloRuntimeContentWindow ControlSend, WebPluginView1, {SHIFT}{UP} ; Volume Max ControlSend, WebPluginView2, ...
Comments