litlmike Posted April 7, 2006 Posted April 7, 2006 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? _ArrayPermute()_ArrayUnique()Excel.au3 UDF
Bokkie Posted April 7, 2006 Posted April 7, 2006 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?
CyberSlug Posted April 7, 2006 Posted April 7, 2006 I don't know of a way directly with AutoIt.You can use a util like TaskArrangehttp://users.forthnet.gr/pat/efotinis/prog...askarrange.html Use Mozilla | Take a look at My Disorganized AutoIt stuff | Very very old: AutoBuilder 11 Jan 2005 prototype I need to update my sig!
herewasplato Posted April 8, 2006 Posted April 8, 2006 What would happen if you minimize each window to to the system tray:http://www.autoitscript.com/forum/index.ph...ndpost&p=139195and then restored each in the order that you wanted them to appear on the task bar?Would that reorder them? [size="1"][font="Arial"].[u].[/u][/font][/size]
herewasplato Posted April 19, 2006 Posted April 19, 2006 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]
litlmike Posted April 20, 2006 Author Posted April 20, 2006 "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! _ArrayPermute()_ArrayUnique()Excel.au3 UDF
herewasplato Posted April 20, 2006 Posted April 20, 2006 NICELY DONE!thanks... while testing code from this post http://www.autoitscript.com/forum/index.ph...ndpost&p=174990 I noticed the effect that you desired.enjoy... [size="1"][font="Arial"].[u].[/u][/font][/size]
Recommended Posts
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 accountSign in
Already have an account? Sign in here.
Sign In Now