Re: [Flashcoders] Windows IE Cache Problem

2006-03-15 Thread Bo Parker

thanks for all your suggestions. Worked great.
--
Bo Parker, AIGA
RMC
215 S Jennings Avenue
Fort Worth, Texas  76104

817.332.4700 phone
817.332.4710 facsimile

www.rmcfw.com


On Mar 15, 2006, at 8:05 AM, Danny Kodicek wrote:




I have a client that has webcams that are sending images via ftp to a
folder every 15 seconds to a static link and overwriting the  
previous image of the same name. I am bringing those images into a  
flash  interface and am refreshing those images every 15 seconds  
with a  setInterval loop. Everything works fine on all browsers  
except IE on  windows. It is caching the image and not updating at  
all. Is there  anyway, that I can force IE to dump the reference  
it has in the cache  and pull in the newer image?


Add a dummy query to your url: instead of asking for  
www.myserver.com/myimage.jpg, ask for www.myserver.com/myimage.jpg? 
random=8764865


That should force a refresh.

Danny
___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com



___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com


Re: [Flashcoders] Windows IE Cache Problem

2006-03-15 Thread Danny Kodicek



I have a client that has webcams that are sending images via ftp to a
folder every 15 seconds to a static link and overwriting the previous 
image of the same name. I am bringing those images into a flash  interface 
and am refreshing those images every 15 seconds with a  setInterval loop. 
Everything works fine on all browsers except IE on  windows. It is caching 
the image and not updating at all. Is there  anyway, that I can force IE 
to dump the reference it has in the cache  and pull in the newer image?


Add a dummy query to your url: instead of asking for 
www.myserver.com/myimage.jpg, ask for 
www.myserver.com/myimage.jpg?random=8764865


That should force a refresh.

Danny 


___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com


RE: [Flashcoders] Windows IE Cache Problem

2006-03-15 Thread André Goliath
Hi Bo,

try loading from a "fake" dynamic reference, such as

"www.yourdomain.com/image.jpg?fake="+Math.round(Math.random()*10)

that should work I guess

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Bo Parker
Sent: Wednesday, March 15, 2006 2:52 PM
To: Flashcoders mailing list
Subject: [Flashcoders] Windows IE Cache Problem

I have a client that has webcams that are sending images via ftp to a  
folder every 15 seconds to a static link and overwriting the previous  
image of the same name. I am bringing those images into a flash  
interface and am refreshing those images every 15 seconds with a  
setInterval loop. Everything works fine on all browsers except IE on  
windows. It is caching the image and not updating at all. Is there  
anyway, that I can force IE to dump the reference it has in the cache  
and pull in the newer image? Thanks,
(for reference, go to www.thegrandpet.com and click on the webcams.  
The first four are not password protected.)
--
Bo Parker, AIGA
RMC
215 S Jennings Avenue
Fort Worth, Texas  76104

817.332.4700 phone
817.332.4710 facsimile

www.rmcfw.com


On Mar 15, 2006, at 7:11 AM, Chris Velevitch wrote:

