在FlashDevelop中编译ActionScript 3项目中的时间错误

时间:2013-12-22 09:26:31

标签: actionscript-3 air flashdevelop air-native-extension

我正在尝试在this IDE中的Adobe的FlashDevelop博客之后为我的SIP库Adobe AIR原生扩展构建一个ActionScript端库。当我构建项目时,我得到以下编译时错误:

  

C:\用户\乌萨马   穆罕默德\文档\ AndroidSIPManager的\ src \中\创新\ androidsipmanager \ AndroidSIPManager.as(1):   col:9错误:语法错误:在进入之前需要标识符。

虽然我的语法正确,但我不知道为什么会出现这个错误。我在ActionScript文件中的任何ActionScript 3项目中编写package关键字后的包名称时出现此错误,例如。 package my.package { ...,但在包关键字后没有写入包名时,请不要使用它。以下是我的AndroidSIPManager.as代码:

package in.innovative.androidsipmanager //getting error here
{
    import flash.events.EventDispatcher;
    import flash.events.IEventDispatcher;

    /**
     * ...
     * @author Osama Mohammed Shaikh
     */
    public class AndroidSIPManager extends EventDispatcher 
    {
        private var extContext:ExtensionContext;

        public function AndroidSIPManager(target:IEventDispatcher=null) 
        {
            super(target);      

            extContext = ExtensionContext.createExtensionContext("in.innovative.SIPLibExtension", "sip");
            if (!extContext)
            {
                throw new Error("SIP Library extension is not supported on this platform");
            }
        }

        public function initialize(enum_transport:int, agent:String, STUNServer:String, STUNServerPort:int):int
        {
            return int (extContext.call("initialize", enum_transport, agent, STUNServer, STUNServerPort));
        }

        public function setUserInfo(userName:String, displayName:String, authName:String, password:String, localSIPPort:int, userDomain:String, SIPServer:String, SIPServerPort:int, outboundServer:String, outboundServerPort:int):int
        {
            return int (extContext.call("setUserInfo", userName, displayName, authName, password, localSIPPort, userDomain, SIPServer, SIPServerPort, outboundServer, outboundServerPort));
        }

        public function portSipCall(callee:String, enum_mediaType:int):Number
        {
            return Number (extContext.call("portSipCall", callee, enum_mediaType));
        }
    }
}

请帮我解决问题。

1 个答案:

答案 0 :(得分:2)

问题是in是保留字。这就是为什么在完全删除包名后能够编译项目的原因。