Search found 658 matches

by Wissmann
Wed Sep 02, 2015 8:12 am
Forum: Wishes And Feature Requests
Topic: Patch Editor switch Universe after n pixels
Replies: 1
Views: 31153

Re: Patch Editor switch Universe after n pixels

The suggested way to solve this is to create a own Fixture with the MADRIX Fixture Editor where you set the DMX-Adress Min/Max : to 1 and 450.
by Wissmann
Sun Aug 30, 2015 2:45 pm
Forum: Bug Reports
Topic: SCE Video plays mrec file twice
Replies: 3
Views: 42392

Re: SCE Video plays mrec file twice

Hi Ismal,
.
we provide a MADRIX 3.4b release.
Currently it will still take a bit time to get it done.
This Bug will be fixed in MADRIX 3.4b.
.
THX again
by Wissmann
Sun Aug 30, 2015 2:42 pm
Forum: Wishes And Feature Requests
Topic: Ideas for the Recording Editor
Replies: 1
Views: 31255

Re: Ideas for the Recording Editor

Hi Ismal,
.
thank you very much for this hints.
We will respect this in future releases.
by Wissmann
Fri Aug 28, 2015 8:02 am
Forum: Questions, Bug Reports, And Feature Requests
Topic: Splitting up a show to run on multiple Plexus
Replies: 2
Views: 59555

Re: Splitting up a show to run on multiple Plexus

Hi cinetron, welcome to the MADRIX Forum and sorry for the late reply. . If you set up a show in MADRIX where you patch the fixtures for 4 unsiveres you can create the necessary files for your two PLEXUS devices at one time. . Please follow this instruction: http://help.madrix.com/m3/html/plexus/ind...
by Wissmann
Thu Aug 27, 2015 8:43 am
Forum: Wishes And Feature Requests
Topic: access to strobe color from touch gui
Replies: 1
Views: 31488

Re: access to strobe color from touch gui

Hi cg,

some touch interfaces interpret a long left click as a right click, therefor the strobe button in the Touch GUI operates on left and right click.
Currently there is no possibility to set up the strobe color in the Touch GUI. We will think about it how to improve it.
by Wissmann
Thu Aug 27, 2015 8:36 am
Forum: Bug Reports
Topic: SCE Video plays mrec file twice
Replies: 3
Views: 42392

Re: SCE Video plays mrec file twice

Hi Ismal,

you are right,
this is a bug,
sorry for that.
We will fix this in a new release.

Thank you very much for this bug report!
by Wissmann
Thu Aug 27, 2015 8:29 am
Forum: Bug Reports
Topic: cue list .csv problem
Replies: 2
Views: 40115

Re: cue list .csv problem

by Wissmann
Thu Aug 27, 2015 8:20 am
Forum: Experiences And 'How To' - Questions
Topic: random cue stack
Replies: 1
Views: 28020

Re: random cue stack

Yes, use the main out macro for this.
The Following code will set your cue each 10 seconds (if your main mixer runs on 50 Frames per second) between cue 1 and cue 100.

Code: Select all

int f;

void InitEffect()
{

}

void PreRenderEffect()
{
	f = (f+1)%500;
	if(f == 0)
		CuelistGoto(random(0,99));
}