RE: [flexcoders] reading problem from local shared object

2008-10-21 Thread Keith Reinfeld
Gökhan, I hope this helps: Read.as private var myLSO:SharedObject; private var p_name:String; myLSO=SharedObject.getLocal("parameterCookie"); // Was myLSO created? if (myLSO==null) { // myLSO was not created Alert.show("cannot create shared object "); }else{

[flexcoders] reading problem from local shared object

2008-10-21 Thread Gökhan
Hi, I am trying to pass data between multiple mxml applications with using local shared object. It writes to sharedObject(parameterCookie) but when i try to read data from object it gets nothing. What is wrong with this code ? Thanks, Gokhan. Write.as private var myLSO:SharedObject; priva