CaptainSam
04-13-2003, 04:50 PM
No, but you can use the middle mouse button, on its own or combined with shift, control and shift/control.
Use the -dragCallback flag (available with mostly all ui controls) and define a procedure that will be the -dragCallback command
the proc has to have the following arguments: (string $drag, int $x, int $y, int $mods)
$drag is path to ui element, $x and $y are mouse position, and $mods is whether control and shift are pressed. You dont need to worry about any of these inside the actual proc
So for example
window;
columnLayout;
button -dragCallback mmbCommand;
showWindow;
global proc mmbCommand(string $drag, int $x, int $y, int $mods)
{print "hello";}
CGTalk Moderation
01-14-2006, 09:00 PM
This thread has been automatically closed as it remained inactive for 12 months. If you wish to continue the discussion, please create a new thread in the appropriate forum.
vBulletin v3.0.5, Copyright ©2000-2013, Jelsoft Enterprises Ltd.