Is it OK to hide text...

Discussion in 'HTML & Website Design' started by wd_2k6, Aug 21, 2006.

  1. #1
    Hi,
    because my website contains a lot of flash images i was wondering if it was OK to hide some text which the flash file contains behind the flash file. This is so that search engines can categorise my site better as it will look like my site contains no text at all!
     
    wd_2k6, Aug 21, 2006 IP
  2. ScottHughes

    ScottHughes Peon

    Messages:
    755
    Likes Received:
    25
    Best Answers:
    0
    Trophy Points:
    0
    #2
    No. The search engines will still see it as search engine spam.
     
    ScottHughes, Aug 21, 2006 IP
  3. wd_2k6

    wd_2k6 Peon

    Messages:
    1,740
    Likes Received:
    54
    Best Answers:
    0
    Trophy Points:
    0
    #3
    Stupid search engines :mad:
     
    wd_2k6, Aug 21, 2006 IP
  4. alur3n

    alur3n Peon

    Messages:
    269
    Likes Received:
    4
    Best Answers:
    0
    Trophy Points:
    0
    #4
    On a similar subject.

    If I was running a movie site, would it be OK to hide 'spoiler' information? And tell users to hilight if they want to read it?
     
    alur3n, Aug 21, 2006 IP
  5. Alis

    Alis Peon

    Messages:
    1,787
    Likes Received:
    159
    Best Answers:
    0
    Trophy Points:
    0
    #5
    İts the same method hiding words in any kind , is simllar to hide meta keywords.

    In advice dont do that , you will be get sandboxed on google..
     
    Alis, Aug 21, 2006 IP
  6. wd_2k6

    wd_2k6 Peon

    Messages:
    1,740
    Likes Received:
    54
    Best Answers:
    0
    Trophy Points:
    0
    #6
    I have seen some forums use a "Click to Reveal Spoiler" technique.
     
    wd_2k6, Aug 21, 2006 IP
  7. Dominicc2003

    Dominicc2003 Peon

    Messages:
    853
    Likes Received:
    29
    Best Answers:
    0
    Trophy Points:
    0
    #7
    I have seen the same as wd_2k6.
    A simple javascript would do it OR you could host all the spoilers on a different site and do a mini iframe and put the hidden text in there OR (javascript again) you could make a link that when clicked displays a javascript alert that shows the written spoiler.


    Dom
     
    Dominicc2003, Aug 21, 2006 IP
  8. ScottHughes

    ScottHughes Peon

    Messages:
    755
    Likes Received:
    25
    Best Answers:
    0
    Trophy Points:
    0
    #8
    You could put the spolier information on another page, perhaps a clickable pop-up window...
     
    ScottHughes, Aug 21, 2006 IP
  9. badger879

    badger879 Well-Known Member

    Messages:
    145
    Likes Received:
    1
    Best Answers:
    0
    Trophy Points:
    130
    #9
    yeah, using simple _blank
     
    badger879, Aug 22, 2006 IP
  10. kk5st

    kk5st Prominent Member

    Messages:
    3,497
    Likes Received:
    376
    Best Answers:
    29
    Trophy Points:
    335
    #10
    The <object> element provides for graceful failthrough. Browsers that can't open the Flash object are given the failthrough content. For example, a Flash movie could deliver a jpeg image if there's no Flash plugin. If the browser can't do images, provide text. A search bot would see the text.
    
    <object type="application/x-shockwave-flash"
            data="someflash.swf">
      <param name="wmode"
             value="opaque" />
      <img src="flash-still.jpg"
           alt="a still from the Flash movie" />
      <p>A 16 ton weight falls on a cartoon character in this Flash movie.</p>
    </object>
    Code (markup):
    cheers,

    gary
     
    kk5st, Aug 22, 2006 IP
  11. ScottHughes

    ScottHughes Peon

    Messages:
    755
    Likes Received:
    25
    Best Answers:
    0
    Trophy Points:
    0
    #11

    Yes, this is similar to the 'alt' text for images when using the 'img' tag.
     
    ScottHughes, Aug 22, 2006 IP
  12. kk5st

    kk5st Prominent Member

    Messages:
    3,497
    Likes Received:
    376
    Best Answers:
    29
    Trophy Points:
    335
    #12
    To some small extent. The object failthrough is virtually unlimited. It can be anything that could otherwise appear in a document.

    cheers,

    gary
     
    kk5st, Aug 22, 2006 IP