Product specifications
SLCS Programming Manual
Rev. 1.24
- 34 -
Example
(1) In case of Using P ( P is used outside of template sequence)
TS’TPL_TST1’ // Start Template Store
SV00,15,N,’Model Name :’ // Declare variable V00
T50,100,3,1,1,0,0,N,N,’Model Name :’V00 // T command with variable
TE // End Template Store
TR’TPL_TST1” // Recall stored template ‘TPL_TST1’
? // Get content of variable used in recalled template
SRP770 // Content of variable V00
P3,2 // when using P command, It must not be inside
template,
// but be used after recalling the template and entering
the
// contents of all variables.
// After P command, printer starts printing.
(2) In case of Using PV(PV is used inside of template sequence
TS’TPL_TST1’ // Start Template Store
SV00,15,N,’Model Name :’ // Declare variable V00
SV01,2,N,’# of set :’ // Declare variable V01
SV02,2,N,’# of copies : ‘ // Declare variable V02
T50,100,3,1,1,0,0,N,N,’Model Name :’V00 // T command with variable
PVV01,V02 // PV command can be used inside the template
TE // End Template Store
TR’TPL_TST1” // Recall stored template ‘TPL_TST1’
? // Get content of variable used in recalled template
SRP770 // Content of variable V00
3 // Content of variable V00
2 // Content of variable V00
// As soon as all contents of variables are entered’
// printer will starts printing










