Re: [PD] How to create an array in Ofelia

2020-08-22 Thread Raphael Isdant
Hi Alexandros, You can write this in an object box, and send a bang to it: ofelia f; local tab = ofTable(); for i = 1, 161 do tab[i] = ofRandom(0, 255) end; return(tab); Le sam. 22 août 2020 à 17:48, Alexandros a écrit : > I'm trying to write some Lua scripts in [ofelia] and I don't know how

Re: [PD] How to create an array in Ofelia

2020-08-22 Thread Esteban Viveros
Hello! If you are in ofelia 3 you can script like you did double clicking in ofelia object and writing your script. In ofelia object you can use ofTable() or to interact with pd arrays ofArray() see patch example. Em sáb., 22 de ago. de 2020 às 12:48, Alexandros escreveu: > I'm trying to

[PD] [PD-announce] [OT] Professor post at Electronic Studio Basel, Switzerland

2020-08-22 Thread vb
Sorry for cross-posting! The Electronic Studio Basel of the University of Applied Sciences and Arts Northwestern Switzerland has an open position for a Professor of Creative Music Technology and Co-head of the studio.

[PD] How to create an array in Ofelia

2020-08-22 Thread Alexandros
I'm trying to write some Lua scripts in [ofelia] and I don't know how to create an array, since arrays in Lua are written with curly brackets, which are not allowed in Pd. For example, I'd like to create an array like this: local tab = {} and then populate it like this: for i=1,161 do