Created
December 1, 2008 10:21
-
-
Save snaka/30703 to your computer and use it in GitHub Desktop.
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
' Growl for windows test script(VBA) | |
Sub growling() | |
Dim growler As Vortex_Growl_Framework.Growl | |
Set growler = New Growl | |
growler.ApplicationName = "Test VBA Script" | |
Dim notify As New Vortex_Growl_Framework.NotificationType | |
notify.Enabled = True | |
notify.Name = "testNotify" | |
Dim notifies(0) As Vortex_Growl_Framework.NotificationType | |
Set notifies(0) = notify | |
growler.Register notifies | |
growler.notify _ | |
notify, _ | |
"Test", _ | |
"This is test. Can you see me?", _ | |
Priority_Normal, _ | |
False | |
End Sub |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment