Created
January 6, 2013 11:51
-
-
Save tsu-nera/4466704 to your computer and use it in GitHub Desktop.
tweetConsoleを使ってホットキーツイートするスクリプト
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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