Shoutbox

[Release] EZSend (Version 1.0) - Printable Version

-Shoutbox (https://shoutbox.menthix.net)
+-- Forum: MsgHelp Archive (/forumdisplay.php?fid=58)
+--- Forum: Messenger Plus! for Live Messenger (/forumdisplay.php?fid=4)
+---- Forum: Scripting (/forumdisplay.php?fid=39)
+----- Thread: [Release] EZSend (Version 1.0) (/showthread.php?tid=79338)

[Release] EZSend (Version 1.0) by Spunky on 11-24-2007 at 10:11 PM

This script provides a quick and simple alternative to browsing for a file to send. Just type in the drive letter, part of the file name and the extension and it will search the any matches. You can then easily send the file to a contact. It even supports searching through subfolders automatically (Although this may be made into an option)

By design, it only works with removeable media such as memory sticks or mobile phones. It will not work with hard drives or CD drives until I can bothered to write code to stop it searching EVERYWHERE, thus lagging stuff up :p

Usage:
/ez <drive letter> <file name>.<extension>
(an * can be used as a wildcard for either the filename or extension similar to windows on search facility)

[Image: ezsendpa4.png]




RE: [Release] EZSend (Version 1.0) by warmth on 11-25-2007 at 12:09 AM

:O!!! I see a lot of furute for this script... well done mate... I will try it and let you know how it worked ;)!!!


RE: [Release] EZSend (Version 1.0) by deAd on 11-25-2007 at 12:17 AM

Looks interesting, but where's the download?


RE: [Release] EZSend (Version 1.0) by aNILEator on 11-25-2007 at 12:33 AM

Duh dead it's on his PC, silly :P

By release he obviously doesn't mean the script, just some air from his mouth or the screenshot or something....

Nice slip up though SLM


RE: [Release] EZSend (Version 1.0) by Rolando on 11-25-2007 at 01:14 AM

Looks nice, but I wouldn't use it if it doesn't allow hard drives :p


RE: [Release] EZSend (Version 1.0) by -dt- on 11-25-2007 at 03:12 AM

quote:
Originally posted by SpunkyLoveMuff
until I can bothered to write code to stop it searching EVERYWHERE, thus lagging stuff up (Smilie)
in vista use something like

code:
var dir = "c:/downloads/";
var db = new ActiveXObject('ADODB.Connection');
db.open("Provider=Search.CollatorDSO;Extended Properties='Application=Windows';");

var results = db.Execute("SELECT System.ItemPathDisplay FROM SystemIndex WHERE SCOPE='file:" + dir + "'");

//loop over and debug.trace each item

while(!results.EOF){
    Debug.Trace(results.Fields.item('System.ItemPathDisplay'));
    results.MoveNext();
}



RE: [Release] EZSend (Version 1.0) by Spunky on 11-25-2007 at 03:42 PM

Whoops... Updated


RE: [Release] EZSend (Version 1.0) by Oxy on 11-25-2007 at 03:47 PM

awesome, can't wait to try it out.


RE: [Release] EZSend (Version 1.0) by bobby2000 on 11-26-2007 at 05:00 PM

great idea :) saves ALOT of time!


RE: [Release] EZSend (Version 1.0) by Spunky on 11-27-2007 at 05:03 PM

Working on an update. I've added special folder names so rather than just using drive letters, you can use desktop, documents, favorites (and favourites :p), programs and recent. I'll hopefully soon add received as well for WLM Received Files folder. I'm also working on an option that sending shorcut lnk files actually send the file it points to instead.

Thanks for the support :p


RE: [Release] EZSend (Version 1.0) by warmth on 11-27-2007 at 05:20 PM

quote:
Originally posted by SpunkyLoveMuff
received as well for WLM Received
:O!!! nice my friend... I'll be waiting for...