AvScript Function List

SUMMARY

List of all LUA extension functions available in AvScript.

LIST

aci.AddEventlogEntry
Add an arbitrary entry to the ALPHA-VISION® event log
aci.And
Bit by bit AND.
aci.CloseComPort
Closes the specified port.
aci.ConnectApp
Connect to ALPHA-VISION® as an application.
aci.ConnectDrv
Connect to ALPHA-VISION® as a driver.
aci.Drv_SetSts
Set the status of a data object as a driver.
aci.Drv_SetVal
Set the value of a data object as a driver.
aci.Lsh
Bit by bit shift left.
aci.Mod
Symetrical modulo (like in the C programming language): (-a) % b == -(a%b) The normal modulo operator in LUA calculates a mathematical modulo.
aci.Not
Bit by bit negation.
aci.Obj_GetFlag
Read single bits of a data object (status= or value) defined by a mask.
aci.Obj_GetRefPointId
Get the target of a reference object
aci.Obj_IsRefObj
Get the type of a data object
aci.Obj_QueryAttr
Query data object attributes / properties
aci.Obj_SetAttr
Set data object attributes / properties
aci.Obj_SetFlag
Set single bits in the value or status of a data object.
aci.Obj_SetRef
Set the pointer of a reference object to a new target object.
aci.Obj_SetSts
Set the status of a data object as an application.
aci.Obj_SetTxt
Set the text of a data object as an application.
aci.Obj_SetVal
Set the value of a data object as an application.
aci.Obj_Sts
Get the status of a data object
aci.Obj_TickOff
Stop a "ticking" data object. Reverse of Obj_TickOn.
aci.Obj_TickOn
Make a data object value "tick": synchronize it's value with the system clock minus an offset.
aci.Obj_Type
Get the type of a data object
aci.Obj_Value
Get the value of a data object
aci.OpenComPort
Opens the required port.
aci.Or
Bit by bit OR.
aci.RecvComPort
Comport receives sent data.
aci.Rsh
Bit by bit shift right without considering the algebraic sign.
aci.SendComPort
Comport sends data.
aci.SetStrictMode
Enable or disable strict checking in all following calls to aci.*-functions.
aci.Usr_GetProfNum
Get a number from a configuration file in ini-file format.
aci.Usr_GetProfStrg
Get a string from a configuration file in ini-file format.
aci.Usr_WriteProfNum
Write a number to a configuration file in ini-file format.
aci.Usr_WriteProfStrg
Write a string to a configuration file in ini-file format.
aci.Xor
Bit by bit XOR.