llc Posted July 15, 2013 Posted July 15, 2013 the question is, as it does to run a function to drop a file on. exe or runs somefile[DOT]someextention, with a script. $CmdLine using does not work.
jchd Posted July 15, 2013 Posted July 15, 2013 $cmdline should work if you associate .xx files to your application. This wonderful site allows debugging and testing regular expressions (many flavors available). An absolute must have in your bookmarks.Another excellent RegExp tutorial. Don't forget downloading your copy of up-to-date pcretest.exe and pcregrep.exe hereRegExp tutorial: enough to get startedPCRE v8.33 regexp documentation latest available release and currently implemented in AutoIt beta. SQLitespeed is another feature-rich premier SQLite manager (includes import/export). Well worth a try.SQLite Expert (freeware Personal Edition or payware Pro version) is a very useful SQLite database manager.An excellent eBook covering almost every aspect of SQLite3: a must-read for anyone doing serious work.SQL tutorial (covers "generic" SQL, but most of it applies to SQLite as well)A work-in-progress SQLite3 tutorial. Don't miss other LxyzTHW pages!SQLite official website with full documentation (may be newer than the SQLite library that comes standard with AutoIt)
mikell Posted July 15, 2013 Posted July 15, 2013 Windows Registry Editor Version 5.00 [HKEY_CLASSES_ROOT\.xxx\shell\myscript\command] @="C:\\myscript.exe \"%1\"" [HKEY_LOCAL_MACHINE\SOFTWARE\Classes\.xxx\shell\myscript\command] @="C:\\myscript.exe \"%1\"" ?
AdmiralAlkex Posted July 15, 2013 Posted July 15, 2013 Hi and Welcome to the forum!You don't need to associate, it should be in CmdLine anyway. Please post a reproducer. .Some of my scripts: ShiftER, Codec-Control, Resolution switcher for HTC ShiftSome of my UDFs: SDL UDF, SetDefaultDllDirectories, Converting GDI+ Bitmap/Image to SDL Surface
DW1 Posted July 15, 2013 Posted July 15, 2013 the question is, as it does to run a function to drop a file on. exe or runs somefile[DOT]someextention, with a script. $CmdLine using does not work. Hmm, working for me. #include <Array.au3> If $CmdLine[0] > 0 Then _ArrayDisplay($CmdLine) EndIf AutoIt3 Online Help
llc Posted July 16, 2013 Author Posted July 16, 2013 this works great. I was wrong the equalities thanks.
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now