program Blogger; // Login to Blogger.Com { Process events here } procedure OnDocumentComplete(URL : string); begin if IsPartOf('http://www.blogger.com/start', URL) then begin Fill('username', GetParam('blogger_l')); Fill('password', GetParam('blogger_p')); ClickHyperLink('Sign in'); NewbieScriptEnd; end; end; { This is the main program body. } begin Navigate('http://www.blogger.com/start'); end.