MADRIX Forum • Storage Error messages
Page 1 of 1

Storage Error messages

Posted: Fri Feb 15, 2013 12:08 pm
by sutekh
Hi guys, having a problem saving and loading storage places , I have created a effect with the script editor that uses 52 notes on a keyboard to turn on and off 52 3 channle rgb modules .. I have 52 layers mapped to 52 pixels , but everytime. It was all working fine until I saved the stoarge place , now it wont open .. gives me either ' storage:errorin loadplacefromarchive from madrix storage place ' or just unable to to open madrix storage place ! ,

any ideas guys ??

Re: Storage Error messages

Posted: Fri Feb 15, 2013 3:49 pm
by Fritzsche
Hi,

I am sorry to hear about this problem.
Currently, it is difficult to come to a conclusion.

Can you please send us all related files (Setup File and Storage Place File) to info[@]madrix.com?

Thank you!

Re: Storage Error messages

Posted: Fri Feb 15, 2013 8:38 pm
by sutekh
cool guys, am away now this weekend but will get back to you early next week with a more detailed explanation of what im doing and trying to achieve , maybe you have a better solution as well .. :)

Re: Storage Error messages

Posted: Mon Mar 04, 2013 4:53 pm
by Wissmann
If i understand it correctly you use 52 layers?
Each mapped for one pixel?
.
If so i highly recommend to use the SetPixel function in the script.
.
like
.
SetPixel(WHITE,0,0) to set the TopLeft Pixel on your Grid to white color
or
SetPixel(RED,5,0) to set the fifth Pixel of the first row in your grid to red
or
color mycolor = {255,255,0};
SetPixel(mycolor,0,5); to set the first pixel in the fifth row to your color in this case yellow.