> On Monday 20th March is the next meeting of the study group we will be
> studying FlexUnit 2, the unit testing framework for Flex 2. Please
> read the articles prior to the meeting (see
> http://www.flashdev.org.au/program). At the meeting, the moderator
> will lead discussion and with questions about the topic. The meeting
> is on at 6:30pm for 7pm start and finishes around 8:30pm.
>
> Details about the group, venue and program are available from
> http://www.flashdev.org.au. Please note, whilst the meetings and the
> use of the club are free, the club does require us to purchase
> beverages and/or snacks in exchange.
>
> Please RSVP at http://www.flashdev.org.au/rsvp.
>
>
> Chris
> --
> Chris Velevitch
> Manager - Sydney Flash Platform Developers Group
> www.flashdev.org.au
> ___
> Flashcoders@chattyfig.figleaf.com
> To change your subscription options or search the archive:
> http://chattyfig.figleaf.com/mailman/listinfo/flashcoders
>
> Brought to you by Fig Leaf Software
> Premier Authorized Adobe Consulting and Training
> http://www.figleaf.com
> http://training.figleaf.com
>

___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com

___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com


Re: [Flashcoders] Windows IE Cache Problem

2006-03-15 Thread Janis Radins
guess the very default routine to deal with cache should do
smthn.loadImage("webCamImg.jpg?dummy="+new Date()*1)


2006/3/15, Bo Parker <[EMAIL PROTECTED]>:
>
> I have a client that has webcams that are sending images via ftp to a
> folder every 15 seconds to a static link and overwriting the previous
> image of the same name. I am bringing those images into a flash
> interface and am refreshing those images every 15 seconds with a
> setInterval loop. Everything works fine on all browsers except IE on
> windows. It is caching the image and not updating at all. Is there
> anyway, that I can force IE to dump the reference it has in the cache
> and pull in the newer image? Thanks,
> (for reference, go to www.thegrandpet.com and click on the webcams.
> The first four are not password protected.)
> --
> Bo Parker, AIGA
> RMC
> 215 S Jennings Avenue
> Fort Worth, Texas  76104
>
> 817.332.4700 phone
> 817.332.4710 facsimile
>
> www.rmcfw.com
>
>
> On Mar 15, 2006, at 7:11 AM, Chris Velevitch wrote:
>
> > On Monday 20th March is the next meeting of the study group we will be
> > studying FlexUnit 2, the unit testing framework for Flex 2. Please
> > read the articles prior to the meeting (see
> > http://www.flashdev.org.au/program). At the meeting, the moderator
> > will lead discussion and with questions about the topic. The meeting
> > is on at 6:30pm for 7pm start and finishes around 8:30pm.
> >
> > Details about the group, venue and program are available from
> > http://www.flashdev.org.au. Please note, whilst the meetings and the
> > use of the club are free, the club does require us to purchase
> > beverages and/or snacks in exchange.
> >
> > Please RSVP at http://www.flashdev.org.au/rsvp.
> >
> >
> > Chris
> > --
> > Chris Velevitch
> > Manager - Sydney Flash Platform Developers Group
> > www.flashdev.org.au
> > ___
> > Flashcoders@chattyfig.figleaf.com
> > To change your subscription options or search the archive:
> > http://chattyfig.figleaf.com/mailman/listinfo/flashcoders
> >
> > Brought to you by Fig Leaf Software
> > Premier Authorized Adobe Consulting and Training
> > http://www.figleaf.com
> > http://training.figleaf.com
> >
>
> ___
> Flashcoders@chattyfig.figleaf.com
> To change your subscription options or search the archive:
> http://chattyfig.figleaf.com/mailman/listinfo/flashcoders
>
> Brought to you by Fig Leaf Software
> Premier Authorized Adobe Consulting and Training
> http://www.figleaf.com
> http://training.figleaf.com
>
___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com


[Flashcoders] Windows IE Cache Problem

2006-03-15 Thread Bo Parker
I have a client that has webcams that are sending images via ftp to a  
folder every 15 seconds to a static link and overwriting the previous  
image of the same name. I am bringing those images into a flash  
interface and am refreshing those images every 15 seconds with a  
setInterval loop. Everything works fine on all browsers except IE on  
windows. It is caching the image and not updating at all. Is there  
anyway, that I can force IE to dump the reference it has in the cache  
and pull in the newer image? Thanks,
(for reference, go to www.thegrandpet.com and click on the webcams.  
The first four are not password protected.)

--
Bo Parker, AIGA
RMC
215 S Jennings Avenue
Fort Worth, Texas  76104

817.332.4700 phone
817.332.4710 facsimile

www.rmcfw.com


On Mar 15, 2006, at 7:11 AM, Chris Velevitch wrote:


On Monday 20th March is the next meeting of the study group we will be
studying FlexUnit 2, the unit testing framework for Flex 2. Please
read the articles prior to the meeting (see
http://www.flashdev.org.au/program). At the meeting, the moderator
will lead discussion and with questions about the topic. The meeting
is on at 6:30pm for 7pm start and finishes around 8:30pm.

Details about the group, venue and program are available from
http://www.flashdev.org.au. Please note, whilst the meetings and the
use of the club are free, the club does require us to purchase
beverages and/or snacks in exchange.

Please RSVP at http://www.flashdev.org.au/rsvp.


Chris
--
Chris Velevitch
Manager - Sydney Flash Platform Developers Group
www.flashdev.org.au
___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com



___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com