Jump to content

Recommended Posts

Posted

Well, I'm making a script and want my GUI to be visible, but not to be on the tray (tool bar)

I don't mean the little autoit icon, I mean the actual window.

Is it possible?

Posted (edited)

Well, I'm making a script and want my GUI to be visible, but not to be on the tray (tool bar)

I don't mean the little autoit icon, I mean the actual window.

Is it possible?

Yes.

1) A hidden window doesn't show in the task bar.

2) child windows don't show in the task bar either.

3) A child of a hidden window needed be hidden itself.

Think this is what you want

#include <guiconstants.au3>
$g = GUICreate("Parent")
;note absence of GuiSetState means the parent gui remains hidden
GUICreate("child",-1,-1,-1,-1,-1,-1,$g)
GUISetState();will show the child
While GUIGetMsg() <> -3
WEnd
Edited by martin
Serial port communications UDF Includes functions for binary transmission and reception.printing UDF Useful for graphs, forms, labels, reports etc.Add User Call Tips to SciTE for functions in UDFs not included with AutoIt and for your own scripts.Functions with parameters in OnEvent mode and for Hot Keys One function replaces GuiSetOnEvent, GuiCtrlSetOnEvent and HotKeySet.UDF IsConnected2 for notification of status of connected state of many urls or IPs, without slowing the script.

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...