No, the script is odd. I also tried loading Study 1 from the Study folder and also pressing key 2 takes me back to the script browser as if I didn’t load it. Other scripts seem to load and work normally.
I did a little more testing, loading other scripts as well from maiden. The odd thing is that when I go back to my test script, the error I get for an encoder shows the path for the last script I ran:
lua: /home/we/norns/lua/paramset.lua:166: attempt to index a nil value (local 'param')
stack traceback:
/home/we/norns/lua/paramset.lua:166: in function 'paramset.delta'
/home/we/dust/scripts/mhetrick/easygrain.lua:113: in function 'encoders.callback'
/home/we/norns/lua/encoders.lua:56: in function 'encoders.process'
The script I was running to test was this:
-- many tomorrows
-- norns study 1
engine.name = "TestSine"
function init()
engine.hz(100)
print("the end and the beginning they are the same.")
end
function key(n,z)
print("key " .. n .. " == " .. z)
end
function enc(n,d)
print("encoder " .. n .. " == " .. d)
end
Looking at the developer tools, I see a 404 error for http://norns.local/maiden/snippets/text.js which makes me believe there is something wrong with maiden maybe?