Total Pageviews

Thursday, May 13, 2010

Lesson 15 - MFC call FLASH

// MFC
swf.CallFunction(_T("\
From mfc\
"));

// FLASH
flash.external.ExternalInterface.addCallback("mfc", this, mfc);
function mfc(s:String) {
// code
menu_mc.title_txt.text = s;
return "haha";
}

No comments:

Post a Comment