Get Current Operating System In Adobe Air

前端 未结 3 1645
甜味超标
甜味超标 2021-02-02 15:02

I\'m making an App using Adobe Flex/Air. I was wondering if there is any way to get the Operating System the Air app is running on?

3条回答
  •  野的像风
    2021-02-02 15:46

    if((Capabilities.os.indexOf("Windows") >= 0))
    {
         // in windows
    }
    else if((Capabilities.os.indexOf("Mac") >= 0))
    {
    // in mac
     } 
     else if((Capabilities.os.indexOf("Linux") >= 0))
     {
    // in linux
     }
    

提交回复
热议问题