|
今天拜读了'高级脚本开发'那一章中的flex,特地安装了LR9.5来录制书中所举的例子,选择协议Web(HTTP/HTML)、Flex和AMF,
但录制出来的脚本与书中列出来的相差很远:
脚本如下:
......
web_concurrent_start(NULL);
web_url("img1.jpg",
"URL=http://www.viaggiatreno.it/viaggiatreno/images/treni/img1.jpg",
"TargetFrame=",
"Resource=1",
"RecContentType=image/jpeg",
"Referer=http://www.viaggiatreno.it/viaggiatreno/app.mxml.swf",
"Snapshot=t14.inf",
LAST);
web_url("img2.jpg",
"URL=http://www.viaggiatreno.it/viaggiatreno/images/treni/img2.jpg",
"TargetFrame=",
"Resource=1",
"RecContentType=image/jpeg",
"Referer=http://www.viaggiatreno.it/viaggiatreno/app.mxml.swf",
"Snapshot=t15.inf",
LAST);
web_concurrent_end(NULL);
......
疑问:
1.为什么不生成flex_amf_call函数,而是web_url
2.web_concurrent_start(NULL);和web_concurrent_end(NULL);是什么意思,为什么是空的?
希望帮忙解疑,谢谢. |
|