Skip to content

Instantly share code, notes, and snippets.

@tsu-nera
Created January 6, 2013 11:51
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save tsu-nera/4466704 to your computer and use it in GitHub Desktop.
Save tsu-nera/4466704 to your computer and use it in GitHub Desktop.
tweetConsoleを使ってホットキーツイートするスクリプト
Option Explicit
Dim tweetMessage 'つぶやき
Dim tweetCommmand 'Tweet用コマンド
tweetMessage = InputBox("Let's Tweet!!")
tweetCommmand = "C:\temp\TweetConsole\twtcnsl.exe /t " +"'" + tweetMessage +"'"
Dim Shell
Set Shell = CreateObject("WScript.Shell")
Shell.Run tweetCommmand, 0
Set Shell = Nothing
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment