Hey I try to set a camera on a matrix with Trigger Commandbut it doesn't work, with message tester example it works but when i try to do it in my one program the camera doesn't pop up.Is my way false ?

FQID matrix = new FQID();

matrix.ObjectId = new Guid(“4218b596-828b-4417-889d-1283b8e33cf1”);

FQID cam = new FQID();

cam.ObjectId = new Guid(“e35920c6-a557-489e-8070-fade483ac913”);

Message msg = new Message(MessageId.Control.TriggerCommand, cam);

var response = EnvironmentManager.Instance.SendMessage(msg, matrix);

You need to get proper FQIDs. It is not enough just to fill in the ObjectId. Use for instance Configuration.Instance.GetItem(myGuid, Kind.Camera).FQID

Okay works fine with proper FQIDs.

There was no error, so that was reason why I dont understand it.​

Big thanks​