Re: [Flashcoders] Q: html and flash

2005-12-01 Thread Ian Thomas
If you encode them into the URL, the browser will think the .swf isn't cached and will download it again for each page. If you use flashVars, the browser will use the locally cached .swf each time - less delay from the user's PoV. HTH, Ian On 12/1/05, Mike Boutin <[EMAIL PROTECTED]> wrote: > >

Re: [Flashcoders] Q: html and flash

2005-12-01 Thread Matthew Gaiser
CTED] On Behalf Of Ian Thomas Sent: Thursday, December 01, 2005 11:19 AM To: Flashcoders mailing list Subject: Re: [Flashcoders] Q: html and flash Alternatively you can set flashVars in the containing or tags - Google for flashVars. I'd imagine with SharedObject you'd run into pr

Re: [Flashcoders] Q: html and flash

2005-12-01 Thread Mike Boutin
PROTECTED] On Behalf Of Ian Thomas Sent: Thursday, December 01, 2005 11:19 AM To: Flashcoders mailing list Subject: Re: [Flashcoders] Q: html and flash Alternatively you can set flashVars in the containing or tags - Google for flashVars. I'd imagine with SharedObject you'd run into proble

RE: [Flashcoders] Q: html and flash

2005-12-01 Thread Corban Baxter
To: Flashcoders mailing list Subject: Re: [Flashcoders] Q: html and flash Alternatively you can set flashVars in the containing or tags - Google for flashVars. I'd imagine with SharedObject you'd run into problems if (for example) you had two different browser windows open. HTH, Ia

Re: [Flashcoders] Q: html and flash

2005-12-01 Thread Ian Thomas
Alternatively you can set flashVars in the containing or tags - Google for flashVars. I'd imagine with SharedObject you'd run into problems if (for example) you had two different browser windows open. HTH, Ian On 12/1/05, Mischa Williamson <[EMAIL PROTECTED]> wrote: > > You can use the Shared

Re: [Flashcoders] Q: html and flash

2005-12-01 Thread Mischa Williamson
You can use the SharedObject (Flash's version of cookies) to store the current state of the menu (before changing the URL) and then recreate that state within Flash on each subsequent page refresh. Check out SharedObject in the AS dictionary. Mischa On 12/1/05, Corban Baxter <[EMAIL PROTECTED]>

[Flashcoders] Q: html and flash

2005-12-01 Thread Corban Baxter
Hey all I am working on an html/flash hybrid site. We are creating the menu in flash that has expandable and collapsible sections for that encompass the larger sections. What we would like to do is when a section is expanded and a sub link is clicked the user will obviously go to the next page.