I couldn't find a way to get this to work currently.  I talked to the
Player team and we agreed we want to find a way to make this work so a
bug has been filed.  I cannot guarantee it will get through for 8.5 but
we realize it does affect customers so we'll do our best.

Matt

-----Original Message-----
From: [email protected] [mailto:[EMAIL PROTECTED] On
Behalf Of tyombria
Sent: Monday, March 27, 2006 5:16 AM
To: [email protected]
Subject: [flexcoders] Flex 2.0 b2: SharedObject

Hi, all.

I've got a problem with a SharedObject.

I run two apps simultaneously.
The following operators depict applications activities:

1. app1:
so:SharedObject = SharedObject.getLocal('so', '/');
so.data.first = 'first';
so.data.second = '';
so.flush();

2. app2:
so:SharedObject = SharedObject.getLocal('so', '/');
trace( so.data.second ); // outputs ''

3. app1:
so.data.second = 'second';
so.flush();

4. app2:
so = SharedObject.getLocal( 'so', '/' );
trace(so.data.second); // ouputs ''



In the previous version (as 2.0) I could read data written in the 
shared object by other app (without restarting) by the following 
trick:

in app2 (step 4):
delete so;
so = SharedObject.getLocal( 'so', '/' );
trace(so.data.second); // ouputs 'second'



Can I implement needed functionality in the flex 2.0?








--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives:
http://www.mail-archive.com/flexcoders%40yahoogroups.com 
Yahoo! Groups Links



 




--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com 
Yahoo! Groups Links

<*> To visit your group on the web, go to:
    http://groups.yahoo.com/group/flexcoders/

<*> To unsubscribe from this group, send an email to:
    [EMAIL PROTECTED]

<*> Your use of Yahoo! Groups is subject to:
    http://docs.yahoo.com/info/terms/
 



Reply via email to