pastebin - collaborative debugging tool
kpaste.net RSS


YouTube Uninterrupted
Posted by Anonymous on Tue 18th May 2010 09:21
raw | new post

  1. ; YouTube Uninterrupted
  2. ; change youtube url (from firefox) and launch in srware iron (or any other browser)
  3. ; Last updated: 18/05/2010 4:04:23 PM
  4. ; ToDo:
  5. ; Gui for setting alternate browser, show hint (traytip each launch), launch without prompting
  6. ; Backup exisiting clipboard (?)
  7. ;
  8. #Persistent
  9. #SingleInstance force
  10. #NoEnv
  11. ;#NoTrayIcon
  12. SetWorkingDir, %A_ScriptDir%
  13. SetTitleMatchMode, 2
  14.  
  15. AppName=YouTube Uninterrupted
  16. TrayIcon=%A_ScriptDir%\youtube.ico
  17. YouTubeFrom=http://www.youtube.com/v/
  18. YouTubeTo=http://www.youtube.com/watch?v=
  19. Browser=SRWare Iron
  20. BrowserPath=%ProgramFiles%\SRWare Iron\IronPortable.exe
  21. ShowHint=0  ; by default Off in case the traytip goes crazy.
  22. ShowHintMenuItem=Show clipboard contents [debug]
  23. Timeout=10  ;Msgbox timeout (in seconds)
  24.  
  25.  
  26. ;add all browser groups here - comment out the ones that you need
  27. GroupAdd, Browsers, ahk_class MozillaUIWindowClass
  28. GroupAdd, Browsers, ahk_class KMeleon Browser Window  ; K-Meleon
  29. GroupAdd, Browsers, ahk_class IEFrame  ; Internet Explorer or Maxthon
  30. ;GroupAdd, Browsers, ahk_class Chrome_WidgetWin_0   ;   SRWare Iron
  31.  
  32. ;TrayMenu Customisation
  33. IfExist, %TrayIcon%
  34.   Menu, Tray, Icon, %TrayIcon%
  35. Menu, Tray, Tip, Open YouTube links in %Browser%.
  36. Menu, Tray, NoStandard
  37. Menu, Tray, DeleteAll
  38. Menu, Tray, Add, Open YouTube links in %Browser%, EncodeURL
  39. Menu, Tray, Default, Open YouTube links in %Browser%
  40. Menu, Tray, Add, %ShowHintMenuItem%, NoHint
  41. Menu, Tray, UnCheck, %ShowHintMenuItem%
  42. ;Menu, Tray, Default, %ShowHintMenuItem%
  43. Menu, Tray, Add,
  44. Menu, Tray, Standard
  45.  
  46. EncodeURL:
  47. IfInString, Clipboard, %YouTubeFrom%  ; clipboard contains a youtube url
  48. {
  49.   StringGetPos, pos, Clipboard, %YouTubeFrom%  ; make sure that youtube url is in the beginning
  50.   If pos = 0
  51.   {
  52.     StringReplace, Clipboard, Clipboard, %YouTubeFrom%, %YouTubeTo%, All
  53.     StringGetPos, StringPos, Clipboard, &
  54.     StringLeft, YouTubeURL, Clipboard, %StringPos%
  55.     GoSub, PromptAndRun
  56.   }
  57.   Else
  58.     Return
  59. }
  60. Else IfInString, Clipboard, %YouTubeTo%  ; clipboard contains a youtube url
  61. {
  62.   StringGetPos, pos, Clipboard, %YouTubeTo%
  63.   If pos = 0
  64.   {
  65.     StringGetPos, StringPos, Clipboard, &   ;; check 1st if there is an ampersand else just launch the url
  66.     If StringPos >= 0
  67.     {
  68.       StringLeft, YouTubeURL, Clipboard, %StringPos%
  69.       GoSub, PromptAndRun
  70.     }
  71.     Else If StringPos < 0 ; no ampersand so just make sure there's no CR
  72.     {
  73.       StringGetPos, StringPos, Clipboard, `r            ; check for CR position      
  74.       IfLess, StringPos, 0,
  75.         YouTubeURL=%Clipboard%      ; if no CR is found, StringPos will return -1
  76.       Else
  77.         StringLeft, YouTubeURL, Clipboard, %StringPos%  ; start from left until CR position
  78.       GoSub, PromptAndRun   ;; PromptAndRun should be a function
  79.     }
  80.   }
  81.   Else
  82.     Return
  83. }
  84. {
  85.   If ShowHint=1
  86.   {
  87.   TrayTip,%AppName%,%Clipboard%,,1
  88.   SetTimer, RemoveTrayTip, 5000
  89.   }
  90. }
  91.  
  92. OnClipboardChange:
  93. IfWinActive ahk_group Browsers  ; if one of the above browsers is active..
  94.   {
  95.   GoSub, EncodeURL
  96.   }
  97.  
  98. PromptAndRun: ; show a msgbox with a timeout to play the urls
  99.     MsgBox, 36, %AppName%, Would you like to open this url: %YouTubeURL% in %Browser%?, %Timeout%  ; 10-second timeout.
  100.     IfMsgBox, Timeout  ; i.e. Assume "Yes" if it timed out.
  101.     {
  102.       Run, %BrowserPath% %YouTubeURL%
  103.       TrayTip,%AppName%,Launching %YouTubeURL%,,1
  104.       SetTimer, RemoveTrayTip, 5000
  105.     }
  106.     Else IfMsgBox, Yes
  107.     {
  108.       Run, %BrowserPath% %YouTubeURL%
  109.       TrayTip,%AppName%,Launching %YouTubeURL%,,1
  110.       SetTimer, RemoveTrayTip, 5000
  111.     }
  112.     Else IfMsgBox, No
  113.       Return  ; User pressed the "No" button.
  114.     Return
  115.  
  116. NoHint:
  117. If ShowHint=1
  118. {
  119.   Menu, Tray, UnCheck, %ShowHintMenuItem%
  120.   ShowHint=0
  121. }
  122. {
  123.   Menu, Tray, Check, %ShowHintMenuItem%
  124.   ShowHint=1
  125. }
  126.  
  127. RemoveTrayTip:
  128. SetTimer, RemoveTrayTip, Off

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.

Syntax highlighting:

To highlight particular lines, prefix each line with {%HIGHLIGHT}




All content is user-submitted.
The administrators of this site (kpaste.net) are not responsible for their content.
Abuse reports should be emailed to us at