Index
2003-04-01 15:22Paul McNett : VFP8: Fast but there's visible screen flicker
2005-01-21 10:13Timothy Grahl : [NF] Google Adsense Flicker - Firefox
2005-01-21 10:33Scott Bowden : Re: [NF] Google Adsense Flicker - Firefox
2005-01-21 11:34Timothy Grahl : RE: [NF] Google Adsense Flicker - Firefox
2005-01-21 12:03Scott Bowden : RE: [NF] Google Adsense Flicker - Firefox
2005-01-21 12:05Scott Bowden : RE: [NF] Google Adsense Flicker - Firefox
2007-08-16 11:35<lalong1@bellsouth.net>: [dabo-users] Using DynamicCaption in grid causes annoyingscreen flicker
2007-08-16 11:42<lalong1@bellsouth.net>: Re: [dabo-users] Using DynamicCaption in grid causes annoyingscreen flicker
2007-08-16 11:46Paul McNett : Re: [dabo-users] Using DynamicCaption in grid causesannoying screen flicker
2007-08-16 11:49Paul McNett : Re: [dabo-users] Using DynamicCaption in grid causesannoying screen flicker
Back to top
VFP8: Fast but there's visible screen flicker

Author: Paul McNett

Posted: 2003-04-01 15:22:00   Link

My overall impression is that VFP8 apps run noticably faster in most=20

operations. However, I'm getting a flicker when forms are refreshed that=

=20

didn't happen before.

Anyone else notice this with VFP8?

--=20

Paul McNett

Liberal Earthling

©2003 Paul McNett
Back to top
[NF] Google Adsense Flicker - Firefox

Author: Timothy Grahl

Posted: 2005-01-21 10:13:02   Link

I have searched on several sites trying to find an answer to this

problem and I cannot. I have added Google ads to my site (

www.bluecollarmtb.com ) and they are doing a strange flicker thing when

I load the page in Firefox. It works fine with IE and Opera. Also, other

people can see it as I have gotten a few friends with firefox to test it

on their machine as well.

Google uses iframes to show their ads and from what I can tell, firefox

is not setting up the frame with enough height because you can scroll

the ads a bit up or down even though they are set at a height of 60.

Anyway, anybody know what is going on?

--- StripMime Report -- processed MIME parts ---

multipart/alternative

text/plain (text body -- kept)

text/html

---

©2005 Timothy Grahl
Back to top
Re: [NF] Google Adsense Flicker - Firefox

Author: Scott Bowden

Posted: 2005-01-21 10:33:17   Link

The flicker seems to only last as long as the blog is loading. As soon

as the page is complete, the flicker stops. Possibly something in the

WordPress template causing the iframe to reload when each entry is

added?

The 1px scroll might be caused by Firefox accounting for the 1px border

on the top differently than IE does, effectively making the image

height: 61px. Try making the iframe 61px and valign=top (or equivalent

confangled CSS), and see if the scroll stops.

- Skaught

>>> Tgrahl@VALTIM.com 1/21/2005 10:13:02 AM >>>

I have searched on several sites trying to find an answer to this

problem and I cannot. I have added Google ads to my site (

www.bluecollarmtb.com ) and they are doing a strange flicker thing

when

I load the page in Firefox. It works fine with IE and Opera. Also,

other

people can see it as I have gotten a few friends with firefox to test

it

on their machine as well.

Google uses iframes to show their ads and from what I can tell,

firefox

is not setting up the frame with enough height because you can scroll

the ads a bit up or down even though they are set at a height of 60.

Anyway, anybody know what is going on?

--- StripMime Report -- processed MIME parts ---

multipart/alternative

text/plain (text body -- kept)

text/html

---

[excessive quoting removed by server]

©2005 Scott Bowden
Back to top
RE: [NF] Google Adsense Flicker - Firefox

Author: Timothy Grahl

Posted: 2005-01-21 11:34:10   Link

I have fixed the iframe problem so the scrool thing isnt happening

anymore, however that didn't fix the flicker problem.

