Search found 658 matches

by Wissmann
Thu Nov 03, 2016 9:13 am
Forum: Experiences And 'How To' - Questions
Topic: playing an LED strip with a keyboard
Replies: 4
Views: 45169

Re: playing an LED strip with a keyboard

Hi,
what exactly you have in mind to achieve?
I mean what kind of effect you like to create by pressing the midi Keyboard.
Currently we only offer access to 8 Layers by midi like you already realized.
by Wissmann
Tue Sep 27, 2016 7:58 am
Forum: Experiences And 'How To' - Questions
Topic: madrix how to work with apa102 led
Replies: 5
Views: 51510

Re: madrix how to work with apa102 led

as you can see here
http://www.madrix.com/en/home/products/nebula.html

MADRIX NEBULA is able to control apa102 and supports up to 680 RGB Pixel on each port .
by Wissmann
Fri Sep 16, 2016 5:23 pm
Forum: Experiences And 'How To' - Questions
Topic: Scheduling using any year?
Replies: 12
Views: 105731

Re: Scheduling using any year?

Because of this thread we figure out a bug in MADRIX when trying to set the CueDate by macro. We fixed this issue in the today released MADRIX Version 3.6b. Please download this version and update MADRIX to it. . Also i modified the macro so it will detect the change of the year automaticaly and rec...
by Wissmann
Tue Aug 30, 2016 1:56 pm
Forum: Questions, Bug Reports, And Feature Requests
Topic: Elation Tape Protocol
Replies: 1
Views: 30275

Re: Elation Tape Protocol

THX for Info
by Wissmann
Tue Aug 30, 2016 1:52 pm
Forum: Experiences And 'How To' - Questions
Topic: Scheduling using any year?
Replies: 12
Views: 105731

Re: Scheduling using any year?

Hi Maria,
can you send me your setup or at least your cuelist to info@madrix.com please
and leave a message here if done.
THX
by Wissmann
Sat Aug 20, 2016 3:21 pm
Forum: Bug Reports
Topic: Error message when closing Madrix in Windows 10
Replies: 4
Views: 50653

Re: Error message when closing Madrix in Windows 10

Hi, Jason, thx for the hint with the toolkit and the log file.
by Wissmann
Thu Aug 18, 2016 3:04 pm
Forum: Experiences And 'How To' - Questions
Topic: Scheduling using any year?
Replies: 12
Views: 105731

Re: Scheduling using any year?

The whole macro have to look like this @scriptname=""; @author=""; @version=""; @description=""; void InitEffect() { int cueday, cuemonth; date d = GetDate(); int thisyear = d.year; for(int cuenumber = 0; cuenumber < CuelistCount(); cuenumber++) { if(CueGetDat...
by Wissmann
Thu Aug 11, 2016 10:51 am
Forum: Experiences And 'How To' - Questions
Topic: Scheduling using any year?
Replies: 12
Views: 105731

Re: Scheduling using any year?

Hi maria, . i developed a new macro for you which makes it maybe more easy for your . void InitEffect() { int cueday, cuemonth; date d = GetDate(); int thisyear = d.year; for(int cuenumber = 0; cuenumber < CuelistCount(); cuenumber++) { if(CueGetDateWeekday(cuenumber) != 8) { cueday = CueGetDateDay(...
by Wissmann
Thu Aug 11, 2016 10:33 am
Forum: Experiences And 'How To' - Questions
Topic: Scheduling using any year?
Replies: 12
Views: 105731

Re: Scheduling using any year?

Hi, . this macro call a cue off your choice to a date of your choice (ignoring the year). If the cue you call have a duration (inside the cue list) the next cue will be called by the cuelist automaticaly after the duration time. . Please descrive a bit more detailed what you have in mind, so we can ...