home *** CD-ROM | disk | FTP | other *** search
- function saveUSERS()
- {
- if(gListeProfil.length > 0)
- {
- gFirstTime = undefined;
- so_users.data.gListeProfil = gListeProfil;
- so_users.flush();
- }
- else
- {
- gFirstTime = 1;
- so_users.clear();
- }
- }
- function loadUSERS()
- {
- gListeProfil = so_users.data.gListeProfil;
- var _loc2_ = gListeProfil.length;
- var _loc1_ = 0;
- while(_loc1_ < _loc2_)
- {
- _loc1_ = _loc1_ + 1;
- }
- }
- stop();
- if(_global.HOTE == undefined)
- {
- gST = 1;
- }
- recupDonneesXmlQuiz();
- so_users = SharedObject.getLocal("QZZ_USER","/");
- if(so_users.getSize() == 0)
- {
- gListeProfil = [];
- gFirstTime = 1;
- }
- else
- {
- loadUSERS();
- }
- InitOk();
-