标签:adobe illustrator flash builder 界面 c++ adobe
CSInterface.instance.addEventListener(GET_PARAMS_REQ, respondToParams); // Dispatch ready event var event : CSXSEvent = new CSXSEvent(DIALOG_READY, CSXSEventScope.APPLICATION); CSInterface.instance.dispatchEvent(event);
// Events we dispatch private static const DIALOG_READY : String = "com.lm.shpToAI.shpToAIDialogReady"; // Events we listen out for private static const GET_PARAMS_REQ : String = "com.lm.shpToAI.shpToAIGetParamsReq";
var payload : XML = <payload> <cancelled>{cancelled}</cancelled> <editText>{editText.text}</editText> <nextText>{nextText.text}</nextText> </payload>; var event : CSXSEvent = new CSXSEvent(GET_PARAMS_RESP, CSXSEventScope.APPLICATION, payload); CSInterface.instance.dispatchEvent(event);
标签:adobe illustrator flash builder 界面 c++ adobe
原文地址:http://blog.csdn.net/liming199364/article/details/41964675