i'm trying to figure out how to cue and take a template via remoting.
so far the Cue() call does not result in an exception anymore. in the stage editor i can see the correct scene (sub) below the main scene, so it gets loaded into the main scene's domain. but then Take() throws a ServerException ("Machine #1: No template cued").
is the Cue() call correct? is the async task supposed to complete when the data is cued?
could you give me a hint or two to fill the gaps in the doc?

Code: Select all
var cueData = new TemplateData(new Uri("ventuz://templates/tmplt|sub/Animation1/S2"));
cueData.Data.Integer = rnd.Next(-5, 5).ToString();
var cueDataString = cueData.ToString(DataFormat.JSON);
var takeInfo = await cluster.Cue(main.IID.Value, 0, TransitionOptions.None, cueDataString, System.Guid.NewGuid(), null, null);
await cluster.Take(main.IID.Value, 0, takeInfo.TakeID, null, null);