Hi @Josh3GG88 -San.
I don't think anyone can answer this question because the text in the video is small and it is unclear what the property name is, and I don't know what the cps file is.
At the very least, you need the code and the cps file for the part where the properties are set.
The following sample enumerates the post property names and Value type names and values for the first NC program.
# Fusion360API Python script
import traceback
import adsk.core as core
import adsk.cam as cam
def run(context):
ui: core.UserInterface = None
try:
app: core.Application = core.Application.get()
ui = app.userInterface
camObj: cam.CAM = app.activeProduct
ncPro: cam.NCProgram = camObj.ncPrograms[0]
for postPrm in ncPro.postParameters:
msg = f"{postPrm.name} : {postPrm.value.objectType}"
try:
msg += f" : {postPrm.value.value}"
except:
pass
print(msg)
except:
if ui:
ui.messageBox('Failed:\n{}'.format(traceback.format_exc()))