Search found 8 matches

by matestubb
Fri Dec 06, 2013 5:00 pm
Forum: DMXIS
Topic: DMXIS limitations
Replies: 5
Views: 5046

Re: DMXIS limitations

D-PRO does that.
by matestubb
Fri Nov 08, 2013 8:45 pm
Forum: Python macros for DMXIS and Show Buddy Active
Topic: RGBAW color macros - possible?
Replies: 9
Views: 12208

Re: RGBAW color macros - possible?

Cool! Well, in that case - I added the following code at the bottom of macros/system/RGB.py: def RgbawColour(r,g,b,a,w): sel = GetAllSelCh(False) if len(sel)==0: Message("Select some RGBAW channels first!") for ch in sel: nm = GetChName(ch).lower() if nm=="r" or nm=="red&quo...
by matestubb
Fri Nov 08, 2013 6:57 am
Forum: Python macros for DMXIS and Show Buddy Active
Topic: RGBAW color macros - possible?
Replies: 9
Views: 12208

Re: RGBAW color macros - possible?

Well I posted my code, but the forum eats all the spaces, and python doesn't like you to monkey with its spaces. I had to remove the post.

Sheesh!
by matestubb
Thu Oct 31, 2013 3:44 pm
Forum: Python macros for DMXIS and Show Buddy Active
Topic: RGBAW color macros - possible?
Replies: 9
Views: 12208

Re: RGBAW color macros - possible?

Sure, I'll grab the code when I get home tonight.
by matestubb
Thu Sep 19, 2013 8:31 pm
Forum: Python macros for DMXIS and Show Buddy Active
Topic: DMXis Macro - manage moving head targets for show
Replies: 24
Views: 25810

Re: DMXis Macro - manage moving head targets for show

I definitely appreciate it too!

I haven't got around to trying it yet, as I am still building my basic presets. I didn't even know any of this was possible until just recently, when I found out I had been running an ancient version of DMXIS which did not have any macro capability at all.
by matestubb
Wed Sep 11, 2013 5:24 am
Forum: Python macros for DMXIS and Show Buddy Active
Topic: RGBAW color macros - possible?
Replies: 9
Views: 12208

Re: RGBAW color macros - possible?

OK, I ended up extending RGB.py with a new function, RgbawColour(r,g,b,a,w). Works a treat - now I can define my macros like normal.
by matestubb
Tue Sep 10, 2013 9:03 pm
Forum: Python macros for DMXIS and Show Buddy Active
Topic: RGBAW color macros - possible?
Replies: 9
Views: 12208

RGBAW color macros - possible?

Hi, I'm newly registered here. I've been able to save my own RBG macros by editing existing scripts, but am wondering if I could set up macros for my RGBAW lights.

I'm not a python master, but have slung some code from time to time.