Jump to content

Activating multiple windows!


Marlo
 Share

Recommended Posts

Hello again! some of you probably saw my other thread where i was creating a downloader manager that opened about 8-10 instances of itself for each download etc.

Anyway i got that working and now i have 10 or so windows that i want to manage! by this i mean when i select one window i want to move 10 other windows to the from of the screen BUT behind the main window.

So i have a window called "Download manager" and 10 little windows called "Downloading" which are external to the first window. When the first when is activated the 10 other winsows are brought to the front of all the other screens but again behind the selected window.

Sorry if i make this sound weird but its been a long and hot day :P

Click here for the best AutoIt help possible.Currently Working on: Autoit RAT
Link to comment
Share on other sites

Hello again! some of you probably saw my other thread where i was creating a downloader manager that opened about 8-10 instances of itself for each download etc.

Anyway i got that working and now i have 10 or so windows that i want to manage! by this i mean when i select one window i want to move 10 other windows to the from of the screen BUT behind the main window.

So i have a window called "Download manager" and 10 little windows called "Downloading" which are external to the first window. When the first when is activated the 10 other winsows are brought to the front of all the other screens but again behind the selected window.

Sorry if i make this sound weird but its been a long and hot day :P

If you mean that you want the 10 other windows to be below the window you have activated then you could step through them all with

for $n = 0 to 9
 winsetontop($gui[$n],"",1)
 winsetontop($gui[$n],"",0)
next
winactivate($Main_gui)
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.
Link to comment
Share on other sites

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
 Share

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...