Code to Hide TaskBar etc?

Thread Solved

Join Date: Jun 2006
Posts: 18
Reputation: gendv is an unknown quantity at this point 
Solved Threads: 0
gendv gendv is offline Offline
Newbie Poster

Code to Hide TaskBar etc?

 
0
  #1
Jun 27th, 2006
Is there code to hide the taskbar in I-Net explorer, all menu icons, menu's and address bar? or perhaps make it AutoHide?
Reply With Quote Quick reply to this message  
Join Date: Aug 2005
Posts: 5,264
Reputation: iamthwee is a splendid one to behold iamthwee is a splendid one to behold iamthwee is a splendid one to behold iamthwee is a splendid one to behold iamthwee is a splendid one to behold iamthwee is a splendid one to behold iamthwee is a splendid one to behold iamthwee is a splendid one to behold 
Solved Threads: 377
Featured Poster
iamthwee's Avatar
iamthwee iamthwee is offline Offline
Posting Expert

Re: Code to Hide TaskBar etc?

 
0
  #2
Jun 27th, 2006
Er I don't think so. I'm pretty sure it's something only the user has control over. Why would you want to do that anyway?
*Voted best profile in the world*
Reply With Quote Quick reply to this message  
Join Date: Jun 2006
Posts: 18
Reputation: gendv is an unknown quantity at this point 
Solved Threads: 0
gendv gendv is offline Offline
Newbie Poster

Re: Code to Hide TaskBar etc?

 
0
  #3
Jun 27th, 2006
haha, I did it! So simple I could kick myself.

<SCRIPT LANGUAGE="JavaScript">

<!-- Begin
if (this.name!='fullscreen'){
window.open(location.href,'fullscreen','fullscreen,scrollbars')
}
// End -->
</script>
And to answer your question, it's for navigational purposes in Coursware.
Reply With Quote Quick reply to this message  
Join Date: Aug 2005
Posts: 5,264
Reputation: iamthwee is a splendid one to behold iamthwee is a splendid one to behold iamthwee is a splendid one to behold iamthwee is a splendid one to behold iamthwee is a splendid one to behold iamthwee is a splendid one to behold iamthwee is a splendid one to behold iamthwee is a splendid one to behold 
Solved Threads: 377
Featured Poster
iamthwee's Avatar
iamthwee iamthwee is offline Offline
Posting Expert

Re: Code to Hide TaskBar etc?

 
0
  #4
Jun 27th, 2006
Hey that's simple but how do you close it? I had to terminate it using windows task manager.
*Voted best profile in the world*
Reply With Quote Quick reply to this message  
Join Date: Dec 2004
Posts: 1,655
Reputation: tgreer is an unknown quantity at this point 
Solved Threads: 35
Team Colleague
tgreer tgreer is offline Offline
Made Her Cry

Re: Code to Hide TaskBar etc?

 
0
  #5
Jun 27th, 2006
Any window you open, with script, you can close, with script.

The typical approach is to add a button with onclick="self.close();".

If you're asking how a user would close a fullscreen window... toggle out of FullScreen mode (F11 on Windows platform), and close it normally.
Reply With Quote Quick reply to this message  
Join Date: Jun 2006
Posts: 18
Reputation: gendv is an unknown quantity at this point 
Solved Threads: 0
gendv gendv is offline Offline
Newbie Poster

Re: Code to Hide TaskBar etc?

 
0
  #6
Jun 28th, 2006
Originally Posted by tgreer
Any window you open, with script, you can close, with script.

The typical approach is to add a button with onclick="self.close();".

If you're asking how a user would close a fullscreen window... toggle out of FullScreen mode (F11 on Windows platform), and close it normally.
You cannot toggle as it is JS that tells it to go fullscreen. You need a JS button to tell it to close.
Reply With Quote Quick reply to this message  
Join Date: Jun 2006
Posts: 18
Reputation: gendv is an unknown quantity at this point 
Solved Threads: 0
gendv gendv is offline Offline
Newbie Poster

Re: Code to Hide TaskBar etc?

 
0
  #7
Jun 28th, 2006
<form>
<input type=button value="Close Window" onClick="javascript:window.close();">
</form>
or

<a href="javascript:window.close();">Close Window</a>
Reply With Quote Quick reply to this message  
Reply

This thread has been marked solved.
Perhaps start a new thread instead?
Message:



Similar Threads
Other Threads in the HTML and CSS Forum
Thread Tools Search this Thread



About Us | Contact Us | Advertise | DaniWeb | Acceptable Use Policy | RSS Feed

©2003 - 2009 DaniWeb® LLC