HTML - Limiting What You See In An Iframe
Hi all, im working on a project that requires me to show live feed from an ip camera. I have already created an iframe, now the problem is i want to limit some stuff from the users. Is there a solution to this? please help! i'll attach an image to this post. Thanks alot.
* the area highlighted in red is what i want to remove. Similar TutorialsHi everyone, I'm new one and I need same help. And sorry for my English. I'd like to make html site with QuickTime to limit download. I simple html look like that: <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> <html> <head> <meta http-equiv="content-type" content="text/html; charset=iso-8859-2"> <title>quicktime</title> </head> <body bgcolor="#FFFFFF" text="#000000" link="#0000FF" alink="#FF0000" vlink="#000080"> <OBJECT CLASSID="clsid:02BF25D5-8C17-4B23-BC80-D3488ABDDC6B" WIDTH="320" HEIGHT="256" CODEBASE="http://www.apple.com/qtactivex/qtplugin.cab";> <PARAM name="SRC" VALUE="MyMovie.mov"> <PARAM name="CONTROLLER" VALUE="TRUE"> <PARAM name="AUTOPLAY" VALUE="TRUE"> <PARAM name="CACHE" VALUE="FALSE"> <PARAM name="QTSRC" VALUE="http://IP:8080/film.mov"> <PARAM name="QTSRCDONTUSEBROWSER" VALUE="TRUE"> <PARAM name="QTSRCCHOKESPEED" VALUE="movierate"> <EMBED src="MyMovie.mov" WIDTH="320" HEIGHT="256" CONTROLLER="TRUE" AUTOPLAY="TRUE" CACHE="FALSE" QTSRC="http://IP:8080/film.mov" QTSRCDONTUSEBROWSER="TRUE" QTSRCCHOKESPEED="movierate" TYPE="video/quicktime" PLUGINSPAGE="http://www.apple.com/quicktime/download/";> </EMBED> </OBJECT> </body> </html> And it works, but I want to do this not with .mov files but with .wav files. I'm trying to change that script but it's not working well. Thanks and regards. Kamil. I am trying to create menu based website for cars, how to I limit a menu to include only the models for a certain make. If ford is selected I want to be able to select mustang, taurus and f150, but not accord, because accord is made by honda. I am using Make: <select name="Make"> <option value="0">Acura</option> <option value="1">Audi</option> <option value="3">Bently</option> <option value="4">Ford</option> </select> format to create my menus, any reference to a page explaining how this would be helpful as well as defining (proper terminology) what I am trying to do. TIA, James Greetings, I am trying to prevent the my window from scrolling from side to side and up&down. You can see in my image that the frame has excess information to the right of the screen. I cannot tell if this is b/c of the images or if the problem is in the code. Here is the current code for the page. <!doctype html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html> <head> <meta http-equiv="content-type" content="text/html;charset=ISO-8859-1"> <title>The works of D.M. Rosemark</title> <style type="text/css" media="screen"> <!-- body { background-color: #ffffff; margin: 0px } #horizon { color: white; background-color: transparent; text-align: center; position: absolute; top: 50%; left: 0px; width: 100%; height: 1px; overflow: visible; visibility: visible; display: block } #wrap {margin: 0px auto; width: 1273px; } iframe.one { width: 600px; height: 375px; border-style:ridge; border-width:10px; border-color:#999999; padding:1px; float: left; display: inline; //--> </style> </head> <body> <div id="wrap"> <img src="topbanner.jpg" alt="Top Banner" style="width: 1260px;"><div id="innerwrap"> <img src="leftimage.jpg" style="float: left; width: 325px;"> <iframe class="one" frameborder="0" src="01.html" scrolling="yes"> </iframe> <img src="rightimage.jpg" style="float: left; display: inline; width: 325px; "></div> <img src="bottombanner.jpg" alt="Bottom Banner" style="width: 1260px;"></div> </body> </html> Thanks in advance!! D.M. Rosemark Ok I know this isn't really a HTML issue, but to avoid complex clientside pixel-counting of fonts I've thought of something far more simple. I need to limit the length of a string to stop it wrapping. The first step is to limit the string's length in characters, using the following php script: PHP Code: function trim_string($string) { $trim_string = '...'; $chars = 55; $chars_adjusted = $chars - strlen($trim_string); if (strlen($string) > $chars) { $string = substr($string,0,$chars_adjusted); $string .= $trim_string; } return $string; } Fine, no problem. Now however the strings are not all of equal length because of differences in length of each character (see the warmdebate.com homepage for my debacle). I thought that a relatively simple solution would be to simple use some sort of CSS or HTML wizardry to stretch the trimmed string to a fixed length (like full alignment, only for a non-wrapped string). Since this doesn't involve pixel counting or anything like that I figure it should be doable in CSS or HTML. Also, if there are any standard solutions to this other than what I'm proposing please let me know! I have 2 IFrames on a page. I am going to end up with a long list of shows to catch-up on. Is there a way I can embed an IFrame with the list, and when you click on a show, you it will change the Playing Show http://tiny.cc/catchup <---The page I am referring to. hi, i've a very simple html page, where i have an iframe. The problem is that i want to add some text below the iframe. however, my text keeps showing up on the right hand side of the iframe. i've looked at the tutorials discussing the tags available for iframe, but surprisingly, none seem to relevant to this. Code: <html> <body> <table border="0" cellspacing="10"> <table border="0" cellpadding="0" cellspacing="0" align="left"> <td valign="top"> <iframe src="mySource.jsp" height="700" width="600" frameborder="0" scrolling="auto"></iframe> </td> </table> This should be displayed below the iframe but actually gets displayed on the right </body> </html> any help / guidance in this will be much appreciated. thanks in advance! Now here is my problem. I'm not familiar with other laguages then html and a little bit of javascript and I wanted to make a site for me and my brothers photography company. I currently using dreamweaver and have figured out the way I want to make this site. I tried using ordinary frames, but I want the website to be aligned in the middle and I could make that happen. That is why I went into iframes and a regular table on the index page. My problem now is that I have several iFrames and I want a link from one to open in another. http://www.trans4mind.com/personal_d...e/iframes3.htm here is a link for this to happen, and the simple solution is to name the frame and then target the link. but I have tried that and when the link is from one iframe to another it won't work. If the link is on the index page and target the iframe then it works. Do you have any idea why this happens? I know it's possible since the link above does it. Hi! I've been cracking my head trying to solve this: How can I insert a iframe [i.e. 300x200px] inside of another iframe [i.e. 700x500px] and pull different web content n each one? kind of concentric iframes or like a 'Donut iframe' Hi I am trying to make my page to look like an iPod. What I have thought of is to put in an iPod as an image, then make the screen of the iPod a frame where I can put in a scroll bar and text. I have managed to insert an iFrame but I cannot get it to be on the screen area. Here's the code I have written so far <html> <body bgcolor="#383838"> <table border="1" width="100%" cellpadding="150"><td align="center"><font align="center" color="#383838">asdadadasdadadasdaadadada <img src="ipod.png" align ="middle"> <iframe src="page1.html" align ="right" width=20% height=60%></iframe> </td> </font> </table> </body> </html> Can anyone tell me what I can do to get this sorted? Thanks. Much appreciated I'm trying to make a iframe for http://www.atdhe.net/. When I go to preview the code it goes to a link buck advertisement. Anyone know why and how to fix it ? Code: <iframe src="http://www.atdhe.net/" style="border:0px #FFFFFF none;" name="myiFrame" scrolling="yes" frameborder="0" marginheight="0px" marginwidth="0px" height="90%" width="90%"></iframe> hey everyone I have created a navigtion bar and attached it on a page using iframes. whenever i click on the links i want the content to appear just besides the navigation bar. Such that navigation bar should be present on each page of the link. Please tell me how to specify the target. I need the solution urgently Hello there. I am a programmer working on a browser. I have a question... When I load some pages, there is an IFRAME tag. I gather that this means that it contains an imbedded document. How do I load/view this document? Hello, I'm having trouble solving a problem involving frames in IE7. On this page, in IE7 only, I get a large frame with a jumble of images below it. However, the same page looks perfect in Firefox. Additionally, this page works fine in IE7. It uses frames as well...?! Is there something wrong with my HTML code? Please help. Thanks in advance, echotree The content in the white part of this page... http://www.limotraveler.com/reservations.htm is loaded in an iframe. If you click on Create Profile the page does not load in Internet Explorer, yet it works fine in Firefox. I have tried many times in the past month to find a fix on this issue & without any luck am posting it here. Does anyone have a clue how to fix this? Now if you go this page & click create profile... https://www.smartcarsinc.com/reservations/ ... everything works fine. This is the exact page that my iframe points to. So somewhere the iframe is causing an issue. I have also tried to set this up in a regular frame (something I definitely did not want to do) & it did not work that way either. So at this point I am quite stuck. If anyone has any input that would be very helpful. Thanks! I'm designing a utility in HTML and I wanted to know. Is there any way possible where if I have two iframes on the same page, if I can get links in 1 iframe to open up in the other(when clicked on) without setting the target for that iframe in the links(cause I am not the admin of the pages I want to feature). Like, so that I can add an atribute or incorporate it in the css to say "alright, if theres a link in a page feature in iframe-1, it will show up in iframe-2 when someone clicks on it" so without me specifying a target in the atributes of the links. If someone could help me out with this I would greatly apreaceate it. thanks, -goredsox Hi I'm making a website for a project at college and we have to insert a iframe which creates a scrollbar in the content area. But how to I add content/test to make the scroll bar work? The scroll is showing, but is showing but its faded out because there isn't any text for it to scroll down. This is the code I'm using. ><iframe frameborder="0" name="content" height="500" width="798" scrolling="yes" marginheight="0" marginwidth="0" src ="michael_1.html"></iframe> Hey, I have been working on this for a couple of hours now and cant figure it out. I trying to set my page where it opens all links in a Iframe, but so far it has failed. Heres my source: Code: <map name="id1_A_Map"> <area shape="rect" alt="Home" coords="20,19,180,122" href="../index.html" target="conframe"> </map> <map name="id4_D_Map"> <area shape="rect" alt="Links" coords="20,67,152,138" href="../links.html" target="_conframe"> <area shape="rect" alt="Home" coords="20,7,152,67" href="../index.html" target="_conframe"> </map> <map name="id6_F_Map"> <area shape="rect" alt="Forum" coords="20,65,152,132" href="../forum/" target="_parent"> <area shape="rect" alt="Free Web Proxy" coords="20,0,152,65" href="../proxy/index.php" target="conframe"> </map> <map name="id8_H_Map"> <area shape="rect" alt="About Me" coords="20,0,152,65" href="../about.html" target="_conframe"> </map> <map name="id11_K_Map"> <area shape="rect" alt="Myspace Profile" coords="180,36,351,65" href="http://www.myspace.com/mmhs_hacker" target="_blank"> </map> </div> <div style="position:absolute; left:480px; top:68px; width:491px; height:460px; background-color:transparent; overflow:auto; z-index:2;"> <iframe id="conframe" allowtransparency="true" height="460" width="491" frameborder="0" style="position: absolute; top: 68px; left: 480px;" src="http://www.google.com" ></iframe> </div> The proxy link id the only Active link at the time Heres a link to the site netvirus.no-ip.org Can you please assist me with this problem. Thanks in advance I am coding a simple CMS project and I really like this template I found online http://www.quackit.com/html/template...example_5.html however it uses iframes. Aren't iframes out dated? Is there anyway to convert this template to work without iframes? Thanks in advance. Hey, I'm trying to get my guilds website up. And I'm stuck. http://squeezingavocados.urli.net/ As you see the iFrame in the middle has a scrollbar, but I want the scrollbar away, and instead of just hiding the rest of the text in it, I want the iFrame to expand downwards, and in the same time expand the middle text "image", it is expandable, it wont pixelrate or anything, how can i do this. (Btw I use adobe photoshop and dremweaver) Hello, I have an iFrame and I have to make the height more then it should be because it have a flash dropdown in it so if the height is not enough, it cuts off the drop down. But the problem is that I have a text box areas below where the iFrame goes over and you can not click the textbox to start typing. I have the iframe transparent in the css. I was wondering if there was someway to make it so you can click the textbox like normal with the iframe still over it? Thanks |