473,396 Members | 1,875 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,396 software developers and data experts.

Garbled Font

I've made this little example script for a project I'm working on, and
the text that gets output seems to be chewed up in IE for Windows.
Every other (major) browser has no problem rendering the text, but in
IE it seems garbled, or aliased perhaps. Can anyone confirm this, and
maybe help me diagnose it? I would very much appriciate it.

Here is the example:
http://www.whit.info/dev/sf_toy.html

Thanks in advance!

-- Whit Nelson

Oct 10 '06 #1
9 1452

pe**********@gmail.com wrote:
I've made this little example script for a project I'm working on, and
the text that gets output seems to be chewed up in IE for Windows.
Every other (major) browser has no problem rendering the text, but in
IE it seems garbled, or aliased perhaps. Can anyone confirm this, and
maybe help me diagnose it? I would very much appriciate it.

Here is the example:
http://www.whit.info/dev/sf_toy.html

Thanks in advance!

-- Whit Nelson
Works fine in IE6.

Oct 10 '06 #2
I beg to differ. Examine the screenshot I am including, and you will
see that the sample text is much clearer than the generated number
text. This is a screenshot from IE 6.

http://www.whit.info/dev/sf_toy.gif

Thanks for helping.

-- Whit Nelson

web.dev wrote:
pe**********@gmail.com wrote:
I've made this little example script for a project I'm working on, and
the text that gets output seems to be chewed up in IE for Windows.
Every other (major) browser has no problem rendering the text, but in
IE it seems garbled, or aliased perhaps. Can anyone confirm this, and
maybe help me diagnose it? I would very much appriciate it.

Here is the example:
http://www.whit.info/dev/sf_toy.html

Thanks in advance!

-- Whit Nelson

Works fine in IE6.
Oct 10 '06 #3
I agree with the other guy... it works in IE6. It's just not pretty.
The point is that... that's probably as good as it gets.

Whit wrote:
I beg to differ. Examine the screenshot I am including, and you will
see that the sample text is much clearer than the generated number
text. This is a screenshot from IE 6.

http://www.whit.info/dev/sf_toy.gif

Thanks for helping.

-- Whit Nelson

web.dev wrote:
pe**********@gmail.com wrote:
I've made this little example script for a project I'm working on, and
the text that gets output seems to be chewed up in IE for Windows.
Every other (major) browser has no problem rendering the text, but in
IE it seems garbled, or aliased perhaps. Can anyone confirm this, and
maybe help me diagnose it? I would very much appriciate it.
>
Here is the example:
http://www.whit.info/dev/sf_toy.html
>
Thanks in advance!
>
-- Whit Nelson
Works fine in IE6.
Oct 10 '06 #4
I'm afraid I can't accept that. Just using CSS, if I use IE's filter
opacity rule, it looks fine. It would seem to be something in the
Javascript which is garbling the text. The parties involved require a
clean look, and I aim to give it to them. Also I just want to know what
is going wrong. Does anyone have any clue?

-- Whit Nelson

ag******@gmail.com wrote:
I agree with the other guy... it works in IE6. It's just not pretty.
The point is that... that's probably as good as it gets.

Whit wrote:
I beg to differ. Examine the screenshot I am including, and you will
see that the sample text is much clearer than the generated number
text. This is a screenshot from IE 6.

http://www.whit.info/dev/sf_toy.gif

Thanks for helping.

-- Whit Nelson

web.dev wrote:
pe**********@gmail.com wrote:
I've made this little example script for a project I'm working on, and
the text that gets output seems to be chewed up in IE for Windows.
Every other (major) browser has no problem rendering the text, but in
IE it seems garbled, or aliased perhaps. Can anyone confirm this, and
maybe help me diagnose it? I would very much appriciate it.

Here is the example:
http://www.whit.info/dev/sf_toy.html

Thanks in advance!

-- Whit Nelson
>
Works fine in IE6.
Oct 10 '06 #5
TC

pe**********@gmail.com wrote:
I've made this little example script for a project I'm working on, and
the text that gets output seems to be chewed up in IE for Windows.
Every other (major) browser has no problem rendering the text, but in
IE it seems garbled, or aliased perhaps. Can anyone confirm this, and
maybe help me diagnose it? I would very much appriciate it.

Here is the example:
http://www.whit.info/dev/sf_toy.html
Delete or suppress the style definitions, and you'll see it happen a
little more clearly. Then suppress the 'grow' call, and the problem
goes away. So it's something to do with the 'grow' procedure.

HTH,
TC (MVP MSAccess)
http://tc2.atspace.com

Oct 10 '06 #6
GLC
It seems to me to be caused by microsoft's opacity filter.
Perhaps you could use style.color and fade from background color to the
desired foreground color. It takes a little more work but has better
cross browser support.

TC wrote:
pe**********@gmail.com wrote:
I've made this little example script for a project I'm working on, and
the text that gets output seems to be chewed up in IE for Windows.
Every other (major) browser has no problem rendering the text, but in
IE it seems garbled, or aliased perhaps. Can anyone confirm this, and
maybe help me diagnose it? I would very much appriciate it.

Here is the example:
http://www.whit.info/dev/sf_toy.html

Delete or suppress the style definitions, and you'll see it happen a
little more clearly. Then suppress the 'grow' call, and the problem
goes away. So it's something to do with the 'grow' procedure.

HTH,
TC (MVP MSAccess)
http://tc2.atspace.com
Oct 10 '06 #7
GLC
The .test class is not using the filter you have set.
For IE to use 'filter' a width or a height MUST be specified.
Try adding width:100% to the .test class and you'll see the rendered
text is then 60% opaque and the font no longer antialiased.

Whit wrote:
I'm afraid I can't accept that. Just using CSS, if I use IE's filter
opacity rule, it looks fine. It would seem to be something in the
Javascript which is garbling the text. The parties involved require a
clean look, and I aim to give it to them. Also I just want to know what
is going wrong. Does anyone have any clue?

-- Whit Nelson

ag******@gmail.com wrote:
I agree with the other guy... it works in IE6. It's just not pretty.
The point is that... that's probably as good as it gets.

Whit wrote:
I beg to differ. Examine the screenshot I am including, and you will
see that the sample text is much clearer than the generated number
text. This is a screenshot from IE 6.
>
http://www.whit.info/dev/sf_toy.gif
>
Thanks for helping.
>
-- Whit Nelson
>
web.dev wrote:
pe**********@gmail.com wrote:
I've made this little example script for a project I'm working on, and
the text that gets output seems to be chewed up in IE for Windows.
Every other (major) browser has no problem rendering the text, but in
IE it seems garbled, or aliased perhaps. Can anyone confirm this, and
maybe help me diagnose it? I would very much appriciate it.
>
Here is the example:
http://www.whit.info/dev/sf_toy.html
>
Thanks in advance!
>
-- Whit Nelson

Works fine in IE6.
Oct 10 '06 #8

pe**********@gmail.com wrote:
I've made this little example script for a project I'm working on, and
the text that gets output seems to be chewed up in IE for Windows.
Every other (major) browser has no problem rendering the text, but in
IE it seems garbled, or aliased perhaps. Can anyone confirm this, and
maybe help me diagnose it? I would very much appriciate it.

Here is the example:
http://www.whit.info/dev/sf_toy.html

Thanks in advance!

-- Whit Nelson
Have Windows XP Pro SP2 with latest IE 6+. See no problems here.

Info_Junkie

Oct 10 '06 #9
JRS: In article <11*********************@b28g2000cwb.googlegroups. com>,
dated Mon, 9 Oct 2006 20:33:25 remote, seen in
news:comp.lang.javascript, Whit <wh********@gmail.composted :
>Lines: 40
>I'm afraid I can't accept that. Just using CSS, if I use IE's filter
opacity rule, it looks fine. It would seem to be something in the
Javascript which is garbling the text. The parties involved require a
clean look, and I aim to give it to them. Also I just want to know what
is going wrong. Does anyone have any clue?

-- Whit Nelson

If you want to be taken seriously by the experts here -

Honour Usenet convention
Do not top-post
Do not over-quote
If possible, use a standard SigSep

The choice is yours.

It's a good idea to read the newsgroup and its FAQ. See below.
--
© John Stockton, Surrey, UK. ?@merlyn.demon.co.uk Turnpike v4.00 IE 4 ©
<URL:http://www.jibbering.com/faq/>? JL/RC: FAQ of news:comp.lang.javascript
<URL:http://www.merlyn.demon.co.uk/js-index.htmjscr maths, dates, sources.
<URL:http://www.merlyn.demon.co.uk/TP/BP/Delphi/jscr/&c, FAQ items, links.
Oct 11 '06 #10

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

2
by: Tony Marston | last post by:
I have just moved my website to a new hosting provider as the previous one went belly-up. Everything is now fine except for one thing - my counter script which generates a PNG image is sending out...
1
by: supercow | last post by:
Hello, Can anyone give me some pointers for solving my php serving problem? I'm relatively new to this. The problem is: all php output appears client side as garbled text (in firefox, and IE...
1
by: steve | last post by:
Hi, My Windows machine running PHP Version 4.3.4, Apache, mysql, Zend IDE has developed a strange problem whereas the html code coming out of php sometimes gets garbled in unpredicatable ways,...
6
by: Thomas Philips | last post by:
I have a question about deleting objects. My game has two classes, Player and Alien, essentially identical, instances of which can shoot at each other. Player is described below class...
21
by: Applebrownbetty | last post by:
Hi, I've run into a problem with IE 6 vs. Mozilla when displaying a completely CSS positioned page, and was wondering if any resident CSS guru might quickly be able to find the problem(s). Thank...
60
by: deko | last post by:
As I understand it, most browser manufacturers have agreed on 16px for their default font size. So, this should be an accurate conversion for percentages: px % 16 = 100 14 = 87.5 13 =...
1
by: blbmdsmith | last post by:
Has anyone seen the following error while starting httpd: Starting httpd: httpd: Syntax error on line 54 of /usr/local/apache2/conf/httpd.conf: API module structure `python_module' in file...
1
by: genesaika | last post by:
I am working on a rather basic text based adventure useing dev-C++ and running in DOS i am useing windows vista and XP. i made a menu type of area on the screen and if u change locations it labels...
8
by: mechphisto | last post by:
(The Zend Web site doesn't have any forum; if someone knows of a Web forum for Zend, please let me know.) I'm using the latest Zend Studio 5.5.1. Just installed it on a fresh Fedora 9 box. I've...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: ryjfgjl | last post by:
In our work, we often receive Excel tables with data in the same format. If we want to analyze these data, it can be difficult to analyze them because the data is spread across multiple Excel files...
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
0
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing,...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.