Строка ASSEMBLY
if IsSet("USERDEFINED.comment") then
Output()
else
StepOver()
endif
Строка PART
if IsSet("USERDEFINED.USER_FIELD_1") then
Output()
else
StepOver()
endif
В строку ASSEMBLY:
1
GetValue("USERDEFINED.comment")
2
GetValue("MAINPART.USERDEFINED.USER_FIELD_1")
3
if GetValue("MAINPART.PROFILE.TPL_NAME") !="" then GetValue("MAINPART.PROFILE.TPL_NAME") else GetValue("MAINPART.PROFILE") endif
В строку PART:
4
GetValue("USERDEFINED.USER_FIELD_1")
5
if GetValue("PROFILE.TPL_NAME") !="" then GetValue("PROFILE.TPL_NAME") else GetValue("PROFILE") endif + GetValue("USERDEFINED.comment")