HTML - Redirecting If User Doesnt Have Flash;
Hi everyone,
How diffecult is the code where it checks if user has Flash Player installed on their computer before directing them to the appropriate web page. i.e. I want to build a site in Flash but dnt want people who cant view Flash to see nothing, so will also build a more basic version in HTML. I know its possible, just not sure how. Any help will be gratefully appreciated. Regards, liam Similar TutorialsHi Guys, I have a problem where my dropdown menu is hidden behind a flash element. Google tells me this is common problem. If founds a few solutions that recommended adding <param name="wmode" value="opaque" /> or <param name="wmode" value="transparent" /> ...to my parameters. but this doesnt work. im using a super accessible type dropdown... the menu is essentially a list <li> with some JS behind it. Heres my link http://www.roxywebdesign.com/gateway/ Any suggestion are be welcome. If i cant get this fixed then my backup plan is the use JSCookMenu which apparently does work. But ive already completely chanded the code for my menu once and would like to avoid that this time. Thanks guys!! Is there a way I can load a page (with a text informing that 'you need flash player to view this web') if he doesnt have it installed in his browser? How would I do this? Your help is greatly appreciated. I have a jailbroken iPhone 4 and I am trying to get a flash embed to display on it but I am having a lot of trouble. i have successfully used and enabled different flash objects elsewhere but this is the only one that wont run. so I know it will work. HTML Code: <head> <title>iSwim</title> </head> <body> <div style="width: 320px; height: 356px; margin-top: 80px; margin-bottom: 44px;"> <object width="320" height="356"> <param name="movie" value="http://listen.grooveshark.com/widget.swf" /> <param name="wmode" value="opaque" /> <param name="allowScriptAccess" value="always" /> <param name="flashvars" value="hostname=cowbell.grooveshark.com&widgetID=22770693&style=metal&bbg=000000&bfg=046cc7&bt=FFFFFF&bth=000000&pbg=FFFFFF&pbgh=046cc7&pfg=000000&pfgh=FFFFFF&si=FFFFFF&lbg=FFFFFF&lbgh=046cc7&lfg=000000&lfgh=FFFFFF&sb=FFFFFF&sbh=046cc7&p=0" /> <embed src="http://listen.grooveshark.com/widget.swf" type="application/x-shockwave-flash" width="320" height="356" flashvars="hostname=cowbell.grooveshark.com&widgetID=22770693&style=metal&bbg=000000&bfg=046cc7&bt=FFFFFF&bth=000000&pbg=FFFFFF&pbgh=046cc7&pfg=000000&pfgh=FFFFFF&si=FFFFFF&lbg=FFFFFF&lbgh=046cc7&lfg=000000&lfgh=FFFFFF&sb=FFFFFF&sbh=046cc7&p=0" allowScriptAccess="always" wmode="opaque" /></object> </div> </body> Can anyone help me to make sure the flash displays right? what happens is the player loader displays at the top instead of the center and the control buttons are present before it loads. then after the loader fails it shows a "cannot connect" error. so I think the flash object is resizing inside its self. can anyone help me clean up this script so it will display correctly in iPhone safari (with flash enabled)? website is he smalldotdesign.zxq.net/iSwim.html that is where the HTML file is located that I am trying to get corrected. thanks in advance. i have a feeling this is going to be a tough fix. Hi, im quite good at html, doing php, and a bit of javascript, but i need to find out how to make a page redirect by itself. With a time limit so that you go to the page, and in 5 second it goes to a different page. I hope you can help me as it is quite urgent. Thanks alot anyone who can help. Oh, and it has to be pure html, NO Javascript Thanks Coggz how do i redirect an iframe from outside of the iframe like home +------------------------------------------------------------------------+ about |IFRAMEIFRAMEIFRAMEIFRAMEIFRAMEIFRAMEIFRAMEIFRAME| contact |IFRAMEIFRAMEIFRAMEIFRAMEIFRAMEIFRAMEIFRAMEIFRAME| contact +------------------------------------------------------------------------+ redirect the iframe on the click of the links on the left, without refreshing the whole page cheers, Rory Hello, I am a novice at HTML and need help with redirecting. How do you make a redirect using HTML so that it opens in the same window and not in a new window? I have a page I am making for a test logoff scrren and I need the page to redirect to another web site after a certain period or upon a click on a link. Every time I set it up, it pops open a new window. I know I must be missing something, but I cant figure out what. I am using transitional DTD, if that helps. Thank you for your time! I've been through a few sites about redirecting traffic from your MySpace to another site, but I'm not sure how it really works. I know there is some flash involved but I also know that MySpace dissallowed some flash code on the site. What can I do here? I'm working on an adult site for a client that needs to use an age verfication form before allowing visitors into the adult sections. I have the age verification form in place, but it only directs you to one page upon proper adult verification. What I would like to have happen is, a visitor clicks on a specific adult topic (there are several to choose from), have their age verified only once (I think this can be done with cookies), then be directed to the specific section they selected in the first place. I'd like to know, 1.) What should I use for the cookie code? 2.) Any ideas on how I can set it up that they're directed to the right spot after they're verified? Thanks! Hey guys, I'm sure this had been asked a thousand times, and I know I can search Google and find answers. Which I have found some, but I seem to get a more straight forward answer when the people answering my question know my exact situation. So anyways: I have my bands website: www.aqueousband.com And let's say that I acquire www.aqueous.com. I have a hosting plan with godaddy for www.aqueousband.com and all of my files are on that hosting plan and I want to keep that domain name. So it would make the most sense to just make www.aqueous.com redirect to www.aqueousband.com ... right? So how would I do this? I was reading about 301 redirect, am I on the right track? I started to think, if I just bought a domain name I would just have the domain name and no hosting. So how do I put an index file on a domain name that has no hosting attached to it? There's gotta be a way! Please help. For a site I am creating, there is a signup feature. When someone clicks to register, a form pops up. Once they click "Send" the information gets sent to the email address (which I have outlined in the php), I want to redirect it to another window which says thanks for registering. So far, the information does get sent to the email address, but the form stays as is. So the form works fine, I just need to figure out how to redirect it or a way I can show text saying "Thanks your info as been sent". Please help with any tips! Here is the code for what I have so far: PHP Code: <?php //grabs posted information $name=$_POST['name']; $email=$_POST['email']; $phone=$_POST['phone']; $city=$_POST['city']; $country=$_POST['country']; $submit=$_POST['submit']; //formats email $sendTo="emailaddy@gmail.com";//recipient email $subjectheader="Response from Website"; //subject line $message="Name: $name\n Email: $email\n Phone Number: $phone\n City: $city\n Country: $country "; //message body $header="From: ".$name."<".$email.">"; //sender's email if(isset($_POST[submitted])){ //checks to see if comment textarea has content if(!empty($_POST[name])){ //sends the email mail($sendTo, $subjectheader, $message, $header); //visually confirms if email has been sent if(mail){ echo"Information Sent. Thank you for your help"; }else{ echo"Failed to send message"; } //end confirmation }else{ echo"Please fill out all the fields"; } //end of empty } //end of isset ?> Hey I am fairly new to the whole webmaster and html coding. My current situation is that I have a html file that works for an old domain. I have recently move to a new subdomain that is hosting my website. I uploaded my html file to the host and everything is working smoothly except for the fact that none of the links work! Please help. Thankyou I have a form with several buttons, once the buttons are clicked I want them to redirect the user to another page, with the exception of one button which after being clicked, I want it to not redirect anywhere. Is it possible to do this? Any help is much appreciated. Hello, I use some of pages of my website as IFRAME. My question is: I want Google to crawl IFRAME contents but when the IFRAME url is typed in browser directly in browser or when a visitor clicks on the IFRAME url in search results, I want the visitor to be redirected to main page of my website. Is it possible? If it is possible, how can I do that? http://www.ofm07.com/clubpages/2/index.html why dont my iframes reach the top of the frame help please, thanks Hi Just wondering if there is a non -java way of detecting a user's browser width and then redirecting to the appropriate version of my site? Cheers Shaun sorry i fixed the problem as soon as i posted so i deleted it im pat btw why doesnt ebay use headers? h1 h2 ect.. I viewed the source and was surprised not to find a h1, h2 or h3 ect.. I am just wondering if anyone knows why eBay isn't web standards compliant? I have put this together but I don't know why it doesn't work. the link is: http://www.throughtheconcreterecords...tojournal.html if anyone could take a look at the page source, see what is there and what ISN'T showing up on the actual site and tell me why that would be so nice and awesome! anyone? -kevin throughtheconcrete@hotmail.com Hi, I'm kinda new to Html. I just started, and my brother installed easy php so I can see what my website will look like when I put it up. How come images show up as an X? is there anyway to fix this? please anyone know? Heej ppl. Ik maked a inlogpage with html with a kinda keylogger in it for testing, after i completed the Html document and opend from my documents the Keylogger works great! but if i am uploading the html code's on Freewebs.com i get this www.freewebs.com/iffsow he say's The Form is unoprational!. I dont understand it, its the same code. but he doesnt work? Maybe you could help me. cheers |