Advertisement
tabnation

Auto S deck 1.3

Mar 25th, 2022
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.88 KB | None | 0 0
  1.  
  2. ;===================================================
  3. ; GUI and Settings
  4. ;===================================================
  5. f1::
  6. settitlematchmode, 2
  7. CoordMode, Mouse, Screen
  8.  
  9. Gui, Destroy
  10. Gui, Color, White
  11.  
  12. Gui, Add, Button, x12 y9 w90 h90 gGoodMorning, All Tabs
  13.  
  14. Gui, Add, Button, x122 y9 w90 h90 gRemoteSub, Remote
  15. Gui, Add, Picture, x62 y129 w110 h100 vBremote1 gLast Hidden, C:\Users\Thom\Desktop\Auto S Deck\pictures\last.png
  16. Gui, Add, Picture, x192 y129 w100 h100 vBremote2 gPause Hidden, C:\Users\Thom\Desktop\Auto S Deck\pictures\pause.png
  17. Gui, Add, Picture, x312 y129 w110 h100 vBremote3 gPlay Hidden, C:\Users\Thom\Desktop\Auto S Deck\pictures\play.png
  18. Gui, Add, Picture, x442 y129 w110 h100 vBremote4 gNext Hidden, C:\Users\Thom\Desktop\Auto S Deck\pictures\next.png
  19. Gui, Add, Picture, x62 y279 w110 h80 vBremote5 gMute Hidden, C:\Users\Thom\Desktop\Auto S Deck\pictures\mute.png
  20. Gui, Add, Picture, x192 y279 w100 h80 vBremote6 gVolDown Hidden, C:\Users\Thom\Desktop\Auto S Deck\pictures\vol down.png
  21. Gui, Add, Picture, x312 y279 w100 h80 vBremote7 gVolUp Hidden, C:\Users\Thom\Desktop\Auto S Deck\pictures\vol up.png
  22. Gui, Add, Picture, x712 y129 w60 h60 vBremote8 gPandora Hidden, C:\Users\Thom\Desktop\Auto S Deck\pictures\pandora.jpg
  23. Gui, Add, Picture, x622 y119 w80 h80 vBremote9 gYT Hidden, C:\Users\Thom\Desktop\Auto S Deck\pictures\yt.png
  24.  
  25. Gui, Show, x2688 y0 w1023 h700, Auto S Deck
  26.  
  27. Return
  28.  
  29.  
  30. GoodMorning:
  31. run, www.youtube.com
  32. sleep 1000
  33. run, www.reddit.com
  34. sleep 1000
  35. run, www.discord.com
  36. sleep 1000
  37. run, www.facebook.com
  38. sleep 1000
  39. run, www.beech.org/webmail
  40. sleep 1000
  41. run, https://mail.google.com/mail/u/0/?tab=rm&ogbl#inbox
  42. Return
  43.  
  44.  
  45. RemoteSub:
  46. if !( Hidden1)
  47. { ; if results are false, 0 or blank...
  48. GuiControl, Show, Bremote1
  49. GuiControl, Show, Bremote2
  50. GuiControl, Show, Bremote3
  51. GuiControl, Show, Bremote4
  52. GuiControl, Show, Bremote5
  53. GuiControl, Show, Bremote6
  54. GuiControl, Show, Bremote7
  55. GuiControl, Show, Bremote8
  56. GuiControl, Show, Bremote9
  57. Hidden1 = 1
  58. }
  59. else
  60. {
  61. GuiControl, Hide, Bremote1
  62. GuiControl, Hide, Bremote2
  63. GuiControl, Hide, Bremote3
  64. GuiControl, Hide, Bremote4
  65. GuiControl, Hide, Bremote5
  66. GuiControl, Hide, Bremote6
  67. GuiControl, Hide, Bremote7
  68. GuiControl, Hide, Bremote8
  69. GuiControl, Hide, Bremote9
  70. Hidden1 = 0
  71. }
  72. Return
  73.  
  74.  
  75. Last:
  76. #IfWinExist ahk_class Youtube
  77. Send, {Media_PREV}
  78. #IfWinExist
  79.  
  80. Return
  81.  
  82. Pause:
  83. #IfWinExist ahk_class Youtube
  84. Send, {Media_Play_Pause}
  85. #IfWinExist
  86.  
  87. Return
  88.  
  89. Play:
  90. #IfWinExist ahk_class Youtube
  91. Send, {Media_Play_Pause}
  92. #IfWinExist
  93.  
  94. Return
  95.  
  96. Mute:
  97. #IfWinExist ahk_class Youtube
  98. Send {VOLUME_MUTE}
  99. #IfWinExist
  100.  
  101. Return
  102.  
  103. Next:
  104. #IfWinExist ahk_class Youtube
  105. Send, {Media_Next}
  106. #IfWinExist
  107.  
  108. Return
  109.  
  110. VolUp:
  111. SoundSet, +5
  112. Return
  113.  
  114. VolDown:
  115. SoundSet, -5
  116. Return
  117.  
  118. Pandora:
  119. Run, https://www.pandora.com/station
  120. Return
  121.  
  122. YT:
  123. Run, www.youtube.com
  124. Return
  125.  
  126.  
  127.  
  128.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement