- ; YouTube Uninterrupted
- ; change youtube url (from firefox) and launch in srware iron (or any other browser)
- ; Last updated: 18/05/2010 4:04:23 PM
- ; ToDo:
- ; Gui for setting alternate browser, show hint (traytip each launch), launch without prompting
- ; Backup exisiting clipboard (?)
- ;
- #Persistent
- #SingleInstance force
- #NoEnv
- ;#NoTrayIcon
- SetWorkingDir, %A_ScriptDir%
- SetTitleMatchMode, 2
- AppName=YouTube Uninterrupted
- TrayIcon=%A_ScriptDir%\youtube.ico
- YouTubeFrom=http://www.youtube.com/v/
- YouTubeTo=http://www.youtube.com/watch?v=
- Browser=SRWare Iron
- BrowserPath=%ProgramFiles%\SRWare Iron\IronPortable.exe
- ShowHint=0 ; by default Off in case the traytip goes crazy.
- ShowHintMenuItem=Show clipboard contents [debug]
- Timeout=10 ;Msgbox timeout (in seconds)
- ;add all browser groups here - comment out the ones that you need
- GroupAdd, Browsers, ahk_class MozillaUIWindowClass
- GroupAdd, Browsers, ahk_class KMeleon Browser Window ; K-Meleon
- GroupAdd, Browsers, ahk_class IEFrame ; Internet Explorer or Maxthon
- ;GroupAdd, Browsers, ahk_class Chrome_WidgetWin_0 ; SRWare Iron
- ;TrayMenu Customisation
- IfExist, %TrayIcon%
- Menu, Tray, Icon, %TrayIcon%
- Menu, Tray, NoStandard
- Menu, Tray, DeleteAll
- Menu, Tray, Add, %ShowHintMenuItem%, NoHint
- Menu, Tray, UnCheck, %ShowHintMenuItem%
- ;Menu, Tray, Default, %ShowHintMenuItem%
- Menu, Tray, Add,
- Menu, Tray, Standard
- EncodeURL:
- IfInString, Clipboard, %YouTubeFrom% ; clipboard contains a youtube url
- {
- StringGetPos, pos, Clipboard, %YouTubeFrom% ; make sure that youtube url is in the beginning
- {
- StringGetPos, StringPos, Clipboard, &
- GoSub, PromptAndRun
- }
- }
- {
- StringGetPos, pos, Clipboard, %YouTubeTo%
- {
- StringGetPos, StringPos, Clipboard, & ;; check 1st if there is an ampersand else just launch the url
- {
- GoSub, PromptAndRun
- }
- {
- StringGetPos, StringPos, Clipboard, `r ; check for CR position
- IfLess, StringPos, 0,
- YouTubeURL=%Clipboard% ; if no CR is found, StringPos will return -1
- GoSub, PromptAndRun ;; PromptAndRun should be a function
- }
- }
- }
- {
- {
- SetTimer, RemoveTrayTip, 5000
- }
- }
- OnClipboardChange:
- IfWinActive ahk_group Browsers ; if one of the above browsers is active..
- {
- GoSub, EncodeURL
- }
- PromptAndRun: ; show a msgbox with a timeout to play the urls
- IfMsgBox, Timeout ; i.e. Assume "Yes" if it timed out.
- {
- Run, %BrowserPath% %YouTubeURL%
- SetTimer, RemoveTrayTip, 5000
- }
- Else IfMsgBox, Yes
- {
- Run, %BrowserPath% %YouTubeURL%
- SetTimer, RemoveTrayTip, 5000
- }
- Else IfMsgBox, No
- Return ; User pressed the "No" button.
- NoHint:
- {
- Menu, Tray, UnCheck, %ShowHintMenuItem%
- ShowHint=0
- }
- {
- Menu, Tray, Check, %ShowHintMenuItem%
- ShowHint=1
- }
- RemoveTrayTip:
- SetTimer, RemoveTrayTip, Off
YouTube Uninterrupted
Posted by Anonymous on Tue 18th May 2010 09:21
raw | new post
Submit a correction or amendment below (click here to make a fresh posting)
After submitting an amendment, you'll be able to view the differences between the old and new posts easily.