Skip to content

Instantly share code, notes, and snippets.

@snaka
Created December 1, 2008 10:21
Show Gist options
  • Save snaka/30703 to your computer and use it in GitHub Desktop.
Save snaka/30703 to your computer and use it in GitHub Desktop.
' 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