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

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

2005-04-15 Thread zhfbanks
HI, I tried SharedObject. It is perfect. But I ocurs another problem. Only the same swf can read the cache context. For example: I write a simple mxml file: test1.mxml: mx:Script ![CDATA[ function save(){ var so= SharedObject.getLocal('myCookie'); var str:String

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

2005-04-15 Thread zhfbanks
The size is not a problem. You can call System.showSettings(1) to modify the size. --- In flexcoders@yahoogroups.com, Matthew Shirey [EMAIL PROTECTED] wrote: Just be careful about how much you store in the SharedObject. By default the client is set to accept up to 100k A 'Huge' dataset might

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

2005-04-15 Thread Abdul Qabiz
: [flexcoders] Re: any ideas about flex client side caching? HI, I tried SharedObject. It is perfect. But I ocurs another problem. Only the same swf can read the cache context. For example: I write a simple mxml file: test1.mxml: mx:Script ![CDATA[ function save(){ var so