отправить сообщение с AS 3.0 - PullRequest
2 голосов
/ 31 января 2011

Я хочу отправить форму в формате flash и отправить пользователя на другую страницу в формате html / php и получить информацию о публикации на этой странице. Как я могу это сделать?

Ответы [ 2 ]

4 голосов
/ 31 января 2011
// 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');
0 голосов
/ 31 января 2011

Используйте URLRequest класс

...