tags:

views:

63

answers:

4

How can I pass xml data from php to flash, without using xml file?

Sincerely, John

+2  A: 

AMFPHP

Tegeril
A: 

Same loading method in actionscript, just point it to a php script instead.

<?php

header("Content-Type: text/xml");
echo "<xml_nodes></xml_nodes>";
Typeoneerror
A: 

Thanks! How about flash code. In flash how can I read in XML data?

Sincerely, John

john
A: 

Zend_Amf is the library officially supported by Adobe. Also check the Adobe Developer Center

Gordon