

have either of you tried different SkinDefault.py customizations with any success? i doublechecked and the file in the git repository is identical to the one i'm using in my Remote Scripts > Push directory.thekillingtree wrote:same here.DRTYWRKS wrote:I can't seem to get the file to work either. I placed it in the correct directory and then restarted live without success. My push just remains on the screen "Please start live to play..."
this is a fresh 9.05 install, btw.
if you think it's a problem with the code you're inserting, maybe you could post your file here so we could take a look? make sure to put it inside the "code" BBCode tags to preserve formatting...DRTYWRKS wrote:I started to get really excited about learning python better so I could do more with my push, but having this much trouble doing simple color changes has somewhat discouraged me... I'm usually pretty good at this sort of thing. What am I doing wrong!!![]()
Code: Select all
from Colors import Basic, Rgb, Pulse, Blink, BiLed
class Colors:
class Option:
Selected = BiLed.YELLOW
Unselected = BiLed.YELLOW_HALF
On = BiLed.YELLOW
Off = BiLed.OFF
Unused = BiLed.OFF
class List:
ScrollerOn = BiLed.AMBER
ScrollerOff = BiLed.AMBER_HALF
class DefaultButton:
On = Basic.FULL
Off = Basic.HALF
Disabled = Basic.OFF
Alert = Basic.FULL_BLINK_SLOW
class DefaultMatrix:
On = Rgb.WHITE
Off = Rgb.BLACK
class Scales:
Selected = BiLed.YELLOW
Unselected = BiLed.GREEN_HALF
FixedOn = BiLed.AMBER
FixedOff = BiLed.YELLOW_HALF
Diatonic = BiLed.AMBER
Chromatic = BiLed.YELLOW_HALF
class Instrument:
NoteBase = Rgb.LIME(17)
NoteScale = Rgb.ORCHID(49)
NoteForeign = Rgb.MAGENTA
NoteInvalid = Rgb.BLACK
NoteInactive = Rgb.BLACK
NoteOff = Rgb.BLACK
Feedback = Rgb.SKY(37)
FeedbackRecord = Rgb.RED.shade(1)
class Recording:
On = Basic.FULL
Off = Basic.HALF
Transition = Basic.FULL_BLINK_FAST
class Session:
SceneSelected = BiLed.GREEN
SceneUnselected = BiLed.OFF
SceneTriggered = BiLed.GREEN_BLINK
ClipStopped = Rgb.AMBER
ClipStarted = Pulse(Rgb.GREEN.shade(1), Rgb.GREEN, 48)
ClipRecording = Pulse(Rgb.BLACK, Rgb.RED, 48)
ClipTriggeredPlay = Blink(Rgb.GREEN, Rgb.BLACK, 24)
ClipTriggeredRecord = Blink(Rgb.RED, Rgb.BLACK, 24)
ClipEmpty = Rgb.BLACK
RecordButton = Rgb.RED.shade(2)
class Zooming:
Selected = Rgb.AMBER
Stopped = Rgb.RED
Playing = Rgb.GREEN
Empty = Rgb.BLACK
class TrackState:
Common = Rgb.BLACK
Stopped = Rgb.RED
Disabled = Basic.OFF
class DrumGroup:
PadSelected = Rgb.OCEAN
PadSelectedNotSoloed = Rgb.OCEAN
PadFilled = Rgb.YELLOW
PadEmpty = Rgb.YELLOW.shade(2)
PadMuted = Rgb.AMBER.shade(1)
PadMutedSelected = Rgb.OCEAN.shade(1)
PadSoloed = Rgb.BLUE
PadSoloedSelected = Rgb.OCEAN.highlight()
PadInvisible = Rgb.BLACK
class LoopSelector:
Playhead = Rgb.GREEN
PlayheadRecord = Rgb.RED
SelectedPage = Rgb.OCEAN
InsideLoop = Rgb.WHITE
OutsideLoop = Rgb.DARK_GREY
class NoteEditor:
Step = Rgb.SKY.highlight()
StepHighVelocity = Rgb.OCEAN
StepFullVelocity = Rgb.BLUE
StepMuted = Rgb.AMBER.shade(2)
StepEmpty = Rgb.BLACK
StepDisabled = Rgb.RED.shade(2)
Playhead = Rgb.GREEN
PlayheadRecord = Rgb.RED
QuantizationSelected = BiLed.GREEN
QuantizationUnselected = BiLed.YELLOW
class NoteRepeat:
RateSelected = BiLed.RED
RateUnselected = BiLed.YELLOW
class Mixer:
SoloOn = Rgb.BLUE
SoloOff = Rgb.DARK_GREY
MuteOn = Rgb.DARK_GREY
MuteOff = BiLed.YELLOW
StopTrack = Rgb.RED
StoppingTrack = Blink(Rgb.RED, Rgb.BLACK, 24)
ArmSelected = BiLed.RED
ArmUnselected = BiLed.RED_HALF
class Browser:
Load = BiLed.GREEN
LoadNext = BiLed.YELLOW
LoadNotPossible = BiLed.OFF
Loading = BiLed.OFF
class MessageBox:
Cancel = BiLed.GREEN
DRTYWRKS wrote:using Thekillingtree's method I got it to work. Like him I too was just saving the link as rather than downloading the zip.. This now works... My next question is, how I can I edit this file to worth with the colors I choose. What editor should I be using. Thanks for the solution! 'Preesh.
Also bravo beautiful color choice. So much more relaxing, but alas I must have lime green.
edit. I am on a windows machine.
Code: Select all
... = Rgb.LIME(17)
Code: Select all
Rgb.LIME
Code: Select all
Rgb.LIME.highlight()
Code: Select all
RGB.LIME.shade(1)
Code: Select all
Rgb.LIME.shade(2)
fishmonkey wrote:did you restore the original SkinDefault.pyc file?
if you need copies, you can get them straight from the Live installer...