In my code I have wrapped the google javascript in an "if" statement so

it will only be posted under the first entry, so since the "if"

statement is failing, it should not be trying to reload it everytime. I

am completely lost.

Tim

> -----Original Message-----

> From: profox-bounces@leafe.com

> [mailto:profox-bounces@leafe.com] On Behalf Of Scott Bowden

> Sent: Friday, January 21, 2005 10:33 AM

> To: profox@leafe.com

> Subject: Re: [NF] Google Adsense Flicker - Firefox

>

>

> The flicker seems to only last as long as the blog is

> loading. As soon

> as the page is complete, the flicker stops. Possibly

> something in the

> WordPress template causing the iframe to reload when each

> entry is added?

>

> The 1px scroll might be caused by Firefox accounting for the

> 1px border on the top differently than IE does, effectively

> making the image

> height: 61px. Try making the iframe 61px and valign=top (or

> equivalent confangled CSS), and see if the scroll stops.

>

> - Skaught

>

> >>> Tgrahl@VALTIM.com 1/21/2005 10:13:02 AM >>>

> I have searched on several sites trying to find an answer to

> this problem and I cannot. I have added Google ads to my site

> ( www.bluecollarmtb.com ) and they are doing a strange

> flicker thing when I load the page in Firefox. It works fine

> with IE and Opera. Also, other people can see it as I have

> gotten a few friends with firefox to test it on their machine

> as well.

>

> Google uses iframes to show their ads and from what I can

> tell, firefox is not setting up the frame with enough height

> because you can scroll the ads a bit up or down even though

> they are set at a height of 60. Anyway, anybody know what is

> going on?

>

>

>

> --- StripMime Report -- processed MIME parts --- multipart/alternative

> text/plain (text body -- kept)

> text/html

> ---

>

>

[excessive quoting removed by server]

©2005 Timothy Grahl
Back to top
RE: [NF] Google Adsense Flicker - Firefox

Author: Scott Bowden

Posted: 2005-01-21 12:03:07   Link

Isolate Google's script call in an include file, and then have a php

check at the bottom of your blog template, such as: if post_id =

max(post_id), include google_ad.inc (else do nothing). That should make

it so the <div> appears only once client-side.

I hope. :)

- Skaught

>>> Tgrahl@VALTIM.com 1/21/2005 11:34:10 AM >>>

I have fixed the iframe problem so the scrool thing isnt happening

anymore, however that didn't fix the flicker problem.

In my code I have wrapped the google javascript in an "if" statement

so

it will only be posted under the first entry, so since the "if"

statement is failing, it should not be trying to reload it everytime.

I

am completely lost.

Tim

> -----Original Message-----

> From: profox-bounces@leafe.com

> [mailto:profox-bounces@leafe.com] On Behalf Of Scott Bowden

> Sent: Friday, January 21, 2005 10:33 AM

> To: profox@leafe.com

> Subject: Re: [NF] Google Adsense Flicker - Firefox

>

>

> The flicker seems to only last as long as the blog is

> loading. As soon

> as the page is complete, the flicker stops. Possibly

> something in the

> WordPress template causing the iframe to reload when each

> entry is added?

>

> The 1px scroll might be caused by Firefox accounting for the

> 1px border on the top differently than IE does, effectively

> making the image

> height: 61px. Try making the iframe 61px and valign=top (or

> equivalent confangled CSS), and see if the scroll stops.

>

> - Skaught

>

> >>> Tgrahl@VALTIM.com 1/21/2005 10:13:02 AM >>>

> I have searched on several sites trying to find an answer to

> this problem and I cannot. I have added Google ads to my site

> ( www.bluecollarmtb.com ) and they are doing a strange

> flicker thing when I load the page in Firefox. It works fine

> with IE and Opera. Also, other people can see it as I have

> gotten a few friends with firefox to test it on their machine

> as well.

>

> Google uses iframes to show their ads and from what I can

> tell, firefox is not setting up the frame with enough height

> because you can scroll the ads a bit up or down even though

