1。中国人的作品FlashCatcher,我想你是指的这种形式吧~
http://www.justdosoft.com/FlashCatcher/Download.asp
2。可以抓消息试试,ActiveX,看看出口函数
3。鼠标放到图片上弹出对话框方法如下:(不过好像是在Tbs中的)
var
p,p1 : TPoint;
doc : IHTMLDocument2;
e : IHTMLElement;
img : IHTMLImgElement;
begin
doc := WebBrowser1.Document as IHTMLDocument2;
GetCursorPos(p);
p1 := p;
P := WebBrowser1.ScreenToClient(p);
e := doc.elementFromPoint(p.X,p.Y);
if e.tagName = 'IMG' then
begin
bmpSrc := '';
img := e as IHTMLImgElement;
tmp:= UpperCase(img.src);
Delete(tmp,1,Length('file:///'));
while Pos('/',tmp) <> 0 do
ReplaceString(tmp,'/','/');
while Pos('%20',tmp) <> 0 do
ReplaceString(tmp,'%20',' ');
bmpSrc := tmp; //图片文件路径
PopupMenu2.Popup(p1.X,p1.Y);
end;
end;