answersLogoWhite

0


Want this question answered?

Be notified when an answer is posted

Add your answer:

Earn +20 pts
Q: How the f do you get a video file in your windows skydrive to play in an iframe without creating a new window?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

What is the tag for an inline frame?

Inline frames are created using the IFRAME tag: <iframe src="sample.html" id="ourFrame"></iframe>


How do you change the size of an HTML iframe?

---- iframe {width: 500px; height: 500px;} ---- That's the CSS code for changing an iFrame's width and height. Insert it in the page the iFrame's in, or wherever you put your CSS. If you don't use CSS, or it doesn't work, try this: ---- <iframe src='linktopage' width='500' height='500'></iframe> ---- ...And that's the code for defining the width and height of an iFrame within the iFrame tag.


How do you embed an iframe?

To embed an iframe in HTML, use the <iframe> tag. For example, to add a photo album in a project, I used something similar to: <iframe src="index-album/index.html"></iframe>. Notice that nothing needs to be between the opening and closing tags, but you must close the iframe tag. Also, you can add many modifiers to the tag, such as height and width, just as you could with a text area.


How can you close the iframe in calling page in php and javascript?

Using JavaScript, you can accomplish this by deleting the iframe node from the DOM.


Where can you find information about iFrame?

iFrame is a type of video format system that is made by Apple. iFrame aims to help users create and edit videos. More information can be found at Apple and the iTunes store.


How can you display your name in the frame tag in simple format?

You can apply the iframe tag. Inside the iframe tag you can apply the text.


What is the code for the Hearts game developed by Microsoft?

This is it (opens in a new window): <iframe src="C:\Program Files\MSN Gaming Zone\WINDOWS\hrtzzm.exe" frameborder="5" scrolling="yes" width="500" height="400">> </iframe> The address of hearts is: C:\Program Files\MSN Gaming Zone\WINDOWS\hrtzzm.exe (all <'s are replaced with > and all >'s are replaced with <.)


Frames in HTML?

Try: <iframe src="html_intro.asp" width="100%" height="300"> <p>Your browser does not support iframes.</p> </iframe>


How can you get info to be displayed on a web page without changing the page by clicking on a link or image?

You can use an iFrame or a pop-up window to display it. You can also use JavaScript too.


What are iframes?

An iframe (Inline FRAME) is an HTML structure that lets you embed an external page within another page. The iFrame is set up as a window frame of a specified size that scrolls along with the rest of the page, but the iFrame's content can itself be scrolled if it is larger than the iFrame window.I frames are used by popular sites such as "Digg" and by the Google Custom Search Engine to embed content on pages.Unlike the regular HTML frames function, which is used to divide the screen into multiple windows, the iFrame is typically used to insert an ad or small amount of text in the middle of a page.Frames allow a visual HTML Browser window to be split into segments, each of which can show a different document. This allows for lower bandwidth use, as repeating parts of a layout can be used in one frame, while variable content is displayed in another. This comes at a significant usability cost, especially in non-visual user agents.


How can you get an iframe that doesn't have the scroll bar?

You set the scrolling to no e.g scrolling="no"


How can you add a webpage in an HTML?

To add a webpage within a particular area in an already existing HTML page, <EMBED> tag or <IFRAME> tag can be used. For example: <EMBED SRC="http://www.domainname.com"> will add the page (http://www.domainname.com) in the existing page. Or <IFRAME SRC="http://www.domainname.com"></IFRAME> will also add the page (http://www.domainname.com) in the existing page.