在"进入系统"按钮触发时,产生一个事件,在flash里写上以下这个语句即可实现和VC的通信
on (release) {
fscommand("bt","enter");}
同时在VC里写上这一句,便可接收来自flash触发的消息
OnFSCommandShockwaveflash1(LPCTSTR command, LPCTSTR args)
{
// TODO: Add your control notification handler code here
if( 0 == strcmp(command,"bt") )
{
if( 0 == strcmp(args,"enter"))
{
MessageBox("欢迎进入系统!");
}
}
}