Jump to content

Is There A Way To Re-arrange Active Windows?


Recommended Posts

Is there a way to Re-Arrange Active Windows on my task bar? So let's say I have Scite And IE open, and Scite is first on my taskbar, and IE second. Can I reverse them, without closing, and re-opening?

Good question! I'd love to know if there is a solution as well. Anyone?

Link to comment
Share on other sites

  • 2 weeks later...

Is there a way to Re-Arrange Active Windows on my task bar? So let's say I have Scite And IE open, and Scite is first on my taskbar, and IE second. Can I reverse them, without closing, and re-opening?

"Hide" them and the order that you "show" the windows is the order that they will be on the task bar.
WinSetState ( "Command Prompt", "", @SW_HIDE )
WinSetState ( "about:blank - Microsoft Internet Explorer", "", @SW_HIDE )
Sleep(3000)
WinSetState ( "Command Prompt", "", @SW_SHOW )
WinSetState ( "about:blank - Microsoft Internet Explorer", "", @SW_SHOW )
Sleep(3000)
WinSetState ( "Command Prompt", "", @SW_HIDE )
WinSetState ( "about:blank - Microsoft Internet Explorer", "", @SW_HIDE )
Sleep(3000)
WinSetState ( "about:blank - Microsoft Internet Explorer", "", @SW_SHOW )
WinSetState ( "Command Prompt", "", @SW_SHOW )

[size="1"][font="Arial"].[u].[/u][/font][/size]

Link to comment
Share on other sites

"Hide" them and the order that you "show" the windows is the order that they will be on the task bar.

WinSetState ( "Command Prompt", "", @SW_HIDE )
WinSetState ( "about:blank - Microsoft Internet Explorer", "", @SW_HIDE )
Sleep(3000)
WinSetState ( "Command Prompt", "", @SW_SHOW )
WinSetState ( "about:blank - Microsoft Internet Explorer", "", @SW_SHOW )
Sleep(3000)
WinSetState ( "Command Prompt", "", @SW_HIDE )
WinSetState ( "about:blank - Microsoft Internet Explorer", "", @SW_HIDE )
Sleep(3000)
WinSetState ( "about:blank - Microsoft Internet Explorer", "", @SW_SHOW )
WinSetState ( "Command Prompt", "", @SW_SHOW )
NICELY DONE!
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...