Hi @keshishian,
I just sent you an email via your 1:1 support case, but want to follow up here as well, since I see you've asked the same question here in the community. I tested this and it worked here on my system. Could you please try the following command macro syntax?
^C^C_CHPROP \;C;RED;;
To explain what this is doing:
^C^C is a special control character sequence that is similar to pressing the Esc key twice.
_CHPROP invokes the command to change properties. The space after this is equivalent to hitting the Spacebar to invoke the command.
\ pauses for user input, so that you can select the object you want to change.
; is equivalent to hitting ENTER.
C chooses the Color option in the CHPROP command after you've selected your object.
; is equivalent to hitting ENTER after you type the command.
RED inputs the color you want to change the object to.
;; is equivalent to hitting ENTER to accept the color and ENTER again to end the command.