MCT Posted March 2, 2005 Posted March 2, 2005 i wanna run a script like hideme commandline1 commandline2 but my script isnt working Run($CmdLine[1] "" $cmdline[2] & "" , "", @SW_HIDE )
SlimShady Posted March 2, 2005 Posted March 2, 2005 Use spaces between parameters. Or make 2 Run functions. Tip: Use $CmdLineRaw: Run($CmdLineRaw , "", @SW_HIDE)
Blue_Drache Posted March 2, 2005 Posted March 2, 2005 (edited) Use spaces between parameters. Or make 2 Run functions.Tip:Use $CmdLineRaw: Run($CmdLineRaw , "", @SW_HIDE)<{POST_SNAPBACK}>Also, the syntax you have for your run statement is off...Run($cmdline[1] & " " & $cmdline[2] & " ","",@SW_HIDE)note the spaces inside the quotes before the first comma, and of course, the ampersands.Ampersands link variables and strings together within the same grouping and function reference. Edited March 2, 2005 by Blue_Drache Lofting the cyberwinds on teknoleather wings, I am...The Blue Drache
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