Windows 7 Forums


Reply
Thread Tools

Solution to hiding taskbar problem

 
 
Dave \Crash\ Dummy
Guest
Posts: n/a
Thanked:
 
      06-30-2011
Sorry, but the original thread has devolved into who knows what. This is
a way to control the taskbar using a HTA (Hypertext Application) script.
When the script below is run, say from the "Startup" folder, the entire
screen blanks. The only way to recover the taskbar is to hit the "Start"
button on the keyboard. The taskbar will then stay up to run
applications until an empty screen area is clicked. The background can
be any color or desktop image desired. It may not suit everybody, but it
is worth a look. Just copy the script below and save it with a ".hta"
extension.

;================HideTaskbar.hta===============
<HTML><HEAD><title>Hide Taskbar</title>
<HTA:APPLICATION ID="oHTA"
APPLICATIONNAME="myApp"
CAPTION="no"
BORDER="none"
INNERBORDER="no"
WINDOWSTATE="maximize"
>

</HEAD>
<BODY scroll="no" style="background:black;"></BODY>
</HTML>
;===========================================

--
Crash

"When you get to a fork in the road, take it."
~ Yogi Berra ~
 
Reply With Quote
 
 
 
 
thanatoid
Guest
Posts: n/a
Thanked:
 
      07-01-2011
"Dave \"Crash\" Dummy" <> wrote in
news:iuitvd$1us$:

> Sorry, but the original thread has devolved into who knows
> what.


Agreed.

While I am not the OP, and do not have this problem (I have
solved it ages ago but apparently in either an incomprehensible
or unacceptable manner) I do have a question about your script.

You mention "empty screen area". If the entire screen blanks,
then the icons disappear as well, right? What happens if you
happen to click on an area 'invisibly' occupied by an icon and
its title? Usually, /that/ would be activated/run.

Just curious.
 
Reply With Quote
 
Paul in Houston TX
Guest
Posts: n/a
Thanked:
 
      07-01-2011
thanatoid wrote:
> "Dave \"Crash\" Dummy" <> wrote in
> news:iuitvd$1us$:
>
>> Sorry, but the original thread has devolved into who knows
>> what.

>
> Agreed.
>
> While I am not the OP, and do not have this problem (I have
> solved it ages ago but apparently in either an incomprehensible
> or unacceptable manner) I do have a question about your script.
>
> You mention "empty screen area". If the entire screen blanks,
> then the icons disappear as well, right? What happens if you
> happen to click on an area 'invisibly' occupied by an icon and
> its title? Usually, /that/ would be activated/run.
>
> Just curious.


Try it and see!
 
Reply With Quote
 
Dave \Crash\ Dummy
Guest
Posts: n/a
Thanked:
 
      07-01-2011
thanatoid wrote:
> "Dave \"Crash\" Dummy" <> wrote in
> news:iuitvd$1us$:
>
>> Sorry, but the original thread has devolved into who knows what.

>
> Agreed.
>
> While I am not the OP, and do not have this problem (I have solved it
> ages ago but apparently in either an incomprehensible or
> unacceptable manner) I do have a question about your script.
>
> You mention "empty screen area". If the entire screen blanks, then
> the icons disappear as well, right? What happens if you happen to
> click on an area 'invisibly' occupied by an icon and its title?
> Usually, /that/ would be activated/run.
>
> Just curious.


I don't use desktop icons for anything, so I didn't consider them. The
answer to your question is that nothing will happen because the desktop
is covered by a full screen application. It is not really blanked. If you
want to reach desktop icons, you have to recover the taskbar with the
Start key, then click on the desktop icon in the system tray.
--
Crash

Atheism is a matter of faith, too.
 
Reply With Quote
 
thanatoid
Guest
Posts: n/a
Thanked:
 
      07-01-2011
"Dave \"Crash\" Dummy" <> wrote in
news:iukbgn$stj$:

<snip>

> I don't use desktop icons for anything, so I didn't
> consider them. The answer to your question is that nothing
> will happen because the desktop is covered by a full screen
> application. It is not really blanked. If you want to reach
> desktop icons, you have to recover the taskbar with the
> Start key, then click on the desktop icon in the system
> tray.


Cool, thanks for the clarification.

IOW, your script, while /appearing/ to just blank the desktop,
actually covers it with a window of "nothing", or an invisible
shield, right? (If I got it, don't bother replying.)
 
Reply With Quote
 
Ed Cryer
Guest
Posts: n/a
Thanked:
 
      07-01-2011
On 01/07/2011 17:13, thanatoid wrote:
> "Dave \"Crash\" Dummy"<> wrote in
> news:iukbgn$stj$:
>
> <snip>
>
>> I don't use desktop icons for anything, so I didn't
>> consider them. The answer to your question is that nothing
>> will happen because the desktop is covered by a full screen
>> application. It is not really blanked. If you want to reach
>> desktop icons, you have to recover the taskbar with the
>> Start key, then click on the desktop icon in the system
>> tray.

>
> Cool, thanks for the clarification.
>
> IOW, your script, while /appearing/ to just blank the desktop,
> actually covers it with a window of "nothing", or an invisible
> shield, right? (If I got it, don't bother replying.)


Yes, it works exactly as Crash says. I keep the Recycle Bin on the
desktop, and I couldn't get to that.
You could replace black screen with anything; different colour, pattern
or picture.

Ed

 
Reply With Quote
 
Dave \Crash\ Dummy
Guest
Posts: n/a
Thanked:
 
      07-01-2011
This variation allows you to toggle the taskbar off and on
(hidden/unhidden) by clicking on the screen.

;================HideTaskbar2.hta===============
<HTML><HEAD><title>Hide Taskbar</title>
<HTA:APPLICATION ID="oHTA"
APPLICATIONNAME="myApp"
CAPTION="no"
BORDER="none"
INNERBORDER="no"
>

<script type="text/vbs">
winstate=1
window.moveTo 0,0
sub toggle()
if winstate=1 then
window.resizeTo screen.Width, screen.Height
else
window.resizeTo screen.availWidth, screen.availHeight
end if
winstate = -1*winstate
end sub
toggle()
</script>
</HEAD>
<BODY scroll="no" style="background:black;" onClick="toggle()"></BODY>
</HTML>
;===========================================
--
Crash

"The fewer the facts, the stronger the opinion."
~ Arnold H. Glasow ~
 
Reply With Quote
 
 
 
Reply

« Half screen | Spam »
Thread Tools

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
Windows 7 random freezes - Potential Solution quix Windows 7 Support 37 06-28-2011 01:34 PM
Hiding an icon from taskbar to show only in notification area (Messenger, Skype etc.) #Flizr User Submitted Articles 2 07-14-2010 09:51 AM
Solved Taskbar Thumbnail Flicker toddincabo Windows 7 Support 0 07-03-2010 06:17 PM
Windows 7 Annoyances Nibiru2012 General Discussion 6 03-17-2010 06:17 PM
Problem with preview in taskbar eewo Windows 7 Support 1 04-17-2009 06:01 PM


All times are GMT +1. The time now is 08:28 AM.
W7Forums is an independent website and is not affiliated with Microsoft Corporation.

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33