Jump to content

Language Dictionary?


Recommended Posts

I have looked for a Autoit language dictionary to no avail. Does anyone know where I can find one or at least a list of commands? Or, for a quick fix would someone tell me how to copy files from a remote server to a local hd and/or how to convert a .bat file into .au3? Yep you got it I am new and I have not been given the time it will take to go though Autoit_123 tutorials. I need to get this install and copy prefs job created then I can learn more later. I used the ScriptWriter to record the install now all I need is the cmd copy line part converted. Here is a sample of my cmd code I have which works.

rem * This clears all the garbage windows throws up about UNC paths not being usable *

CLS

rem @ECHO OFF

echo.

echo Copying program Prefs and shortcuts.

echo This may take a few minutes.

echo.

echo When finished, this window will automatically close.

echo Thank you for your patience.

rem * Removing old shortcut and copying new ones to all users desktops.*

C:

cd "C:\Documents and Settings" rem This is here because the install adds a current user only desktop icon which needs to be removed.

DEL /S "program shortcut 1.lnk"

copy "\\servername\Setup\program shortcut2.lnk" "C:\Documents and Settings\All Users\Desktop"

copy "\\servername\Setup\program shortcut3.lnk" "C:\Documents and Settings\All Users\Desktop"

copy "\\servername\Setup\program shortcut4.lnk" "C:\Documents and Settings\All Users\Desktop"

rem * Copying Pref files *

xcopy "\\servername\Setup\Prefs\*.*" "C:\Program Files\program name\Prefs\" /q /e /y

exit

Link to comment
Share on other sites

I finaly found what I was looking for in 2 other post.

1.

http://www.autoitscript.com/forum/index.ph...st&p=157863

look up the run function in the beta help. the help file is located here most likely.

c:\program Files\AutoIt3\beta\AutoIt.chm

I glanced at the help file in the AutoIt3 folder and did not find the info which is in the beta chm file.

2.

http://www.autoitscript.com/forum/index.ph...st&p=223951

This helped with the syntax.

Link to comment
Share on other sites

  • Developers

I finaly found what I was looking for in 2 other post.

1.

http://www.autoitscript.com/forum/index.ph...st&p=157863

I glanced at the help file in the AutoIt3 folder and did not find the info which is in the beta chm file.

2.

http://www.autoitscript.com/forum/index.ph...st&p=223951

This helped with the syntax.

AutoIt3 comes with a pretty nice Helpfile that contains all internat commands and all supported UDFs .

Just hit F1 in the SciTE editor or open AutoIt.chm from the program directory ..

:whistle:

SciTE4AutoIt3 Full installer Download page   - Beta files       Read before posting     How to post scriptsource   Forum etiquette  Forum Rules 
 
Live for the present,
Dream of the future,
Learn from the past.
  :)

Link to comment
Share on other sites

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 account

Sign in

Already have an account? Sign in here.

Sign In Now
 Share

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...