Re: [Inscore-devel] Fitting a scene to a large score
An environment for the design of INteractive augmented music Scores
Brought to you by:
dfober
|
From: Dominique F. <fo...@gr...> - 2015-11-02 07:55:57
|
> Le 30 oct. 2015 à 20:44, Dorien Herremans <dor...@gm...> a écrit : > > > Hello everybody, > > Thanks for all the help I've been getting this week from you, it's very much appreciated. Inscore has really come in handy. > > I've almost sorted through all my issues. Some strange things remain. > > 1. only first 2 pages of a score will display. > > I've scaled down the score so it fits, it's about 12 pages long, but only two appear. you can move to another page using the ‘page’ message e.g. /ITL/scene/score page 2; ! will display 2 pages starting from page #2 next you can have automatic page turning using the time events e.g. /ITL/scene/anyobject watch timeEnter 5 1 6 1 (/ITL/scene/score dpage 1) ; assuming that you want to turn the page at the date 5/1 Note that de ‘dpage’ message is a relative page displacement of course, you have to move the ‘anyobject’ component in time (using ‘ ate’, ‘ clock' or ‘ date') to trigger the timeEnter event. Note also that you can control de number of pages that are displayed using the ‘columns’ message. See the documentation, section 7.3 for more information about symbolic score management. > > <image.png> > > > > 2. The red signal line looks pretty good now, it just needs to be moved upwards a tiny bit. I've tried > > /ITL/scene/siggraph y 0.3; when an object is synchronized, the ‘y’ attribute is fixed by the sync mode (‘syncOver, syncTop or syncBottom). But you can use the ‘dy’ message that produces a relative displacement. In your example, try using ‘dy’ instead ‘y’. Best, — Dominique > > but to no avail. > > Maybe somebody has some idea about this? > > > Best regards, > > Dorien > > > Here is the code I'm working with: > > > /ITL/scene/* del; > /ITL/scene/signal/* del; > > /ITL/scene/score set gmnf "rsrc/haydn.gmn" ; > /ITL/scene/score scale 0.23; !fits the score now, but only displays first two pages > > /ITL/scene/signal/s1 0. 1. 0. 1. 0. 1. 0. 1. 0. 1. 0. 1. 0. 1. 0. 1.; > /ITL/scene/signal/gs set s1 0.05 0. 1. 1. 0.5; > > /ITL/scene/siggraph set graph gs; > /ITL/scene/siggraph height 0.5; > /ITL/scene/siggraph y 0.30; !this doesn't seem to work > /ITL/scene/siggraph duration 100 4; > > /ITL/scene/sync siggraph score h sync; > > > And the haydn.gmn file <https://www.dropbox.com/s/ixdwrv8itj2i1d3/haydn.gmn?dl=0>. > > ------------------------------------------------------------------------------ > _______________________________________________ > Inscore-devel mailing list > Ins...@li... > https://lists.sourceforge.net/lists/listinfo/inscore-devel |