Talking to Drupal from Flash AS2
Abstract: This case study describes two ways to push data collected within a Flash activity into the Drupal database. The two solutions vary in some important ways: the ability to enable AHAH form submission to avoid page refreshes, the ability to access collected data from Views, the ability to export collected data to a spreadsheet, and of course, ease of implementation. One caveat for both solutions is that they do rely on javascript. The only non-javascript solution I am aware of involves the use of AMFPHP and the Services module. Implementation of these is easy if you are working in AS3. Not so much for AS2.
Read moredrupal 5, as2 node.save how to set uid and url alias
Hi Everybody!
I'm new to drupal. I would like to make a website with a flash based interview appz. After user click send button I'd like to store the interview text as a node. I used the example "Accessing a service from Flash 8". It works fine.
I have made some changes in the flash code, because I don't want to load the node to the flash but I want to save the flash content to database as node:
var content = new Object();
content.type = "interview";
content.title = "some title";
content.body = "some body text";
var pc:PendingCall = node.save(content);