From wbowley at gmail.com Thu May 8 21:18:37 2008
From: wbowley at gmail.com (Warren Bowley)
Date: Thu, 8 May 2008 17:18:37 -0400
Subject: [sIFR3-dev] r406 transparent background issue.
Message-ID: <8eb514fe0805081418y5df71967r5e35bd241cc990fe@mail.gmail.com>
I have an issue where I am replacing an h1 heading with an sIFR object
and have set the background to be transparent through the modifiers.
The issue is that anything under 48px in size for the lettering, the
background is white. Anything greater than that and the background
does indeed become transparent and the web page color shows through.
Using this code:
sIFR.replace(centurygothic, { selector: 'h1.listingtypetitle', css:
['.sIFR-root { background-color: #ff0000; font-size: 18px; }'],
fitExactly:true, wmode: 'transparent' });
There is a white background around the replaced font.
Using this code:
sIFR.replace(centurygothic, { selector: 'h1.listingtypetitle', css:
['.sIFR-root { background-color: #ff0000; font-size: 48px; }'],
fitExactly:true, wmode: 'transparent' });
The background becomes transparent. I currently don't have any
internet accessible code to show, but everything else it working
correctly. I have done some searches and found that the white
background appears to be an issue with a number of people, but the odd
thing is that I have other h1 headings using the same font that this
doesn't affect. Does that make any sense?
From mark at novemberborn.net Fri May 9 18:12:02 2008
From: mark at novemberborn.net (Mark Wubben)
Date: Fri, 9 May 2008 20:12:02 +0200
Subject: [sIFR3-dev] r406 transparent background issue.
In-Reply-To: <8eb514fe0805081418y5df71967r5e35bd241cc990fe@mail.gmail.com>
References: <8eb514fe0805081418y5df71967r5e35bd241cc990fe@mail.gmail.com>
Message-ID: <7A3434E1-9A28-4D27-9BDF-CF8D980D4531@novemberborn.net>
On May 8, 2008, at 23:18, Warren Bowley wrote:
> I have an issue where I am replacing an h1 heading with an sIFR object
> and have set the background to be transparent through the modifiers.
> The issue is that anything under 48px in size for the lettering, the
> background is white. Anything greater than that and the background
> does indeed become transparent and the web page color shows through.
Wow, that's weird!
> The background becomes transparent. I currently don't have any
> internet accessible code to show, but everything else it working
> correctly.
Could you set up an isolated test case and send it over?
> I have done some searches and found that the white
> background appears to be an issue with a number of people, but the odd
> thing is that I have other h1 headings using the same font that this
> doesn't affect. Does that make any sense?
I think that issue is because people can't figure out how to change
the background color. Should be unrelated to this issue.
Regards,
--
Mark
From wbowley at gmail.com Fri May 9 18:35:51 2008
From: wbowley at gmail.com (Warren Bowley)
Date: Fri, 9 May 2008 14:35:51 -0400
Subject: [sIFR3-dev] r406 transparent background issue.
In-Reply-To: <7A3434E1-9A28-4D27-9BDF-CF8D980D4531@novemberborn.net>
References: <8eb514fe0805081418y5df71967r5e35bd241cc990fe@mail.gmail.com>
<7A3434E1-9A28-4D27-9BDF-CF8D980D4531@novemberborn.net>
Message-ID: <8eb514fe0805091135y2f198b4dr249f783a9ed6c36b@mail.gmail.com>
I've found that it has to do with the differential between the white
of the flash background and the color of the page background. For
instance, the background color of the
was #ebf4f7 initially.
Replacing the
tag with sIFR, you could see the white "box" that
the flash movie was contained in. When I switched the background
color of the to something like #ff0000 or #000000 the white
"box" would disappear. I found the same result if I increased the
font size to 48px.
Try it and see if you experience the same thing. If you don't I'll try
to put something together to illustrate what I was seeing. It seemed
to me that if the difference in brightness/hue of the background and
the movie was small then you would be able to see the box that the
flash movie was contained in.
On Fri, May 9, 2008 at 2:12 PM, Mark Wubben
wrote:
> On May 8, 2008, at 23:18, Warren Bowley wrote:
>>
>> I have an issue where I am replacing an h1 heading with an sIFR object
>> and have set the background to be transparent through the modifiers.
>> The issue is that anything under 48px in size for the lettering, the
>> background is white. Anything greater than that and the background
>> does indeed become transparent and the web page color shows through.
>
> Wow, that's weird!
>
>> The background becomes transparent. I currently don't have any
>> internet accessible code to show, but everything else it working
>> correctly.
>
> Could you set up an isolated test case and send it over?
>
>> I have done some searches and found that the white
>> background appears to be an issue with a number of people, but the odd
>> thing is that I have other h1 headings using the same font that this
>> doesn't affect. Does that make any sense?
>
> I think that issue is because people can't figure out how to change the
> background color. Should be unrelated to this issue.
>
> Regards,
>
> --
> Mark
>
>
From mark at novemberborn.net Sun May 11 13:11:28 2008
From: mark at novemberborn.net (Mark Wubben)
Date: Sun, 11 May 2008 15:11:28 +0200
Subject: [sIFR3-dev] r406 transparent background issue.
In-Reply-To: <8eb514fe0805091135y2f198b4dr249f783a9ed6c36b@mail.gmail.com>
References: <8eb514fe0805081418y5df71967r5e35bd241cc990fe@mail.gmail.com>
<7A3434E1-9A28-4D27-9BDF-CF8D980D4531@novemberborn.net>
<8eb514fe0805091135y2f198b4dr249f783a9ed6c36b@mail.gmail.com>
Message-ID:
On May 9, 2008, at 20:35, Warren Bowley wrote:
> I've found that it has to do with the differential between the white
> of the flash background and the color of the page background. For
> instance, the background color of the was #ebf4f7 initially.
> Replacing the
tag with sIFR, you could see the white "box" that
> the flash movie was contained in. When I switched the background
> color of the
to something like #ff0000 or #000000 the white
> "box" would disappear. I found the same result if I increased the
> font size to 48px.
>
> Try it and see if you experience the same thing. If you don't I'll try
> to put something together to illustrate what I was seeing. It seemed
> to me that if the difference in brightness/hue of the background and
> the movie was small then you would be able to see the box that the
> flash movie was contained in.
Not seeing anything out of the ordinary, checked in Firefox 3 / Mac
and IE 7. Could you give any details about the browser, OS and Flash
version that give these issues?
--
Mark
From wbowley at gmail.com Mon May 12 13:00:04 2008
From: wbowley at gmail.com (Warren Bowley)
Date: Mon, 12 May 2008 09:00:04 -0400
Subject: [sIFR3-dev] r406 transparent background issue.
In-Reply-To:
References: <8eb514fe0805081418y5df71967r5e35bd241cc990fe@mail.gmail.com>
<7A3434E1-9A28-4D27-9BDF-CF8D980D4531@novemberborn.net>
<8eb514fe0805091135y2f198b4dr249f783a9ed6c36b@mail.gmail.com>
Message-ID: <8eb514fe0805120600k4338e372sfe89adb3b6f62758@mail.gmail.com>
I've found the issue. It all had to do with color quality on the
machine. I was testing on a batch of old PC's that the client is
going to have as end terminals, and unfortunately the video cards are
rather old and don't support high end resolutions OR a large number of
colors which is why this was happening. I have had to change the
background of the page to white so things look correct on those
machines.
Drop the color quality on Windows machines to 16K and you will see
what I'm taking about. I have tested it on my development machine
running XP pro/IE6/7 and can confirm that this is happening. Flash is
the latest version downloaded last week. All fonts were converted
with Flash CS3.
> Not seeing anything out of the ordinary, checked in Firefox 3 / Mac and IE
> 7. Could you give any details about the browser, OS and Flash version that
> give these issues?
>
> --
> Mark
>
>
From mark at novemberborn.net Mon May 12 13:11:04 2008
From: mark at novemberborn.net (Mark Wubben)
Date: Mon, 12 May 2008 15:11:04 +0200
Subject: [sIFR3-dev] r406 transparent background issue.
In-Reply-To: <8eb514fe0805120600k4338e372sfe89adb3b6f62758@mail.gmail.com>
References: <8eb514fe0805081418y5df71967r5e35bd241cc990fe@mail.gmail.com>
<7A3434E1-9A28-4D27-9BDF-CF8D980D4531@novemberborn.net>
<8eb514fe0805091135y2f198b4dr249f783a9ed6c36b@mail.gmail.com>
<8eb514fe0805120600k4338e372sfe89adb3b6f62758@mail.gmail.com>
Message-ID: <86DB46D0-AC63-4644-A8F7-16299296D782@novemberborn.net>
Ah, makes sense. Glad you figured it out!
On May 12, 2008, at 15:00, Warren Bowley wrote:
> I've found the issue. It all had to do with color quality on the
> machine. I was testing on a batch of old PC's that the client is
> going to have as end terminals, and unfortunately the video cards are
> rather old and don't support high end resolutions OR a large number of
> colors which is why this was happening. I have had to change the
> background of the page to white so things look correct on those
> machines.
>
> Drop the color quality on Windows machines to 16K and you will see
> what I'm taking about. I have tested it on my development machine
> running XP pro/IE6/7 and can confirm that this is happening. Flash is
> the latest version downloaded last week. All fonts were converted
> with Flash CS3.
>
>> Not seeing anything out of the ordinary, checked in Firefox 3 / Mac
>> and IE
>> 7. Could you give any details about the browser, OS and Flash
>> version that
>> give these issues?
>>
>> --
>> Mark
>>
>>
--
Mark