Created
February 17, 2011 03:24
-
-
Save ongaeshi/830905 to your computer and use it in GitHub Desktop.
Windwosで、メッセージをポップアップさせるrubyスクリプト
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
| #! ruby | |
| require 'win32ole' | |
| wsh = WIN32OLE.new('Wscript.Shell') | |
| wsh.Popup(ARGV[0], # メッセージ本体 | |
| 0, # 待機時間 | |
| 'Message Box', # タイトル | |
| 4096) # オプション(メッセージボックスに応答するまですべてのアプリケーションを中断) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
g