Action Message Format (AMF) is a binary format used to serialize objects graphs such ActionScript objects and XML, or send messages between an Adobe Flash client and a remote service, usually a Flash Media Server or third party alternatives.
The format is often used in conjunction with Adobe's RTMP to establish connections and control commands for the delivery of streaming media. In this case, the AMF data is encapsulated in a chunk which has a header which defines things as the message length and type (whether it is a "ping", "command" or media data).
http://en.wikipedia.org/wiki/Action_Message_Format
Example: Native XML Communication
http://blog.naver.com/PostView.nhn?blogId=lack07kr&logNo=60066401753
Base64 with AS3.0
http://foxarc.com/blog/default.asp?cateID=3
AMF Link more (AMFPHP vs ZENDAMF)
http://mudchobo.tistory.com/424
http://www.flepstudio.org/forum/tutorials/3421-actionscript-3-0-zend-amf.html
http://framework.zend.com/download/latest
http://www.silexlabs.org/amfphp/ Creative communities amfPHP
http://groups.drupal.org/node/12470 AS3 - AMFPHP connection problems Drupal Groups
http://koko8829.tistory.com/
샘플코드
http://www.flepstudio.org/
error_reporting(E_ALL|E_STRICT
require_once "Zend/Amf/Server.
require_once "Comments.php";
$server=new Zend_Amf_Server();
echo($server->handle());//실행
?>
class Comments
{
public function __
{
mysql_connect("
mysql_select_db("
}
public function getAuthors
{
$t = array();
while($row=mysql_
{
array_push($t,$row
}
return
}
}
?>var res:Responder=new Responder(onResult,onError);
my_ta.visible=false;
var wheel_mc:Wheel=new Wheel();
wheel_mc.width=wheel_mc.
NetConnection.Call.Failed amfphp2.0
'SNS | SNG' 카테고리의 다른 글
앵그리버드 누른 게임(?) (0) | 2012.04.12 |
---|---|
소셜게임 PC에서 앱까지 국내시장에도 급부상 (0) | 2012.04.12 |
27살 최고경영자 케빈 시스트롬 10억달러 짜리 아이폰 앱 제작사 매각 (0) | 2012.04.11 |
FlashBuilder How to Debug in Google Chrome (0) | 2011.12.22 |
Eclipse,Flash Builder 에 SVN 플러그인 설치하기 (0) | 2011.11.17 |