As per the comments, this is a vague question and there are a number of possible solutions. It's hard to see what you need exactly but I will try and understand.
One of the outstanding bugs of Umbraco 6 was that the speech bubble would display custom messages but they would be overwritten immediately by Umbraco's own, but you can now do this easily (thanks to my friend Ali for the code source and works for me in v6.1.6).
using System.Web;
using System.Web.UI;
using Umbraco.Core;
using Umbraco.Core.Events;
using Umbraco.Core.Models;
using Umbraco.Core.Services;
using Umbraco.Web.UI;
using Umbraco.Web.UI.Pages;
public class UmbracoEvents : ApplicationEventHandler
{
protected override void ApplicationStarting(UmbracoApplicationBase umbracoApplication, ApplicationContext applicationContext)
{
//Events
ContentService.Created += Content_Created;
ContentService.Saving += Content_Saving;
}
private void Content_Saving(IContentService sender, SaveEventArgs<IContent> e)
{
// 1 JavaScript
HttpContext.Current.Response.Write("<script>alert('Saved!');</script>");
e.Cancel = true;
}
private void Content_Created(IContentService sender, NewEventArgs<IContent> e)
{
// 2 Umbraco speech bubble
var clientTool = new ClientTools((Page)HttpContext.Current.CurrentHandler);
clientTool.ShowSpeechBubble(SpeechBubbleIcon.Success, "Warning", "It is to late to do that!");
}
}