RE: [flexcoders] Re: any ideas about flex client side caching?

2005-04-25 Thread Feng Zhu
: [flexcoders] Re: any ideas about flex client side caching? Hi, Zhu FengCan I delete files by using action script APIs? When I use the shared object, I don't want the .sol files stay in disk persistently, although we can clear the context of the file. You could use onUnload() see example

Re: [flexcoders] Re: any ideas about flex client side caching?

2005-04-22 Thread Johan Lopes
age- From: flexcoders@yahoogroups.com [mailto: flexcoders@yahoogroups.com] On Behalf Of Johan Lopes Sent: 2005 421 20:57 To: flexcoders@yahoogroups.com Subject: Re: [flexcoders] Re: any ideas about flex client side caching? Zhu Feng 1. The shared object stored in local disk is plain; we can

RE: [flexcoders] Re: any ideas about flex client side caching?

2005-04-22 Thread Matt Horn
Of Johan LopesSent: Friday, April 22, 2005 9:54 AMTo: flexcoders@yahoogroups.comSubject: Re: [flexcoders] Re: any ideas about flex client side caching? Hi,Zhu FengCan I delete files by using action script APIs? When I use the shared object, I don't want the .sol files stay in disk

RE: [flexcoders] Re: any ideas about flex client side caching?

2005-04-21 Thread Feng Zhu
: 2005415 19:36 To: flexcoders@yahoogroups.com Subject: RE: [flexcoders] Re: any ideas about flex client side caching? Hi, You can allow all swfs from a domain to read/write to same SharedObject, There is second parameter to SharedObject.getLocal(..,..) method. Read about in docs. var so

Re: [flexcoders] Re: any ideas about flex client side caching?

2005-04-21 Thread Johan Lopes
-Original Message-From: flexcoders@yahoogroups.com [mailto: flexcoders@yahoogroups.com] On Behalf Of Abdul QabizSent: 2005415 19:36To: flexcoders@yahoogroups.comSubject: RE: [flexcoders] Re: any ideas about flex client side caching? Hi,You can allow all swfs from a domain to read/write to same

RE: [flexcoders] Re: any ideas about flex client side caching?

2005-04-21 Thread Feng Zhu
: 2005421 20:57 To: flexcoders@yahoogroups.com Subject: Re: [flexcoders] Re: any ideas about flex client side caching? Zhu Feng 1. The shared object stored in local disk is plain; we can see the .sol file context easily by text editor If you're saving sensitive data then use an encryption

RE: [flexcoders] Re: any ideas about flex client side caching?

2005-04-15 Thread Abdul Qabiz
Hi, You can allow all swfs from a domain to read/write to same SharedObject, There is second parameter to SharedObject.getLocal(..,..) method. Read about in docs. var so = SharedObject.getLocal('myCookie', /); This way all swfs in same domain have access to myCookie SO...But remember there