Dark_Raver Posted August 29, 2006 Author Posted August 29, 2006 (edited) no i want to learn it to you know but can you explain this to me? i need to add afew things after it and i cant seem to understand it $launchgame = FileGetShortName(@ScriptDir & '\mm.exe') & ' +map ' & GUICtrlRead($combo_map) Run($launchgame) Edited August 29, 2006 by Dark_Raver
amanda089 Posted August 29, 2006 Posted August 29, 2006 (edited) FileGetShortName(@ScriptDir & '\mm.exe') = Get the file/dir names in 8.3 format ' +map ' & GUICtrlRead($combo_map) = your switches To add more after your switches use this $launchgame = FileGetShortName(@ScriptDir & '\mm.exe') & ' +map ' & GUICtrlRead($combo_map) & 'MORE SWITCHES HERE' Edited August 29, 2006 by amanda089
Moderators SmOke_N Posted August 29, 2006 Moderators Posted August 29, 2006 FileGetShortName(@ScriptDir & '\mm.exe') = Get the file/dir names in 8.3 format ' +map ' & GUICtrlRead($combo_map) = your switches To add more after your switches use this $launchgame = FileGetShortName(@ScriptDir & '\mm.exe') & ' +map ' & GUICtrlRead($combo_map) & 'MORE SWITCHES HERE'You forgot the space before MORE Common sense plays a role in the basics of understanding AutoIt... If you're lacking in that, do us all a favor, and step away from the computer.
amanda089 Posted August 29, 2006 Posted August 29, 2006 You forgot the space before MORE Ahh, now you spoiled such a fun learning experience for him.
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