22.10.2 Extended Script Restrictions

Extended SIO Setting

D-Script/ Global D-Script

Extended SIO function for Extended Script

Extended SIO function for Extended Script

D-Script/Global D-Script

O: Operation possible

X: Will not operate

Extended Script

X: Will not operate

O: Operation possible

"ABC\"DEF"→ABC"DEF

"ABC\DEF"→ABC\DEF

"ABC\\"DEF"→ABC\"DEF

"ABC\\DEF"→ABC\\DEF

What to Be Careful of When Reading the Same Device Address in the Same Extended Script

Even when the same device address is used in the same extended script, values read from the device address may differ depending on the processing timing of extended scripts.

To avoid this situation, please program scripts to temporarily store data in internal devices or temporary addresses.

Example:

When Using USR Area

[w:[#INTERNAL]USR20000]=[w:[#MEMLINK]0100]
[w:[#INTERNAL]USR00000]=[w:[#INTERNAL]USR20000]
[w:[#INTERNAL]USR00001]=[w:[#INTERNAL]USR20000]

When Using Temporary Address

[t:0000]=[w:[#MEMLINK]0100]
[w:[#INTERNAL]USR00000]=[t:0000]
[w:[#INTERNAL]USR00001]=[t:0000]