How do you apply color to partitions in activity beta syntax?

+2 votes
asked Nov 25, 2014 in Wanted features by anonymous

Most other box types allow specification of color, however trying these with partitions doesn't seem to work. I've tried:

partition Orchestra #CCCCEE {
  :Introduction;
  :Play Music;
}

and

#CCCCEE Orchestra {
  :Introduction;
  :Play Music;
}

but both produce syntax errors, so is there any way currently supported to specify color for groups/partitions or is this only supported in the old syntax? If not, can this be implemented?

 

 

 

1 Answer

+1 vote
answered May 1, 2015 by anonymous
partition #CCCCEE Orchestra {

    :Introduction;

    :Play Music;

}
commented Nov 16, 2016 by anonymous
Thank you.. it works.
...