beautypg.com

Avery Dennison Monarch 9864 Description of Commands User Manual

Page 7

background image

10/07 Rev. AA

EASY PLUG HANDBUCH

Description of Commands

ALLE

GERÄTE

A = TTX 600 --TLX 604 – Eagle B = TTX 300 Offline - Cobra Offline D = TTX 300 Online –TTX 207 - Cobra Online – Da Capo
E = TTX 450/650/674/675/950/1050 – Puma/Puma plus/Lion/Lion plus/Tiger/Tiger XXL -- S45/65/95/105 - TDI/STDI/XXTREME
G = TTX 350 – Ocelot – TTK – Texxtile H = 64-xx – Chess x –TT4 – DPM – PEM – ALX 92x – AP 4.4/5.4 – AP 7.t

7

SubStr(Data,a,b)

Cuts a substring out of the Data string

Data =

Mixture of text and variables.

a = int

Position of the first character to be cut out.

The counting of the characters starts with "0".

b = int

Number of subsequent characters to be cut out.

Example

#VDT/Name////Hans Mueller#G

Definition of the
text variable
„Name“

#VW/L/"First character = " + SubStr(Name,0,1)#G

Output: „First
character = H“

Length(Data)

Calculates the length (= number of characters) of the Data string.

Data =

Mixture of text and variables.

Example

#VDT/Name////Hans Mueller#G

Definition of the
text variable
„Name“

#VW/L/"Text length = " + Length(Name)#G

Output: “Text
length = 12”

MergeRight(Data1,Data2)

Copies Data2 into Data1 and justifies Data2 to the right.

Data1 =

Mixture of text and variables.

Data2 =

Mixture of text and variables.

Example

MergeRight(„00000000“,“123“)

Result: 00000123

MergeLeft(Data1,Data2)

Copies Data2 into Data1 and justifies Data2 to the left.

Data1 =

Mixture of text and variables.

Data2 =

Mixture of text and variables.

Example

MergeLeft(„00000000“,“123“)

Result: 12300000

DayOfYear(Day,Month,Year)

Calculates the day of the year.

Day =

2-character string for the day

Month =

2-character string for the month

Year =

4-character string for the year

Example

DayOfYear(„01“,“08“,“2005“)

Result: 213