Do not let any software impress you!

Only let it convince your intellect.
Slider img 1
Do not look for a business paradise!

It is a waste of time.
Slider img 2
Only yourself can push you uphill.

There is no easy road to prizes.
Slider img 3
Productivity is the name of the game.

And you have to conquer it.
Slider img 4
As long as you understand it,

you will start to build your know-how.
Slider img 5
We can help with that.

We have the tools and the method.
Slider img 6
Procedure : AU_AUTOSCRIPT1

AutoScript

{..........example 1..............}
a = 10
b = 20
d = True
c = a + b
c[5] = "John"
call message(c)
call message(d)
call message("c[5]=",c[5]) {......arrays without decleration!}

{........... example 2...............}
flag = message_yes_no("yes?")
call message(flag)

{..........tiny form example..........}

call InputClear("Give your Name")
call InputItem("First Name","my first name")
call InputItem("Last Name","my last name")

flag = InputShow()

if (flag = 1) then
   fname = InputGet("First Name")
   lname = InputGet("Last Name")
   call message("name=",fname," last=",lname)
endif