Re: Links
- From: Leonhardt Wille <lwille@xxxxxxxxxx>
- Date: Thu, 07 Apr 2005 23:27:27 +0200
I don't think that your question has to do anything with the Internet SDK, but I will try to help you.
you could try the following to make a window without address bar and everything:
<html>
<head>
<script type="text/javascript">
function display()
{
newwin=window.open( "about:blank", "Display", "dependent=no,menubar=no,statusbar=no,location=no,scrollbars=no,status=no,location=no");
newwin.document.write("<body bgcolor=\"red\"><a href=\"http://www.yourfirstlinkhere.com\"><img src=\"images/image1.jpg\" width=200></a><br><br><a href=\"http://www.yoursecondlinkhere.com\"><img src=\"images/image2.jpg\" width=200></a>");
self.close(); // Here the user will be asked if he wants to close the window
}
</script>
</head>
<body OnLoad="display()">
</body>
</html>
This solution is not very nice (because the user is asked if he wants to permit closing of the parent window). If you know about internet programming in MFC, you could just create a SDI application with a CHtmlView view.
On InitialUpdate, you would call SetFullScreen or SetTheaterMode and use Navigate2 to load your desktop HTML page.
I hope these ideas could help you
regards Leo
Big D wrote:
I am trying to accomplish creating a html page that uses one of the windows background. I plan on launching in kiosk mode. The purpose is to hide the desktop. I need use a image and place two icons that when clicked it will launch some other address. How can this be done.
1.HTML page that takes full length of display.(sold color) 2. embedded is two images that when clicked launch another webpage.
Thanks.
.
- References:
- Links
- From: Big D
- Links
- Prev by Date: Links
- Next by Date: How not to parse HTML??
- Previous by thread: Links
- Next by thread: How not to parse HTML??
- Index(es):
Relevant Pages
|
Loading