通过 AJAX 提交 Flash AS2 表单
我有一个客户制作基于 Flash AS2 的语言学习软件。
他们想向应用程序添加错误报告电子邮件。
如果您不介意 swf 的帖子打开新选项卡,那就非常简单:
on (release, releaseOutside) {
var my_Var:LoadVars = new LoadVars();
my_Var.brsub = subject.text;
my_Var.brmsg = message.text;
my_Var.send("bug_report.php", "_blank", "POST");
}
我正在寻找文档或 AS2 中的示例,通过 AJAX 制作这篇文章而不打开新选项卡。
任何人都知道我可以在哪里阅读它。我知道它一定在那里,但我的谷歌搜索却一无所获。
I have a client who makes Flash AS2 based language learning software.
They wanted to add a bug report email to the apps.
It is dead simple if you don't mind the swf's post opening a new tab:
on (release, releaseOutside) {
var my_Var:LoadVars = new LoadVars();
my_Var.brsub = subject.text;
my_Var.brmsg = message.text;
my_Var.send("bug_report.php", "_blank", "POST");
}
I am looking for docs or an example in AS2 of making this post via AJAX and not opening the new tab.
Anyone know where I can read up on it. I know it must be out there but my Googling has come up empty.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您不需要在 Flash 中发出 AJAX 请求来处理该请求:
您可以使用
loadVariables
方法通过 POST 发送数据,而无需离开 Flash 影片:Adobe 帮助参考
You don't need to make an AJAX Request in Flash to process that request:
you can use the
loadVariables
method to send data via POST, without leaving your Flash movie:Adobe Help Reference