Jump to content

Recommended Posts

Posted

Hi

I have just reccently created an auto-download program.

I was wondering was there a way to hide it from the:

Processor

The Notification Bar

The Task Bar

Any of these would help.

Mainly the Notification Bar.

Scorekeeper

Fou-Lu - Bof4 "...Wouldst thou fight a god?"
Posted

Hi

I have just reccently created an auto-download program.

I was wondering was there a way to hide it from the:

Processor

The Notification Bar

The Task Bar

Any of these would help.

Mainly the Notification Bar.

Scorekeeper

so you want your program to download things automatically, but be invisible to the user eh? going to have to pass...
Posted (edited)

First i would like to know if it is possible.

If it is could you send me in the right direction.

ScoreKeeper

Edited by Scorekeeper
Fou-Lu - Bof4 "...Wouldst thou fight a god?"
Posted

First i would like to know if it is possible.

If it is could yyou send me in the right direction.

ScoreKeeper

HI,

hmmh, is it enough, if you put the #NoTrayIcon option? Maybe you could name your script svchost.exe and put to the autostart area in the registiry.

I think, many users wouldn´t notice anything.

Hope that helps.

So long,

Mega

Scripts & functions Organize Includes Let Scite organize the include files

Yahtzee The game "Yahtzee" (Kniffel, DiceLion)

LoginWrapper Secure scripts by adding a query (authentication)

_RunOnlyOnThis UDF Make sure that a script can only be executed on ... (Windows / HD / ...)

Internet-Café Server/Client Application Open CD, Start Browser, Lock remote client, etc.

MultipleFuncsWithOneHotkey Start different funcs by hitting one hotkey different times

Posted

Here is another good question.

Is it possible to make program at which you type the name in say..

Limewire.exe, it would vanish but would still be running.

ScoreKeeper

Fou-Lu - Bof4 "...Wouldst thou fight a god?"
Posted

HI,

if there isn´t a TrayIcon this should be enough.

Opt("WinTitleMatchMode", 2)
$result = InputBox("Program to hide", "Type in window title:", "", "", -1, -1, "", "", 10)
WinSetState($result, "", @SW_HIDE)
Sleep(5000)
WinSetState($result, "", @SW_SHOW)

So long,

Mega

Scripts & functions Organize Includes Let Scite organize the include files

Yahtzee The game "Yahtzee" (Kniffel, DiceLion)

LoginWrapper Secure scripts by adding a query (authentication)

_RunOnlyOnThis UDF Make sure that a script can only be executed on ... (Windows / HD / ...)

Internet-Café Server/Client Application Open CD, Start Browser, Lock remote client, etc.

MultipleFuncsWithOneHotkey Start different funcs by hitting one hotkey different times

Posted

The prob is some of the stuff i want to hide has a tray icon.

But i guess this will have to do for the now.

This will do for the download program.

Not limewire though, but you can not open it.

HotKeySet( "^{F1}" , "Hide")
HotKeySet( "^{F2}" , "Unhide")
HotKeySet("{ESC}", "Terminate")

$program =  InputBox ("By ScoreKeeper", "Please Input what you want to hide.", "LimeWire: Enabling Open Information Sharing", "", 200, 150)

Func Hide()
WinSetState($program, "", @SW_HIDE)
EndFunc


Func Unhide()
WinSetState($program, "", @SW_SHOW)
EndFunc

While 1
    Sleep(0x000001)
WEnd

Func Terminate()
    Exit 0
EndFunc

ScoreKeeper

Fou-Lu - Bof4 "...Wouldst thou fight a god?"

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...