Page 1 of 1

request: choose name when use copyas

Posted: 24 Mar 2014 11:33
by yusef88

Code: Select all

copyas "*.mp3", "%userprofile%\desktop";
is it possible to make pop out window to choose the name before copying

Re: request: choose name when use copyas

Posted: 24 Mar 2014 17:09
by SkyFrontier
Like this?

Code: Select all

   $nm = input("Which name to use for Copy As?", "Current file<crlf><curname><crlf>will be copied into target having the name you provide.<crlf 2>Target:<crlf>%userprofile%\desktop", "");
   copyas "$nm.?", "%userprofile%\desktop";
   wait 1500;
   status "Done: $nm";

Edit: better wording; status msg.

Re: request: choose name when use copyas

Posted: 24 Mar 2014 18:19
by yusef88
Well done.. thanks :D

Re: request: choose name when use copyas

Posted: 29 Mar 2014 12:00
by yusef88
Edit: better wording; status msg.
thanks for update