Jump to content

Recommended Posts

Posted

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?

  • 2 weeks later...
Posted

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]

Posted

"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!

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