> they are set at a height of 60. Anyway, anybody know what is

> going on?

>

>

>

> --- StripMime Report -- processed MIME parts ---

multipart/alternative

> text/plain (text body -- kept)

> text/html

> ---

>

>

[excessive quoting removed by server]

©2005 Scott Bowden
Back to top
RE: [NF] Google Adsense Flicker - Firefox

Author: Scott Bowden

Posted: 2005-01-21 12:05:21   Link

I just re-read that a little slower, and it sounds like you're doing

exactly what I just said. I somehow got the impression you were using

javascript yourself to include/exclude Google's script! If this thing

is getting past php... well... It's certainly a conundrum!

>>> Tgrahl@VALTIM.com 1/21/2005 11:34:10 AM >>>

In my code I have wrapped the google javascript in an "if" statement

so

it will only be posted under the first entry, so since the "if"

statement is failing, it should not be trying to reload it everytime.

I

am completely lost.

obvious.

©2005 Scott Bowden
Back to top
[dabo-users] Using DynamicCaption in grid causes annoyingscreen flicker

Author: <lalong1@bellsouth.net>

Posted: 2007-08-16 11:35:40   Link

Not sure how to address this. Any ideas?

Thanks,

Larry Long

No virus found in this outgoing message.

Checked by AVG Free Edition.

Version: 7.5.484 / Virus Database: 269.11.19/956 - Release Date: 08/16/2007

9:48 AM

©2007 <lalong1@bellsouth.net>
Back to top
Re: [dabo-users] Using DynamicCaption in grid causes annoyingscreen flicker

Author: <lalong1@bellsouth.net>

Posted: 2007-08-16 11:42:09   Link

Unless anyone sees this as something to be improved upon, please disregard.

I fixed the issue by not using the DynamicCaption. Instead I subclassed the

form's update to refresh the caption.

Thanks,

Larry

-----Original Message-----

From: dabo-users-bounces@leafe.com [mailto:dabo-users-bounces@leafe.com] On

Behalf Of lalong1@bellsouth.net

Sent: Thursday, August 16, 2007 12:36 PM

To: 'Dabo Users list'

Subject: [dabo-users] Using DynamicCaption in grid causes annoyingscreen

flicker

Not sure how to address this. Any ideas?

Thanks,

Larry Long

No virus found in this outgoing message.

Checked by AVG Free Edition.

Version: 7.5.484 / Virus Database: 269.11.19/956 - Release Date: 08/16/2007

9:48 AM

[excessive quoting removed by server]

©2007 <lalong1@bellsouth.net>
Back to top
Re: [dabo-users] Using DynamicCaption in grid causesannoying screen flicker

Author: Paul McNett

Posted: 2007-08-16 11:46:08   Link

lalong1@bellsouth.net wrote:

> Not sure how to address this. Any ideas?

It is complex; When I put in the Dynamic* for dColumn, I was testing on

Linux, that doesn't exhibit the screen flicker. On Windows though, it is

horrible. It's actually better than it was, but I need to rewrite how it

is handled. Perhaps I could try some Freeze/Thaw calls which would be

relatively easy though.

Please add a ticket to dabo, component 'ui', keywords 'dGrid flicker

dynamic'.

--

pkm ~ http://paulmcnett.com

©2007 Paul McNett
Back to top
Re: [dabo-users] Using DynamicCaption in grid causesannoying screen flicker

Author: Paul McNett

Posted: 2007-08-16 11:49:43   Link

lalong1@bellsouth.net wrote:

> Unless anyone sees this as something to be improved upon, please disregard.

> I fixed the issue by not using the DynamicCaption. Instead I subclassed the

> form's update to refresh the caption.

That's probably the best idea anyway. The Dynamic* properties of dColumn

are relative to the current row, so they are really meant for things

like BackColor, ForeColor, Font, etc.: things you want to look different

depending on the record it is representing. You probably don't want

Caption based on a particular row in the grid's dataset, but on

something external to that dataset.

--

pkm ~ http://paulmcnett.com

©2007 Paul McNett