Re: [Flashcoders] CacheAsBitmap advice

2006-10-11 Thread Ian Thomas
Hi Jason, I'd pretty much echo Ramon - doesn't sound like a good case for cacheAsBitmap. To give a slightly more concrete cacheAsBitmap example... We have a Flash-driven flip book that can (potentially) show any Flash movie on any page. Flipping the pages is a quite animation-intensive process.

Re: [Flashcoders] CacheAsBitmap advice

2006-10-11 Thread David Buff
] To: Flashcoders mailing list flashcoders@chattyfig.figleaf.com Sent: Wednesday, October 11, 2006 1:36 PM Subject: RE: [Flashcoders] CacheAsBitmap advice Hi - thank you to both Ian and Ramon. And yes, the pictures are scrolling, but they are contained in movieclips that contain vector data (i.e

RE: [Flashcoders] CacheAsBitmap advice

2006-10-11 Thread Jason Ross
[EMAIL PROTECTED] To: Flashcoders mailing list flashcoders@chattyfig.figleaf.com Sent: Wednesday, October 11, 2006 1:36 PM Subject: RE: [Flashcoders] CacheAsBitmap advice Hi - thank you to both Ian and Ramon. And yes, the pictures are scrolling, but they are contained in movieclips that contain

Re: [Flashcoders] CacheAsBitmap advice

2006-10-11 Thread Ian Thomas
Incidentally, Jason, your site only takes up the first 1/4 or so of the browser window in Firefox. I think you probably need to set a CSS body height:100% or something somewhere in the HTML. Cheers, Ian On 10/11/06, Jason Ross [EMAIL PROTECTED] wrote: Hi, I have a photo sharing site that

Re: [Flashcoders] CacheAsBitmap advice

2006-10-11 Thread Ramon Miguel M. Tayag
list Subject: Re: [Flashcoders] CacheAsBitmap advice If you're scrolling pictures, you don't really need to cache as bitmap. It would be best to use it when there's a lot of vector data that bogs the system down when animating. One thing you could do to optimize things is whent he pictures go

RE: [Flashcoders] CacheAsBitmap advice

2006-10-11 Thread Jason Ross
Thanks for that ... sorted it out now! -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Ian Thomas Sent: 11 October 2006 13:47 To: Flashcoders mailing list Subject: Re: [Flashcoders] CacheAsBitmap advice Incidentally, Jason, your site only takes up

RE: [Flashcoders] CacheAsBitmap advice

2006-10-11 Thread Jason Ross
Interesting. Thank you, I will try this out tonight when I get home! -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Ramon Miguel M. Tayag Sent: 11 October 2006 13:48 To: Flashcoders mailing list Subject: Re: [Flashcoders] CacheAsBitmap advice I've