function installStatus(statusValue) { if (statusValue == "Download.Complete") { // Installation is complete. In most cases the browser window that this SWF // is hosted in will be closed by the installer or manually by the end user _root.gotoAndStop(2); } else if (statusValue == "Download.Cancelled") { // The end user chose "NO" when prompted to install the new player // by default no User Interface is presented in this case. It is left up to // the developer to provide an alternate experience in this case _root.gotoAndStop(3); } else if (statusValue == "Download.Failed") { // The end user failed to download the installer due to a network failure // by default no User Interface is presented in this case. It is left up to // the developer to provide an alternate experience in this case _root.gotoAndStop(4); } }