Re: Sending Empty Params, along with a comma delimited value (RGB in this case)

2016-10-18 Thread Sannyasin Brahmanathaswami
Thanks Aliā€¦ I was overthinking this one for sure this works great: on mouseUp put "255,255,0" into pColor2 # bright yellow send "setfillGradient ,,,pColor2,,," to grc colorMeditationBkgnd end mouseUp command setFillGradient pStartPosition,pEndPosition,pColor1, pColor2,pAlpha1,pAlpha2

Re: Sending Empty Params, along with a comma delimited value (RGB in this case)

2016-10-18 Thread Ali Lloyd
Send params are evaluated in the current context, so you can put variable names in the list and it will work, eg: local tRGB put "25,25,25" into tRGB send "doSomethingWithColor tRGB" to stack "Color Manager" On Tue, Oct 18, 2016 at 8:55 AM Sannyasin Brahmanathaswami wrote: >