tab("new", $drive:) is opening windows explorer

Discuss and share scripts and script files...
Post Reply
kotlmg
Posts: 321
Joined: 30 Jun 2010 17:14

tab("new", $drive:) is opening windows explorer

Post by kotlmg »

the following command
tab("new", $drive:); is always opening windows explorer rather than the xyplorer. this is with the latest version i have checked.
am i missing something.

highend
Posts: 14940
Joined: 06 Feb 2011 00:33
Location: Win Server 2022 @100%

Re: tab("new", $drive:) is opening windows explorer

Post by highend »

Code: Select all

$drive="D"; tab("new", $drive:);
Can't reproduce with latest beta...
One of my scripts helped you out? Please donate via Paypal

kotlmg
Posts: 321
Joined: 30 Jun 2010 17:14

Re: tab("new", $drive:) is opening windows explorer

Post by kotlmg »

i have the following code. i am using win 7 64 bit os. latest xyplorer version.

$drive = inputselect("Currently selected item:<crlf><curitem>", $AllDrive,,2,,650,450, "Select drive letter for new Virtual Drive");
end(strlen($drive) > 1), "Please select only one check box, script ends.";
OpenWith """$Winmount"" -m <items> -drv:$drive:";
wait(2000); // wait 2 seconds
tab("new", $drive:);

it is opening windows explorer.

Post Reply