A Flash Developer Resource Site

Results 1 to 6 of 6

Thread: Flash Re-Direct

  1. #1
    Senior Member
    Join Date
    Dec 2004
    Location
    Sunny California
    Posts
    294

    Flash Re-Direct

    I have my main movie www.tsigold.com
    Now I also have 10 other www.blankcompany.com
    I have it now when you go to one of them for example www.tapetechtools.com and it hits my logo page so when you hit the logo it takes you to www.tsigold.com.
    Can I have it where when you type in for example www.tapetechtools.com it automaticly hits the logo page then re directs them to www.tsigold.com.

  2. #2
    Senior Member
    Join Date
    Oct 2004
    Posts
    2,049
    you could set some javascript in the www.tapetechtools.com main index.html to redirect your too www.tsigold.com

  3. #3
    Senior Member
    Join Date
    Dec 2004
    Location
    Sunny California
    Posts
    294
    How do you make it happen, That should be part of my question also, how do you do this and set up.

  4. #4
    Senior Member
    Join Date
    Oct 2004
    Posts
    2,049
    here is a redirect I use alot - hope it helps

    PHP Code:
    <html>
    <
    head>

    <
    SCRIPT LANGUAGE="JavaScript">
    <!-- 
    Begin
    redirTime 
    "10000"// ADJUST HOW MANY SECONDS TO REDIRECT
    redirURL "http://www.YOUR SITE HERE"// NEW SITE
    function redirTimer() { self.setTimeout("self.location.href = redirURL;",redirTime); }
    //  End -->
    </script>
    <
    title>Redirect To New Site</title// ENTER NEW TITLE NAME HERE
    <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
    <
    style type="text/css">
    <!--
    body,td,th {
        
    color#FF0000;
    }
    body {
        
    background-color#000000;
    }
    -->
    </
    style></head>

    <
    BODY onLoad="redirTimer()">
    <
    p><center>
    <
    br>
    <
    br>
    <
    br>
    <
    br>
    <
    font face="arial, helvetica" size"-2">MESSAGE HERE <b>10 seconds</b> or you may <b>CLICK</bthe link below<br// ADD A CLICKABLE LINK
    <br>
    <
    br>
    <
    br>
    <
    a href="http://www.NEW_URL.COM">NEW SITE NAME</a// FOR A CLICKABLE LINK
    </center><p>
    </
    body>
    </
    html

  5. #5
    Senior Member
    Join Date
    Dec 2004
    Location
    Sunny California
    Posts
    294
    Cool wattsup, I thank you. Do I paste in the html body?

  6. #6

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  




Click Here to Expand Forum to Full Width

HTML5 Development Center