发送AS 3.0的帖子

时间:2011-01-31 07:50:54

标签: actionscript-3 form-post

我想在flash中提交表单并将用户发送到html / php中的其他页面并获取该页面上的帖子信息。我怎么能这样做?

2 个答案:

答案 0 :(得分:4)

// create a URLRequest object with the target URL:
var url : String = 'newpage.html';
var urlRequest : URLRequest = new URLRequest(url);

// create a URLVariables object and add all the values you want to send with their identifiers:
var urlVariables : URLVariables = new URLVariables();
urlVariables['formfieldId'] = 'formfieldValue';

// add the urlVariables to the urlRequest
urlRequest.data = urlVariables;

// set the method to post (default is GET)
urlRequest.method = URLRequestMethod.POST;

// use navigateToURL to send the urlRequest, use '_self' to open in the same window
navigateToURL(urlRequest, '_self');

答案 1 :(得分:0)

使用URLRequest