Search found 657 matches

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: 51436

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: 105610

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: 30195

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: 105610

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: 50503

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: 105610

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: 105610

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: 105610

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 ...
by Wissmann
Wed Aug 10, 2016 2:15 pm
Forum: Experiences And 'How To' - Questions
Topic: Scheduling using any year?
Replies: 12
Views: 105610

Re: Scheduling using any year?

Hi mariajenkins,

yes currently there are no wildcards.
Please use the following lines in the main out macro.

Code: Select all

void PreRenderEffect()
{
	int CueNumber = 2;
	date d = GetDate();
	if(d.day == 14 && d.month == 2)
	{
		if(CuelistCurrentCue() != CueNumber)
			CuelistGoto(CueNumber);
	}
}