こんな簡単手抜き方法があります。
#uselib "urlmon.dll"
#func URLDownload "URLDownloadToFileA"int,str,str,int,int
#uselib "wininet.dll"
#func DeleteUrlCacheEntry "DeleteUrlCacheEntryA" str
// 指定URLのキャッシュを削除
DeleteUrlCacheEntry "http://www.google.co.jp/webhp?oe=Shift_JIS&ie=Shift_JIS"
// Googleのトップページを index.htmlというファイル名で保存 (Shift_JIS指定)
URLDownload 0,"http://www.google.co.jp/webhp?oe=Shift_JIS&ie=Shift_JIS","index.html",0,0
exist "index.html"
if strsize!=-1{
notesel buf
noteload "index.html"
mesbox buf,640,480,0
}