New year, new question.... :-D about how to initialize a dropdown

So, i use a button to change a dropdown's value (using setVar and VAR{}), and to recall both states of it (using stateGet, stateSet).
image
image

Each time i load my session, dropdown's on "undefined"...

I tried the VAR{variableName,default} way, but in this case, "default" is not a number... and that seems to be a problem, or at least, i don't find how to write it...

My variable, when button = 0 (it's default value):

setVar("dropdown_Q","Q",{"1/1":80,"1/2":81,"1/4":82,"1/8":83,"1/16":84,"1/32":85,"1/64":86,"1/128":87})

When button = 1, same thing with different CC numbers.

I tried VAR{Q,{"1/1".......87}}, VAR{Q,["1/1".......87]}, VAR{Q,"..."}.... and some other things, but it doesn't work...

How to get there ?

Thanks

The default value for this syntax is limited to simple values (not objects), but you can solve it this way:

#{
VAR{Q} || {"1/1":80}
}

Thank you, that plus the VAR{color,cyan} in the colorText field, it's perfect.