This content has been marked as final.
Show 5 replies
-
1. Re: in multipleSWFs
kglad Nov 22, 2012 7:17 AM (in response to Ron Colmen)where are the swfs? on the same server? in the same directory on the same server?
-
2. Re: in multipleSWFs
Ron Colmen Nov 22, 2012 7:26 AM (in response to kglad)The swfs are on the same server but in different folders.
-
3. Re: in multipleSWFs
kglad Nov 22, 2012 7:34 AM (in response to Ron Colmen)use:
var fabClassCookie:SharedObject = SharedObject.getLocal("fabData","/");
if(fabClassCookie.data.classT1 != undefined and fabClassCookie.data.classT2 != undefined){
fabClassCookie.data.classT1 = yourGrade.text;
fabClassCookie.data.classT2 = yourId.text;
fabClassCookie.flush();
} else {
fabClassCookie.clear();
}
-
4. Re: in multipleSWFs
Ron Colmen Nov 22, 2012 7:43 AM (in response to kglad)Thanks Kglad.
I believe this is the correct answer. I'll give it a try shortly.
-



