FlexApp InvokeSignCtrlMethod Example

FlexApp.mxml also implements a method called InvokeSignCtrlMethod. When the Interactive Detailer is required to send data to SignatureCtrl.swf, it does so by calling this method in the Asset. The following XML data is passed to the Asset:

public function InvokeSignCtrlMethod(strXMLData:String):void
  {
    if(m_signCtrl != null)
    Object(m_signCtrl.application).InvokeMethod(strXMLData);
  }