EMadxcs Posted March 13, 2014 Share Posted March 13, 2014 HI all plz example Method 3 - The Command Line http://www.autoitscript.com/autoit3/docs/intro/compiler.htm Link to comment Share on other sites More sharing options...
JohnOne Posted March 13, 2014 Share Posted March 13, 2014 Aut2exe.exe /in mycript.au3 EMadxcs 1 AutoIt Absolute Beginners Require a serial Pause Script Video Tutorials by Morthawt ipify Monkey's are, like, natures humans. Link to comment Share on other sites More sharing options...
EMadxcs Posted March 13, 2014 Author Share Posted March 13, 2014 I tried a lot does not work :') Link to comment Share on other sites More sharing options...
JohnOne Posted March 13, 2014 Share Posted March 13, 2014 Explain in detail exactly what you are doing from start to finish. AutoIt Absolute Beginners Require a serial Pause Script Video Tutorials by Morthawt ipify Monkey's are, like, natures humans. Link to comment Share on other sites More sharing options...
EMadxcs Posted March 13, 2014 Author Share Posted March 13, 2014 convert au3 to exe .. . example msgbox(0,"","HI") i want compiling this .. if run script Link to comment Share on other sites More sharing options...
JohnOne Posted March 13, 2014 Share Posted March 13, 2014 and you tried it how? AutoIt Absolute Beginners Require a serial Pause Script Video Tutorials by Morthawt ipify Monkey's are, like, natures humans. Link to comment Share on other sites More sharing options...
EMadxcs Posted March 13, 2014 Author Share Posted March 13, 2014 Aut2exe.exe /in mycript.au3 /out eee.exe msgbox(0,"","HI") But it didn't work Link to comment Share on other sites More sharing options...
JohnOne Posted March 13, 2014 Share Posted March 13, 2014 Command line? AutoIt Absolute Beginners Require a serial Pause Script Video Tutorials by Morthawt ipify Monkey's are, like, natures humans. Link to comment Share on other sites More sharing options...
EMadxcs Posted March 13, 2014 Author Share Posted March 13, 2014 I still do not understand how it is in this form It therefore requested Example .. Link to comment Share on other sites More sharing options...
Moderators Melba23 Posted March 13, 2014 Moderators Share Posted March 13, 2014 EMadxcs,Your post #7 commandline works for me when used with files in the same folder. When you say "it does not work" (which is about a much use as a chocolate teapot ) what error messages do you get in the DOS box? 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 Link to comment Share on other sites More sharing options...
EMadxcs Posted March 13, 2014 Author Share Posted March 13, 2014 EMadxcs, Your post #7 commandline works for me when used with files in the same folder. When you say "it does not work" (which is about a much use as a chocolate teapot ) what error messages do you get in the DOS box? M23 error of syntax If you can give me an example of how to do it ! Link to comment Share on other sites More sharing options...
Moderators Melba23 Posted March 13, 2014 Moderators Share Posted March 13, 2014 EMadxcs,So you have a file called mycript.au3 which reads:msgbox(0,"","HI")in the same folder as Aut2Exe.exe" - which would be "C:Program FilesAutoIt3Aut2Exe" if you made a standard install - and when you open a DOS box, set that folder as the working path, and run:Aut2exe.exe /in mycript.au3 /out eee.exeyou get a syntax error? Do I have that right? 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 Link to comment Share on other sites More sharing options...
EMadxcs Posted March 13, 2014 Author Share Posted March 13, 2014 Link to comment Share on other sites More sharing options...
Moderators Melba23 Posted March 13, 2014 Moderators Share Posted March 13, 2014 EMadxcs,Remove the < > (they just indicate that you need a literal string) and the [ ] (which indicate an optional parameter). The command line should read (as posted by you yourself in post #7 and myself in post #12):Aut2exe.exe /in mycript.au3 /out eee.exeNow does it work?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 Link to comment Share on other sites More sharing options...
JohnOne Posted March 13, 2014 Share Posted March 13, 2014 It's also possible you need to use full path to Aut2exe.exe AutoIt Absolute Beginners Require a serial Pause Script Video Tutorials by Morthawt ipify Monkey's are, like, natures humans. Link to comment Share on other sites More sharing options...
EMadxcs Posted March 13, 2014 Author Share Posted March 13, 2014 look Link to comment Share on other sites More sharing options...
Moderators Solution Melba23 Posted March 13, 2014 Moderators Solution Share Posted March 13, 2014 EMadxcs,Are you just trolling? Because it is certainly beginning to look like that! I mentioned in post #12 above that you needed all the files in the same folder to use that line. JohnOne also posted (in post #15) that you might need the full path to Aut2Exe - from what we see there that is almost certainly the case. So assuming that you installed AutoIt in the standard location try this:"C:\Program Files\AutoIt3\Aut2Exe\Aut2exe.exe" /in mycript.au3 /out eee.exeAnd while we are here, why are you compiling from the command line anyway? There is a good reason why that is Method 3 - the others are much easier to use. M23 EMadxcs 1 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 Link to comment Share on other sites More sharing options...
EMadxcs Posted March 13, 2014 Author Share Posted March 13, 2014 Thank you very much. All Link to comment Share on other sites More sharing options...
Moderators Melba23 Posted March 13, 2014 Moderators Share Posted March 13, 2014 Hurrah! 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 Link to comment Share on other sites More sharing options...
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