Forum Moderators: Robert Charlton & goodroi

Message Too Old, No Replies

How Many Links Can I Put Up In a Flash Site?

         

Hercules2

11:29 am on Jul 6, 2005 (gmt 0)

10+ Year Member



Hello everybody,

For a client of mine who has a flash site I made a page with a sitemap and 20 static optimized content pages. Im linking to the sitemap from the home page. The rest of the page has no content only a title and met tags. Now I want to get more pagerank value on those optimized pages.

How many links can I place in the (empty) body of the homepage? I only have the 'sitemap' link there right now. Can I put all the links to the 22 optimized pages there?

Hercules2

3:46 pm on Jul 6, 2005 (gmt 0)

10+ Year Member



anyone got a suggestion?

Hercules2

8:06 pm on Jul 7, 2005 (gmt 0)

10+ Year Member



nobody got a clue?

BillyS

10:36 pm on Jul 7, 2005 (gmt 0)

WebmasterWorld Senior Member 10+ Year Member



whats' a flash site?

LostOne

11:41 pm on Jul 7, 2005 (gmt 0)

10+ Year Member



How did this one get into the G forum?

oodlum

3:27 am on Jul 8, 2005 (gmt 0)

10+ Year Member



Give the guy a break.

The standard response is "if it benefits your users, do it". The real-world response would be: if it doesn't look too spammy, do it. If you can design the page in such a way that the links look integrated within the overall design, go for it. 20 links won't set of any automatic alarm bells but might look like crap. 5 or 10 links is pretty standard in the footer of a splash page.

Hercules2

8:00 am on Jul 8, 2005 (gmt 0)

10+ Year Member



Oodlum thanx for you answer. The links are not visible on the homepage for visitors. Do you think this code is allowed, it looks like this:

<HTML>
<HEAD>
<META name="description" content="my clients blabla">
<META name="keywords" content="10 keywords">
<TITLE>my client's business name</TITLE>

<!-- FLASHDETECTIE -->
<script type="text/javascript" src="http://www.insiders.nl/flash_detect.js">
//<![CDATA[
function getFlashVersion() { return null; };
//]]>
</script>

<script type="text/javascript">
//<![CDATA[
var requiredVersion = 5;
var flashVersion = getFlashVersion();

if (flashVersion >= requiredVersion) {
location.replace('home.php');
}
else if (flashVersion > 0) {
location.replace('geenflash.html');
}
else if (flashVersion == 0) {
location.replace('geenflash.html');
}
else if (flashVersion == flashVersion_DONTKNOW ¦¦ flashVersion == null) {
document.write('<p>This browser does not support Javascript-based Flash detection.</p>');
}
//]]>
</script>
<!-- FLASHDETECTIE -->

</HEAD>
<body>
<a href="http://myclientssite.nl/sitemap.html"></a>
<a href="http://myclientssite.nl/optimisedpage1"></a>
<a href="http://myclientssite.nl/optimisedpage2"></a>
<a href="http://myclientssite.nl/optimisedpage3"></a>
<a href="http://myclientssite.nl/optimisedpage4"></a>
<a href="http://myclientssite.nl/optimisedpage5"></a>
<a href="http://myclientssite.nl/optimisedpage6"></a>
</body>
</HTML>

ltedesco

1:10 pm on Jul 8, 2005 (gmt 0)

10+ Year Member



I am not sure if Google can read links inside a .swf file

Hercules2

2:21 pm on Jul 8, 2005 (gmt 0)

10+ Year Member



Googlebot/2.1 (+http://www.google.com/bot.html)

This what above bot simulator sees:

May i put extra links like in the above code?

<html>

<head>

<meta name="description" content="company blabla">

<meta name="keywords" content="20 keywords">

<title>company name

</title>

<!-- flashdetectie -->

<script type="text/javascript" src="http://www.insiders.nl/flash_detect.js" > //<![cdata[ function getflashversion() { return null; }; //]] > </script>

<script type="text/javascript" > //<![cdata[ var requiredversion = 5; var flashversion = getflashversion(); if (flashversion >= requiredversion) { location.replace('home.php'); } else if (flashversion > 0) { location.replace('geenflash.html'); } else if (flashversion == 0) { location.replace('geenflash.html'); } else if (flashversion == flashversion_dontknow ¦¦ flashversion == null) { document.write('<p >this browser does not support javascript-based flash detection.</p >'); } //]] > </script>

<!-- flashdetectie -->

</head>

<body>

<a href="http://www.myclient.nl/sitemap.html">

</a>

</body>

Hercules2

9:27 am on Jul 11, 2005 (gmt 0)

10+ Year Member



"May i put extra links like in the above code?"

I mend the code below. And does anyone think the google spider will find these pages?

Any body got hints or tips or a clue?

Gomez

5:36 am on Jul 14, 2005 (gmt 0)

10+ Year Member



If you want googlebot to find and index the pages, then putting links to all the pages from your home page is a legit approach. The current sitemap link you set up is also another good approach. I have seen many websites using flash do both. Make sure you link to pages with good content, not just pages with only links and a swf file. What would really help your situation would be to write at least 50-100 wds of content related to your client's website/business and place it below the main flash file on the each page. You can use css to format the text so it blends nicely into the overall look of the site. Also make sure each html/content page has a link back to 'index.html' Play it safe & DON'T rely on googlebot to find its way inside your swf.

Gomez

5:43 am on Jul 14, 2005 (gmt 0)

10+ Year Member



Oh yeah one other thing... Make sure your sitemap links have actual anchor text. That is important because googlebot will want to associate each page of your site with a keyword/topic/widget. The links you posted with no anchor text look kinda spammy to me. Links after a <body> tag should be done properly.

Good link idea:
<a href="http://www.yoursite.com/page1.htm">Widget</a>

Not a good link idea:
<a href="http://www.yoursite.com/page1.htm"></a>

nippi

6:24 am on Jul 14, 2005 (gmt 0)

WebmasterWorld Senior Member 10+ Year Member



I am pretty sure google will hammer this for empty anchors leading to other pages.

That is my experience.

If you want to hide them, put them in a div, and set visibility of the div to invisible using css.

I often do this, and an onlick button - show sitemap which shows the div so i can't get pinged for hidden text. I also comment it all so manual checker is 100% sure its all legit