Report post

Are you sure you want to report the post shown below? This will send an email to the ATVO administrators. Please include a short reason for reporting.

Users reporting for no reason may be locked out.


Post

Posted by Nick Thissen
on
Emmanuel Suter wrote:
For stroryboard, error is when I want to make:
sybd.Restart();
Restart is not a definition of Storyboard
There is no Restart indeed. Just do Stop, then Play to start a new instance:
sybd.Stop(); // stops all instances of this storyboard
sybd.Play(); // starts a new instance


Emmanuel Suter wrote:
Emmanuel Suter wrote:
And if I want when I change Class, to use Class Position than Position (when i am not in AllClasses), we need to change DataOrder, but the name not match in my script.
This is for Ticker with DropDown selection:

Is it possible to add in script to change to Dataorder --> liveposition if index=0 and Dataorder --> liveclassposition  if index >= 1 ?
You can use this:
widget.DataOrder = DataSetManager.GetDataOrder("liveclassposition");