vc++与flash交互

#### c++ to flash calls:VC发送消息给FLASH,FLASH响应。

TRY
{
	CString ret = m_FlashPlayer.CallFunction("<invoke name=/"FlashFunction/" 
		returntype=/"xml/"><arguments><string> empty ?</string>
			</arguments></invoke>");
	//AfxMessageBox(ret);
}
CATCH(COleDispatchException, ex)
{
	TCHAR   szCause[255];
	CString strFormatted;

	ex->GetErrorMessage(szCause, 255);
	strFormatted = "The program exited because of this error: ";
	strFormatted += szCause;
	AfxMessageBox(strFormatted);
}
END_CATCH
in Actionscript now : 
import flash.external.*;

ExternalInterface.addCallback("FlashFunction", this, InternalFlashFunction);

function InternalFlashFunction(str: String): String 
{
   play();
   return "You can return a string...";
}


#### flash to c++ calls: FLASH发送消息给VC,VC响应。

BEGIN_EVENTSINK_MAP(CFlashPlayerDlg, CDialog)
    //{{AFX_EVENTSINK_MAP(CFlashPlayerDlg)
	ON_EVENT(CFlashPlayerDlg, IDC_SHOCKWAVEFLASH1, 150 /* FSCommand */, 
		OnFSCommand, VTS_BSTR VTS_BSTR)
	ON_EVENT(CFlashPlayerDlg, IDC_SHOCKWAVEFLASH1, 197 /* FlashCall */, 
		OnFlashCall, VTS_BSTR)
	//}}AFX_EVENTSINK_MAP
END_EVENTSINK_MAP()


void CFlashPlayerDlg::OnFSCommand(LPCTSTR command, LPCTSTR args) 
{
	AfxMessageBox(command);
}

void CFlashPlayerDlg::OnFlashCall(LPCTSTR request) 
{
	AfxMessageBox(request);
}

in Actionscript : 

fscommand("ChangeText", textInput_txt.text); // for fscommand

// or

flash.external.ExternalInterface.call("GetContacts"); // flash call
评论 3
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值