Advertisement
TheFlashes

Le lennyface copy tool

Feb 14th, 2017
779
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
AutoIt 1.67 KB | None | 0 0
  1. #NoTrayIcon
  2. #include <AutoItConstants.au3>
  3. #include <MsgBoxConstants.au3>
  4. #include <TrayConstants.au3>
  5.  
  6. Opt("TrayMenuMode", 3)
  7. lenny()
  8.  
  9. Func lenny()
  10.    Local $o1 = TrayCreateItem("( ͡° ͜ʖ ͡°)")
  11.    Local $o2 = TrayCreateItem("( ͡° ʖ̯ ͡°)")
  12.    Local $o3 = TrayCreateItem("( ͡º ͜ʖ͡º)")
  13.    Local $o4 = TrayCreateItem("( ͡$ ͜ʖ ͡$)")
  14.    Local $o5 = TrayCreateItem("( ͡° ͜ʖ ͡°)ノ⌐■-■")
  15.    Local $o6 = TrayCreateItem("(⌐ ͡■ ͜ʖ ͡■)")
  16.    Local $o7 = TrayCreateItem("¯\_ツ_/¯")
  17.    Local $o8 = TrayCreateItem("ಠ_ಠ")
  18.    Local $o9 = TrayCreateItem("(╥﹏╥)")
  19.    Local $o10 = TrayCreateItem("( ͡°( ͡° ͜ʖ( ͡° ͜ʖ ͡°)ʖ ͡°) ͡°)")
  20.  
  21.    TrayCreateItem("")
  22.    Local $idAbout = TrayCreateItem("About")
  23.    TrayCreateItem("")
  24.    Local $idExit = TrayCreateItem("Exit")
  25.  
  26.    TraySetState($TRAY_ICONSTATE_SHOW)
  27.    TrayTip("Hey, i'm here!", "Right click at me to copy lenny ( ͡º ͜ʖ͡º)", 3, $TIP_NOSOUND)
  28.  
  29.    While 1
  30.        Switch TrayGetMsg()
  31.          Case $idAbout
  32.             MsgBox($MB_ICONINFORMATION, "Lennyface", "Le lennyface copy tool." & @CRLF & @CRLF & "By TheFlashes ( ͡° ͜ʖ ͡°)")
  33.          Case $o1
  34.             ClipPut("( ͡° ͜ʖ ͡°)")
  35.          Case $o2
  36.             ClipPut("( ͡° ʖ̯ ͡°)")
  37.          Case $o3
  38.             ClipPut("( ͡º ͜ʖ͡º)")
  39.          Case $o4
  40.             ClipPut("( ͡$ ͜ʖ ͡$)")
  41.          Case $o5
  42.             ClipPut("( ͡° ͜ʖ ͡°)ノ⌐■-■")
  43.          Case $o6
  44.             ClipPut("(⌐ ͡■ ͜ʖ ͡■)")
  45.          Case $o7
  46.             ClipPut("¯\_ツ_/¯")
  47.          Case $o8
  48.             ClipPut("ಠ_ಠ")
  49.          Case $o9
  50.             ClipPut("(╥﹏╥)")
  51.          Case $o10
  52.             ClipPut("( ͡°( ͡° ͜ʖ( ͡° ͜ʖ ͡°)ʖ ͡°) ͡°)")
  53.          Case $idExit
  54.             ExitLoop
  55.       EndSwitch
  56.    WEnd
  57. EndFunc
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement