F

Here is where the computer is not just a "stupid machine"
Scroll Up
start.. image1
 
image2
 
image3
 
image4
 
image5
 
image6
 
image7
 
image8
 
image9
 
image10
 
end.
Scroll Down

// this tells jquery to run the function below once the DOM is ready $(document).ready(function() { // choose text for the show/hide link var showText="Show the hidden text"; var hideText="Hide the text"; // create the toggle link $("#hide_this").before("

"+showText+""); // hide the content $('#hide_this').hide(); // capture clicks on the newly created link $('a#toggle_link').click(function() { // change the link text if ($('a#toggle_link').text()==showText) { $('a#toggle_link').text(hideText); } else { $('a#toggle_link').text(showText); } // toggle the display $('#hide_this').toggle('slow'); // return false so any link destination is not followed return false; }); });

What causes the faint horizontal lines on my monitor?

Most likely, you have purchased a Cathode Ray Tube (CRT) monitor based on Sony's Trinitron technology. These monitors use an aperture grill instead of a shadow mask, and the aperture grill causes the lines. You can see the line in the following photo:

You can see a faint horizontal line just above the tip of the cursor
To understand why the lines are there, we need to look at the shadow mask and aperture grill systems and understand the differences between them.
  • Shadow mask: The shadow mask in a CRT monitor is a metal screen filled with holes that sits just behind the phosphor layer. Red, green and blue electron guns each send a beam through a hole in the shadow mask to a single pixel triad of the tube's phosphor layer. Although this method keeps the image sharp, it diminishes the potential brightness of the screen (See How Television Works for details).
  • Aperture grill: Instead of a metal screen, the aperture grill consists of tiny vertical wires. The pixels on the phosphor layer are arranged in vertical stripes instead of triangular groups. When the electron guns scan across a row, the wires isolate the pixels that the individual beams focus on. This approach has a couple of advantages over conventional shadow masking. First, the use of wires instead of a screen allows more of the energy from the electron gun through, which makes for a brighter image. Second, the potential vertical resolution of a display can be greater, since the aperture grill does not rely on the vertical spacing of pinholes as a shadow mask does.
Aperture grills have one significant problem and this is what causes the horizontal lines you see. To maintain equal spacing between the vertical wires, the aperture grill has two (one on displays 14 inches or smaller) horizontal damper wires, which hold the vertical wires in place. These wires cast a faint shadow on the phosphor layer that is not normally noticeable, but when you have an image or application with a light background displayed on your monitor, you can see them.
The Trinitron patent recently expired, which is why you see Trinitron technology (and the faint lines) in other manufacturer's monitors now. Several companies have also developed hybrid variations that combine features of the aperture grill and the shadow mask.

0 comments

Post a Comment

Followers