[maxmsp] Re: line object help
gusanomaxlist
gusanomaxlist at googlemail.com
Sat Dec 1 11:24:03 MST 2007
- Previous message: [maxmsp] Re: line object help
- Next message: [maxmsp] Re: line object help
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
Hi. First of all, as you are counting from 1 to 16, I guess you are using line to have a ramp between those numbers so you should use [line 0.] to deal with floats (notice the argument). Also, if you look at the number box which sets the metro speed, you connected it to the ramp inlet of [line] but your [bucket] object (which outputs your counter values in pack) updates the line ramp with values between 1 and 16 ms... Here is a modified version of your patch. Best. #P window setfont "Sans Serif" 9.; #P flonum 320 406 35 9 0 0 0 139 0 0 0 221 221 221 222 222 222 0 0 0; #P window linecount 1; #P newex 320 325 51 9109513 pack i 500; #P flonum 366 138 35 9 0 0 0 139 0 0 0 221 221 221 222 222 222 0 0 0; #P newex 320 377 40 9109513 line 0.; #P toggle 278 138 15 0; #P flonum 244 269 35 9 0 0 0 139 0 0 0 221 221 221 222 222 222 0 0 0; #P button 158 296 15 0; #P newex 158 321 69 9109513 loadmess 0.01; #N counter 1 16; #X flags 0 0; #P newobj 278 239 66 9109513 counter 1 16; #P newex 278 188 58 9109513 metro 500; #P connect 2 0 6 2; #P connect 3 0 2 0; #P connect 7 0 0 1; #P connect 7 0 8 1; #P connect 1 0 4 0; #P connect 1 0 8 0; #P connect 8 0 6 0; #P connect 0 0 1 0; #P connect 6 0 9 0; #P connect 5 0 0 0; #P window clipboard copycount 10;
- Previous message: [maxmsp] Re: line object help
- Next message: [maxmsp] Re: line object help
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
