Quantcast
Channel: Get Current Operating System In Adobe Air - Stack Overflow
Browsing latest articles
Browse All 4 View Live

Answer by posit labs for Get Current Operating System In Adobe Air

For clarity sake, I use this code (although it does the same thing as Mudasir's)if(Capabilities.os.search("Windows")>=0) //do somethingHere are what the docs...

View Article



Answer by Mudasir Bhutto for Get Current Operating System In Adobe Air

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 }

View Article

Answer by tefozi for Get Current Operating System In Adobe Air

Use Capabilities class:import flash.system.Capabilities;trace(Capabilities.os);

View Article

Get Current Operating System In Adobe Air

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?

View Article
Browsing latest articles
Browse All 4 View Live




Latest Images