Hey there,
One annoyance when getting Backups for many Robots on multiple lines is having any combination of Comments, Line Numbers, and/or IO Status enabled.
While I have Regular Expressions and scripts to remove Comments, Line Numbers, and/or IO Status if they are in a Robot Backup, I would rather not employ them if I don't have to. So, in order to circumvent this, I usually go from one Robot to another, manually disabling Comments, Line Numbers, and/or IO Status via the iPendant like so:
EDIT → F5 [EDCMD] → 6 Comment
EDIT → F5 [EDCMD] → 8 Line Number
EDIT → F5 [EDCMD] → 0 -- NEXT -- → 2 IO Status
I am hoping someone here knows if there is/are System Variable(s) that controls if/when Comments, Line Numbers, and/or IO Status are enabled/disabled, and if I can use KCL to disable Comments, Line Numbers, and/or IO Status via the System Variable(s).
Here's a few examples:
: --eg: Comments, Line Numbers, and IO Status DISABLED (what I hope to achieve) ;
: WAIT (DI[9]) ;
: ;
: --eg: Comments ENABLED ;
: WAIT(DI[9: Folge Start]) ;
: ;
: --eg: Comments and Line Numbers ENABLED ;
3: WAIT(DI[9: Folge Start]) ;
: ;
: --eg: Comments and IO Status ENABLED ;
: WAIT (DI[9: Folge Start: OFF]) ;
: ;
: --eg: Comments, Line Numbers, and IO Status ENABLED ;
3: WAIT (DI[9: Folge Start: OFF]) ;
: ;
: --eg: Line Numbers ENABLED ;
3: WAIT(DI[9]) ;
: ;
: --eg: Line Numbers and IO Status ENABLED ;
3: WAIT(DI[9: OFF]) ;
: ;
: --eg: IO Status ENABLED ;
: WAIT (DI[9: OFF]) ;
Display More
Any help or knowledge that is passed on would be greatly appreciated!
Thank you.