Page 2 of 2

Re: A editor steps idea (radiumers feedback wanted)

Posted: 14 Apr 2019 22:46
by ecodjtal
is it possible to script something that would allow that list cycling behavior but for cursor navigation? that might be more flexible and useful than the first idea. because it could be used for all sorts of editing tasks.

something like :
ra.CursorNextfromList(user input list)

https://github.com/kmatheussen/radium/b ... s.conf#L64

Re: A editor steps idea (radiumers feedback wanted)

Posted: 15 Apr 2019 09:13
by kjetil
Yes, it's possible to script a ra.CursorNextfromList function. Use a global variable to store list position, and increase it for every call. But I'm not sure if this solves anything. The function assigned to the keybinding for cursor down is not called when adding notes.

Re: A editor steps idea (radiumers feedback wanted)

Posted: 15 Apr 2019 11:16
by kjetil
ecodjtal wrote: 14 Apr 2019 20:29 i couldn't load the block
That's strange. Maybe character encoding was changed when downloading. This one might work better: http://users.notam02.no/~kjetism/swingb ... _block.zip

Re: A editor steps idea (radiumers feedback wanted)

Posted: 15 Apr 2019 16:08
by ecodjtal
yes this one worked immediately !

Re: A editor steps idea (radiumers feedback wanted)

Posted: 15 Apr 2019 16:38
by ecodjtal
kjetil wrote: 15 Apr 2019 09:13 But I'm not sure if this solves anything. The function assigned to the keybinding for cursor down is not called when adding notes.
thats fine, even if i have to press up or down between each step it would still speed up the process by allowing me to not have to focus on the step size variations while i'm editing notes or data.

which would give me something like this but when i'm inputing new notes
https://forum.renoise.com/t/note-follow-step-edit/43194

could i use something like openrequester or popumenu to update a global variable from the gui without reloading the config file?
https://github.com/kmatheussen/radium/b ... conf#L1105

https://pasteboard.co/IagZWpH.png

Re: A editor steps idea (radiumers feedback wanted)

Posted: 16 Apr 2019 11:43
by kjetil
ecodjtal wrote: 15 Apr 2019 16:38 could i use something like openrequester or popumenu to update a global variable from the gui without reloading the config file?
https://github.com/kmatheussen/radium/b ... conf#L1105

https://pasteboard.co/IagZWpH.png
Yes, but unless you want to do several requests in the same window, you don't have to use openRequester. Then it's enough to call requestString/requestInteger/etc.

Re: A editor steps idea (radiumers feedback wanted)

Posted: 16 Apr 2019 21:53
by ecodjtal
Awesome ! thanks