Results 1 to 2 of 2
Related
-
add code for font size under php echo code Forum: PHP Forum
Replies: 0 -
Code Help. Forum: Myspace Forum
Replies: 0 -
I need help with this code. Forum: HTML Forum
Replies: 1 -
Ignore code and link greeting note code Forum: HTML Forum
Replies: 3 -
need code. Forum: HTML Forum
Replies: 1
-
06-23-2006, 10:59 AM #1
Hey everyone, can someone help me out with some code
I have a simple dilema. I am trying to have an ad at the entrance to my site and need a redirect code. BUT, dont jump, it has to work after the 90 sec video ends.
Now I used this code:
<meta http-equiv="refresh" content="10;url=http://www.my site.com/index">
and it works great if there is not an active x control for the video advertisement. Once you click IEs permission bar and allow active x the timer no longer works.
Im open for really any suggestion. I have looked all over the place for a better code or better code placement and cant find one.
I appreciate the help if anyone can.
JoeY "Digital R S"
-
06-24-2006, 11:48 AM #2
Re: Hey everyone, can someone help me out with some code
I hope that I didnt confuse anyone with my questioin. What I am trying to do is this:
The site I am designing has an advertisement that will need to play at the begining of the site. What I am wanting to accomplish is a redirect at the end of the ad. However, the redirect will not work if you click IEs active X drop down bar which in my case is how my video plays. Below is the code for the whole page:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="refresh" content="10;url=http://www.cmmaa.com/index">
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<title>Untitled Document</title>
<style type="text/css">
<!--
body {
background-image: url();
background-color: #FFFF00;
}
.style1 {
font-size: large;
font-family: Verdana, Arial, Helvetica, sans-serif;
}
-->
</style></head>
<body>
<div align="center">
<p><img src="../Newhavok1.jpg" width="581" height="241" /></p>
<p class="style1"><a href="index.html">SKIP THIS AD</a> </p>
<p>
<object classid="clsid27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,19,0" width="542" height="438">
<param name="movie" value="com.swf" />
<param name="quality" value="high" />
<embed src="com.swf" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="542" height="438"></embed>
</object>
</p>
</div>
</body>
</html>
If you can not tell I am using dreamweaver. I hope that this will clear any questions up.
Thanks JoeY "Digital R S"