Quote:
Originally Posted by Cherrykao
excellent! As far as i know Flash won't work for users on Macintosh. Is there a graal script function to detect the presence of a Flash player on the user's machine? Also when getting the platform a user is using, i know "win" is for windows. I don't have Linux or Macintosh, so i don't know if the output when getting the platform from a user on Linux is just "lin" and Macintosh just "mac"?? Thanks.
|
PHP Code:
if (player.platform in {"win", "linux"})
... for if the player is using Windows or Linux.
PHP Code:
if (player.platform == "mac")
... for if the player is using a Mac.