1
Finished COOPS / Re: Etherdongle COOP
« on: May 12, 2015, 11:21:02 pm »
put me down for 2 kit 1 and 2 kit 4, please and thank you.
This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.
Testing Update
I created a sequence from scratch in Nutcracker as follows.
Using the same audio file from the defective sequence I added two timing marks in this file. One to create a color wash of 'Red' at the 0 timing mark and nothing else[/b].
Played this and the Mega tree turned on and stayed on for the entire time with no turning off.
In LSP I created a fresh sequence using the same audio file. Turned on all the pixels in the mega tree to 'Red' from about the 3 second timing mark through the end of the sequence. Converted it using Light elf then transferred it to the show system. Added this to a test schedule and using the play now function ran this sequence. The Mega Tree came on then after a few seconds turned off then back on and repeated this several times before the end of the sequence playing.
Not sure but it appears you are not creating the same effects in Nutcracker vs LSP. check the above bold/underline.
100 REM *
101 REM * Created: 12/03/13 15:51:04
102 REM * Random: on
103 REM * Repeat: on
104 REM * First Item Once: on
105 REM * Last Item Once: on
106 REM *
110 LET ListName$="2013 Test"
120 SETPLAYLIST ListName$
125 LET x=0
130 ONPLAYBACKEND 140
131 PRINT "At:", FORMATDATETIME$(NOW,5)
132 PRINT "Playing:",ITEMNAME$(1)
133 PLAYITEM 1
134 PRINT "Song Count:",x
136 WAIT
140 ONPLAYBACKEND 300
170 IF PLAYLISTSIZE-2>1 THEN 176
172 PRINT "ERROR: not enough items in playlist to support random playback"
174 GOTO 400
176 LET LastItemPlayed=-1
178 DIM PLAYED(PLAYLISTSIZE)
180 FOR I=1 TO PLAYLISTSIZE
182 LET PLAYED(I)=0
184 NEXT I
186 LET PlayCount=0
188 GOTO 300
200 REM *
201 REM * Play item NextItem
202 REM *
205 IF x=2 THEN 208
206 IF x<2 THEN 213
207 GOTO 213
208 PLAYITEM(2)
209 PRINT ITEMNAME$(2)
210 LET x=0
211 WAIT
213 LET LastItemPlayed=NextItem
214 PRINT NextItem
215 PRINT "At:", FORMATDATETIME$(NOW,5)
220 PRINT "Playing:",ITEMNAME$(NextItem)
221 PRINT "Song Count:",x
222 LET x = x +1
230 PLAYITEM NextItem
240 WAIT
300 REM *
301 REM * Jump here at end of song or sequence
302 REM *
305 LIGHTSOFF
310 IF SECONDSREMAINING <= 0 THEN 400
320 IF PlayCount>=PLAYLISTSIZE-3 THEN 180
330 LET NextItem=RND(PLAYLISTSIZE-3)+3
340 IF PLAYED(NextItem)>0 THEN 330
345 IF LastItemPlayed=NextItem THEN 330
350 LET PLAYED(NextItem)=1
360 LET PlayCount=PlayCount+1
370 GOTO 200
400 REM *
401 REM Reached scheduled end time
402 REM *
410 ONPLAYBACKEND 490
415 PRINT "At:", FORMATDATETIME$(NOW,5)
420 PRINT "Playing:",ITEMNAME$(PLAYLISTSIZE)
430 PLAYITEM PLAYLISTSIZE
440 WAIT
490 LIGHTSOFF
205 IF x=2 THEN 208
206 IF x<2 THEN 213
100 REM *
101 REM * Created: 12/03/13 15:51:04
102 REM * Random: on
103 REM * Repeat: on
104 REM * First Item Once: on
105 REM * Last Item Once: on
106 REM *
110 LET ListName$="2013 Test"
120 SETPLAYLIST ListName$
125 LET x=0
130 ONPLAYBACKEND 140
131 PRINT "At:", FORMATDATETIME$(NOW,5)
132 PRINT "Playing:",ITEMNAME$(1)
133 PLAYITEM 1
134 PRINT "Song Count:",x
135 WAIT
140 ONPLAYBACKEND 300
170 IF PLAYLISTSIZE-2>1 THEN 176
172 PRINT "ERROR: not enough items in playlist to support random playback"
174 GOTO 400
176 LET LastItemPlayed=-1
178 DIM PLAYED(PLAYLISTSIZE)
180 FOR I=1 TO PLAYLISTSIZE
182 LET PLAYED(I)=0
184 NEXT I
186 LET PlayCount=0
188 GOTO 300
200 REM *
201 REM * Play item NextItem
202 REM *
203 IF NextItem <> 2 THEN 205
204 LET NextItem=RND(PLAYLISTSIZE-2)+2
205 IF x=3 THEN 208
206 IF x<3 THEN 213
207 GOTO 213
208 PLAYITEM(2)
209 PRINT ITEMNAME$(2)
210 LET x=0
211 WAIT
213 LET LastItemPlayed=NextItem
214 PRINT NextItem
215 PRINT "At:", FORMATDATETIME$(NOW,5)
220 PRINT "Playing:",ITEMNAME$(NextItem)
221 PRINT "Song Count:",x
222 LET x = x +1
230 PLAYITEM NextItem
240 WAIT
300 REM *
301 REM * Jump here at end of song or sequence
302 REM *
305 LIGHTSOFF
310 IF SECONDSREMAINING <= 0 THEN 400
320 IF PlayCount>=PLAYLISTSIZE-2 THEN 180
330 LET NextItem=RND(PLAYLISTSIZE-2)+2
340 IF PLAYED(NextItem)>0 THEN 330
345 IF LastItemPlayed=NextItem THEN 330
350 LET PLAYED(NextItem)=1
360 LET PlayCount=PlayCount+1
370 GOTO 200
400 REM *
401 REM Reached scheduled end time
402 REM *
410 ONPLAYBACKEND 490
415 PRINT "At:", FORMATDATETIME$(NOW,5)
420 PRINT "Playing:",ITEMNAME$(PLAYLISTSIZE)
430 PLAYITEM PLAYLISTSIZE
440 WAIT
490 LIGHTSOFF