Call to display an alert in the Notification section of the player. Your App may have only 1 active notification at a time. Raising a notication while an existing notification is active, will replace the old notification with the new one.

When the user clicks on your App's notification, your App will recieve focus in the player and your App will receive an OnNotificationClick event. Often you will want to remove the notification at this time by calling ClearNotification().

Namespace:  RedCritterV1
Assembly:  RedCritterV1 (in RedCritterV1.dll) Version: 1.0.0.0 (1.0.0.0)

Syntax

      
 C#  Visual Basic 
public void SetNotification(
	string message
)
Public Sub SetNotification ( _
	message As String _
)

Parameters

message
String
The message to appear in the notification. Try to keep it brief, about 20 characters or less is ideal.

See Also