Here you go:
/**
Determines if the current system is a mac
*/
public static function isMac() : Boolean {
return ( Capabilities.os.indexOf( "Mac" ) != -1 )
}On 20 Jul 2010, at 09:59, Christophe wrote: > Hello, > > How to know if the client computer is a Mac or a PC ? > > To add specific instructions for the Mac version. > > Thank you, > Christophe, > >

