Advertisement
Guest User

Untitled

a guest
May 19th, 2017
53
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.37 KB | None | 0 0
  1. #NoEnv ; Recommended for performance and compatibility with future AutoHotkey releases.
  2. SendMode Input ; Recommended for new scripts due to its superior speed and reliability.
  3. SetWorkingDir %A_ScriptDir% ; Ensures a consistent starting directory.
  4.  
  5. Gui, Add, Text, x36 y50 w190 h50 , TH06 ~ The Embodiment of Scarlet Devil
  6. Gui, Add, Button, x236 y60 w100 h30 , Play TH06
  7. Gui, Add, Text, x36 y110 w190 h50 , TH07 ~ Perfect Cherry Blossom
  8. Gui, Add, Text, x36 y170 w190 h50 , TH08 ~ Imperishable Night
  9. Gui, Add, Text, x36 y230 w190 h50 , TH09 ~ Phatasmagoria of Flower View
  10. Gui, Add, Text, x346 y50 w190 h50 , TH09.5 ~ Shoot the Bullet
  11. Gui, Add, Text, x346 y110 w190 h50 , TH10 ~ Mountain of Faith
  12. Gui, Add, Text, x346 y170 w190 h50 , TH11 ~ Subterranean Animism
  13. Gui, Add, Button, x236 y120 w100 h30 , Play TH07
  14. Gui, Add, Button, x236 y180 w100 h30 , Play TH08
  15. Gui, Add, Button, x236 y240 w100 h30 , Play TH09
  16. Gui, Add, Button, x546 y60 w100 h30 , Play TH095
  17. Gui, Add, Button, x546 y120 w100 h30 , Play TH10
  18. Gui, Add, Button, x546 y180 w100 h30 , Play TH11
  19. Gui, Add, Button, x546 y240 w100 h30 , Play TH12
  20. Gui, Add, Text, x346 y230 w190 h50 +Border, TH12 ~ Undefined Fantastic Object
  21. Gui, Add, Button, x296 y300 w100 h30 , Close
  22. ; Generated using SmartGUI Creator 4.0
  23. Gui, Show, x254 y212 h365 w677, Touhou
  24. Return
  25.  
  26. GuiPlayTH06:
  27. RunWait,D:\Touhou\TH06 ~ The Embodiment of Scarlet Devil\kouma\th06e.exe, D:\Touhou\TH06 ~ The Embodiment of Scarlet Devil\kouma
  28. ExitApp
  29.  
  30. GuiPlayTH07:
  31. RunWait,D:\Touhou\TH07 ~ Perfect Cherry Blossom\yym\th07e.exe, D:\Touhou\TH07 ~ Perfect Cherry Blossom\yym
  32. ExitApp
  33.  
  34.  
  35. GuiPlayTH08:
  36. RunWait,D:\Touhou\TH08 ~ Imperishable Night\bbs1\th068.exe, D:\Touhou\TH08 ~ Imperishable Night\bbs1
  37. ExitApp
  38.  
  39.  
  40. GuiPlayTH09:
  41. RunWait,D:\Touhou\TH09 ~ Phantasmagoria of Flower View\kaei\th09e.exe, D:\Touhou\TH09 ~ Phantasmagoria of Flower View\kaei
  42. ExitApp
  43.  
  44.  
  45. GuiPlayTH095:
  46. RunWait,D:\Touhou\TH09.5 ~ Shoot the Bullet\bunka\th095e.exe, D:\Touhou\TH09.5 ~ Shoot the Bullet\bunka
  47. ExitApp
  48.  
  49. GuiPlayTH10:
  50. RunWait,D:\Touhou\TH10 ~ Mountain of Faith\th10e.exe, D:\Touhou\TH10 ~ Mountain of Faith
  51. ExitApp
  52.  
  53. GuiPlayTH11:
  54. RunWait,D:\Touhou\TH11 ~ Subterranean Animism\th11e.exe, D:\Touhou\TH11 ~ Subterranean Animism
  55. ExitApp
  56.  
  57. GuiPlayTH12:
  58. RunWait,D:\Touhou\TH12 ~ Undefined Fantastic Object\th12e.exe, D:\Touhou\TH12 ~ Undefined Fantastic Object
  59. ExitApp
  60.  
  61. GuiClose:
  62. ExitApp
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement