Move tab to other pane?

Discussion & Support for xplorer² professional

Moderators: fgagnon, nikos, Site Mods

Post Reply
User avatar
Ander
Member
Member
Posts: 39
Joined: 2003 Dec 29, 23:11

Move tab to other pane?

Post by Ander »

Has anyone requested this yet? It'd be nice if you could do either or both:

_ Drag a tab to the other pane to move it there

_ Right-click a tab, then click "Move to other pane" (or however you'd choose to word it)

(Of course, maybe there's already a way to do this and I'm just thick.)
User avatar
fgagnon
Site Admin
Site Admin
Posts: 3737
Joined: 2003 Sep 08, 19:56
Location: Springfield

Post by fgagnon »

Dragging tabs around has been suggested, but implementing it may be very low on nikos' priority list.

For now we must be satisfied with
r-click on tab: Move left | Move right menu choice.
And the long sequence of
Tab, Ctrl+Insert, Alt+Ctrl+I, Tab, Ctrl+F4
will copy the top active pane Tab to a new Tab in the inactive pane and remove it from the active pane.  :shrug:
User avatar
snakebyte
Gold Member
Gold Member
Posts: 430
Joined: 2003 May 07, 07:14
Location: Seattle
Contact:

Post by snakebyte »

I use following code for moving tabs. Open notepad paste following code in it and save the file as movetab.vbs (make sure that file extension is .vbs and not .txt)

Code: Select all

set WshShell = WScript.CreateObject("WScript.Shell")
WshShell.AppActivate "xplorer²"
WshShell.SendKeys "^%{INSERT}"   ' Ctrl+Alt+Ins
WshShell.SendKeys "^i"	        ' Ctrl+I
WshShell.SendKeys "^{F4}"        ' Alt+F4
WshShell.SendKeys "{TAB}"        ' Tab
now create a new user command. Give any name that you like and in the description add >"c:\movetab.vbs" or where ever you saved it. Now add this command to your toolbar.

I've created similar scripts for other commands which require multiple keystrokes and added them to toolbar, like toggling b/w list & detail view. Following code launches bookmark pane, which makes opening a bookmarked folder more easier.

Code: Select all

WshShell = WScript.CreateObject("WScript.Shell")
WshShell.AppActivate "xplorer²"
WshShell.SendKeys "%bm"    'alt b m

Refer MSDN for sendkey syntax and parameters.
Help! I'm an AI running around in someone's universe simulator.
User avatar
nikos
Site Admin
Site Admin
Posts: 15816
Joined: 2002 Feb 07, 15:57
Location: UK
Contact:

Post by nikos »

nice!
Starsurfer
Bronze Member
Bronze Member
Posts: 109
Joined: 2002 Feb 23, 23:51
Location: Atlantis

Post by Starsurfer »

Maybe it would be a good idea to Make a sticky thread & put links to
posts like these in that thread.
Post Reply