Miran 0 Posted October 18, 2010 Hi I can't found out how to use input parameters\arguments in scripts compiled to exe. For example I creating script that will open file using notepad and type something into it. Now I wish be able to tell compiled script what file it should open and edit. It's just example, I know same think may be done by direct file editing. Share this post Link to post Share on other sites
Melba23 3,496 Posted October 18, 2010 Miran,Welcome to the AutoIt forum. Look in the Help file under <Using AutoIt - Command Line Parameters> and you will see exactly how to do what you want using the $CmdLine array. M23 Any of my own code posted anywhere on the forum is available for use by others without any restriction of any kind Open spoiler to see my UDFs: Spoiler ArrayMultiColSort ---- Sort arrays on multiple columnsChooseFileFolder ---- Single and multiple selections from specified path treeview listingDate_Time_Convert -- Easily convert date/time formats, including the language usedExtMsgBox --------- A highly customisable replacement for MsgBoxGUIExtender -------- Extend and retract multiple sections within a GUIGUIFrame ---------- Subdivide GUIs into many adjustable framesGUIListViewEx ------- Insert, delete, move, drag, sort, edit and colour ListView itemsGUITreeViewEx ------ Check/clear parent and child checkboxes in a TreeViewMarquee ----------- Scrolling tickertape GUIsNoFocusLines ------- Remove the dotted focus lines from buttons, sliders, radios and checkboxesNotify ------------- Small notifications on the edge of the displayScrollbars ----------Automatically sized scrollbars with a single commandStringSize ---------- Automatically size controls to fit textToast -------------- Small GUIs which pop out of the notification area Share this post Link to post Share on other sites
willichan 220 Posted October 18, 2010 (edited) I can't found out how to use input parameters\arguments in scripts compiled to exe.This one is kind of hard to find if you don't already know what to look for.You will need to use $CmdLine. You can find it in the help file by going to AutoIt --> Using AutoIt --> Command Line Parameters--- Edit ---Looks like Melba23 types faster than I do. Edited October 18, 2010 by willichan Join me in supporting Pediatric Therapy Network through Amazon Smile. My UDFs: Barcode Libraries, Automate creation of any type of project folder, File Locking with Cooperative Semaphores, Inline binary files, Continue script after reboot, WinWaitMulti, Name Aggregator Share this post Link to post Share on other sites
Miran 0 Posted October 18, 2010 Thank you Exacly that I needed Share this post Link to post Share on other sites