PeteVonCrete Posted March 2, 2015 Posted March 2, 2015 I'm just trying to replicate the example in the documentation and I receive 'Error: Unknown function name.' If I write the function into a script and call the script, it runs fine.
Valuater Posted March 2, 2015 Posted March 2, 2015 We might be able to help if you show us your code 8)
Moderators Melba23 Posted March 2, 2015 Moderators Posted March 2, 2015 PeteVonCrete,Welcome to the AutoIt forums. As my crystal ball is currently away being polished, the name of the function would be a great help, as would the actual line you are using to call it. And what AutoIt version are you running? 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
PeteVonCrete Posted March 2, 2015 Author Posted March 2, 2015 Here's the code autoit3 /AutoIt3ExecuteLine "Msgbox(4096, ''Hello World'', ''Hi'')" Double quotes around function call and double-single quotes within, around the parameters. If I just write Msgbox(4096, "Hello World", "Hi") to test.au3 and call test.au3, it runs fine. In this case I'm using double quotes around the parameters.
Moderators Solution Melba23 Posted March 2, 2015 Moderators Solution Posted March 2, 2015 PeteVonCrete,You need the full path to AutoIt3 - unless it is on your path - and I get it to work with double quotes around the entire line (so DOS recognises it as a single item) and single quotes around the parameters: M:\Program\Autoit3\AutoIt3.exe /AutoIt3ExecuteLine "MsgBox(4096, 'Hello World', 'Hi')"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
PeteVonCrete Posted March 2, 2015 Author Posted March 2, 2015 Thanks. The single quotes did the trick. I did have autoit3 in my path.
Moderators Melba23 Posted March 2, 2015 Moderators Posted March 2, 2015 PeteVonCrete,Glad I could help 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
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