Show Posts

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.


Messages - Justtazz

Pages: [1] 2 3 4
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.

2
Lynx Express / Re: lynx express not responding to dmx signal
« on: January 01, 2015, 09:28:32 pm »
I had a similar issue where the board tested fine but the jumper for wireless fell off and wouldn't work with a DMX signal.  check that it's a long shot but might be the issue

3
xlights / is there a crash log for Xlights/Nutcracker
« on: July 10, 2014, 05:59:25 pm »
is there a way to see why xlights keeps crashing when converting a sequence, such as a log.

Justin

4
i would like 1 Kit # 1 Please

Thank You

Justin

5
Finished COOPS / Re: Lynx Express Coop CLOSED FOR ORDERS
« on: April 19, 2014, 11:17:53 pm »
John,

Mine came today.  Thanks for all your work on this coop.

Thanks
Justin

Sent from my SGH-T989 using Tapatalk


6
Finished COOPS / Re: Lynx Express Coop
« on: February 17, 2014, 08:59:16 pm »
3 for me please.

Thanks,

Justin

7
The Porch / Re: Denver early season mini
« on: January 10, 2014, 01:36:32 am »
I am good almost any of the Saturdays in question just let me know.

8
Vixen+ / New Version of Vixen+
« on: January 02, 2014, 02:07:39 pm »
New version of Vixen+ released

this version is mainly a bug fix release.

You are not allowed to view links. Register or Login

9
Nutcracker: RGB Effects Builder / Re: Playback glitch
« on: January 02, 2014, 11:34:43 am »
You are not allowed to view links. Register or Login
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.

10
xlights / Re: Repeat a sound file every 2-3 sequences.
« on: December 04, 2013, 03:29:46 pm »
Sorry if i wasn't clear i have about 30 sequences. at this time i am only using a few for my playlist but i would like to just have them all available and play randomly.  So i have been running this script for about 3 hours now with no problems.  looks like it is working.

11
xlights / Re: Repeat a sound file every 2-3 sequences.
« on: December 04, 2013, 01:48:19 pm »
I thought of all those ideas but it seems silly top have 5 copies of the same sequence to insert where you want it.  besides if you want your sequences to be random in the playlist it doesn't work to have multiple copies.

So to summarize the custom script below allows you to randomize your playlist and have an opening & closing sequence, as well as a sequence that you can repeat every so many songs (such as be kind to neighbors),  and you only have to have one copy of the repeating sequence.  as long as it is the second song in your playlist it will only play when you decide.

Thanks to CaptainMurdoch for the adjustments it works great so far been testing all morning.

Code: You are not allowed to view links. Register or Login
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

to adjust the number of songs played between special sequence change the following lines.

Code: You are not allowed to view links. Register or Login
205 IF x=2 THEN 208
206 IF x<2 THEN 213

The =2 and <2, simply change the 2 to the number of songs you want between, be advised the way the code is written it is zero based so the first song is 0 second is 1 and so on. 

Example  with a value of 3

Intro
Song - 0
Song - 1
Song - 2
Repeating Message
Song - 0
Song - 1
Song - 2
Repeating Message
Song - 0
Song - 1 ......and so on until the end of the show
Then your closing message.

Thank you all for the help

Justin

PS if you have any questions ask or PM me and I will see what I can do to help.

12
xlights / Re: Repeat a sound file every 2-3 sequences.
« on: December 04, 2013, 12:40:25 am »
I wanted to be able to do a random playlist and not repeat opening and closing announcements so this is what I came up with.
I can explain if need be but our IT department keeps taking the network down to replace the phone system.  I just wanted to post the solution I came up with.

Custom Script for random playlist and opening and closing sequences with a reoccurring announcement every 2-3 songs.

Code: You are not allowed to view links. Register or Login
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

13
xlights / Repeat a sound file every 2-3 sequences.
« on: December 03, 2013, 05:47:36 pm »
Question 1
Is there a way to have a sound file repeat every 2-3 songs in a playlist?

Question 2:
Custom Scripting is there any documentation on this for Xlights?

Thanks

Justin

14
Vixen / Re: Vixen Help tab
« on: November 21, 2013, 03:25:50 pm »
 <pop.. <pop.. <pop..

15
Vixen / Re: Vixen Help tab
« on: November 21, 2013, 03:14:19 pm »
You are not allowed to view links. Register or Login

Here are the new location of the videos.

Or you can go to you tube via  You are not allowed to view links. Register or Login

Justin

Pages: [1] 2 3 4