Hi everyone, Is there any way to hide the interface components for a WaveDisplay? I'd like to reduce the visual clutter by hiding the V*2, V/2, Zoom In, etc. ...
Kenneth Newby
newby@...
Nov 2, 2000 10:26 pm
262
Hello, ... The V*2, V/2, Zoom buttons, etc. are not part of the WaveDisplay class. They are part of the SynthScope wich contains a WaveDisplay. A WaveDisplay...
Phil Burk
philburk@...
Nov 2, 2000 11:09 pm
263
... Me, sort of, with live input. But not in Java aka jSyn yet. I'm trying to understand how I can adapt/port what I have to jSyn. I'll probably get lost. ...
roelft
postbus@...
Nov 3, 2000 9:49 am
264
Two or more WaveShapers, with grain Envelopes applied, playing back out-of-phase to achieve overlapping grains, sounds like a workable basic strategy in JSyn....
Kenneth Newby
newby@...
Nov 3, 2000 6:28 pm
265
Hello, ... Yes. You can modify the GrainFarm example to use a SynthTable with a loaded sample. (see past messages on this at ...
Phil Burk
philburk@...
Nov 3, 2000 6:49 pm
266
Hi everyone -- I just finished an early version of an AM-FM Synthesizer. I've run it on a PC and a Mac and it seems to work well on both. By all means play...
Matt Tait
matt_tait@...
Nov 3, 2000 7:31 pm
267
Hello Matt, Very nice. It came up fine and ran on my PC under Netscape 4.73. I got some good sounds out but after playing a while I got: ...
Phil Burk
philburk@...
Nov 3, 2000 7:57 pm
268
Nice, Matt! I got foiled by corrupted scrollbar rendering after a while, though. Nick...
Nick Didkovsky
drnerve@...
Nov 3, 2000 8:44 pm
269
Phil -- I was careful to reuse every unit generator, etc.; unless I'm mistaken no objects are created in the noteOn(). I'll review the code and see what's...
Matt Tait
matt_tait@...
Nov 3, 2000 9:30 pm
270
Nick -- Thanks for the input. What exactly is corrupted scrollbar rendering? -- Matt ... From: Nick Didkovsky <drnerve@...> To: jsyn@egroups.com...
Matt Tait
matt_tait@...
Nov 3, 2000 9:31 pm
271
Hi Matt, After using the scrollbars - moving them up and down, clicking here and there, etc, they start to get redrawn in a totally lunatic fashion: huge ...
Nick Didkovsky
drnerve@...
Nov 3, 2000 10:30 pm
272
Hi Matt, I had the same problem with the Scrollbars. There are different problems on the Mac with the AWT Scrollbars having oversized arrows. So Nick and I put...
Phil Burk
philburk@...
Nov 3, 2000 11:18 pm
273
I've been working on a simple fader class if anyone is interested. The horizontal fader looks nice, but the vertical labelling needs some work. -- Tom Erbe ...
Tom Erbe
lobata@...
Nov 3, 2000 11:41 pm
274
... Yes, please! I have prepared an area on the egroups site for sharing user code in case anyone wishes to do so. Please check it out: ...
Phil Burk
philburk@...
Nov 4, 2000 12:38 am
275
Thanks Phil - I just uploaded it, if anyone wants to check it out, its in the gui area. ... -- Tom Erbe lobata@......
Tom Erbe
lobata@...
Nov 4, 2000 5:04 am
276
Sorry Phil, my mistake... I've been working a lot these days with WaveDisplay/WaveTrace classes in my head. But my question persists: Is there any way to...
Kenneth Newby
newby@...
Nov 4, 2000 4:55 pm
277
... I agree. Good idea. I would also like to run the scope with just a WaveDisplay. That would be particularly in Wire. I would keep the "auto capture" mode...
Phil Burk
philburk@...
Nov 4, 2000 7:00 pm
278
Nick -- These are Java 1.1 AWT scrollbars; to me 1.1 classes seemed to be the only ones that browsers could definitely handle. Have you discovered any way...
Matt Tait
matt_tait@...
Nov 5, 2000 2:50 pm
279
As Phil mentioned, there's a scrollbar alternative called CustomFader which is a subclass of Canvas. Works great. It's in com.softsynth.view There's also one...
Nick Didkovsky
drnerve@...
Nov 5, 2000 10:00 pm
280
In a message dated 11/4/00 2:01:06 PM, philburk@... writes: << Feedback? Better name than "BasicSynthScope"? >> How about SimpleScope? SBW...
StephenBWard@...
Nov 6, 2000 4:18 am
281
Hello, ... The noteOnFor() method simply calls noteOn() at the specified time, and noteOff() at the time+duration. The reason the CPU usage does not drop is...
Phil Burk
philburk@...
Nov 13, 2000 6:41 pm
282
... OK, that makes sense. ... As far as I can tell, this won't work with RingModBell, since it uses an expLag in lieu of an envelope, right? ... Yeah, I was...
Phil Stone
stone@...
Nov 14, 2000 1:33 am
283
... Right. RingModBell uses an ExponentialLag for a cheap envelope. It approaches its limit asymptotically so it cannot AUTO_STOP when done. It's essentially...
Phil Burk
philburk@...
Nov 14, 2000 3:22 am
284
Warning: if you were thinking of downloading the brand new Netscape 6, think twice. Netscape has apparently changed their plugin API. This means that old ...
Phil Burk
philburk@...
Nov 17, 2000 8:08 am
285
hello anybody built any midi controllable jsyn circuits? any tips/ bits of code? cheers matthew...
Matt Yee-King
yeeking@...
Nov 25, 2000 12:05 pm
286
Hi Matt, You can do this easily if you've got JMSL on your system, using its MidiParser and Robert Marsanyi's Java Midi package. Or, you could just use...
Nick Didkovsky
drnerve@...
Nov 25, 2000 5:41 pm
287
For those JSyn developers wishing to improve their Java chops, here is a site that has links to lots of Java tutorials: ...
Phil Burk
philburk@...
Nov 26, 2000 6:35 pm
288
Hello James, I am CC:ing the list because this is of general interest. The only choice at present for smoothing an Audio rate signal is to use an...
Phil Burk
philburk@...
Dec 18, 2000 4:57 am
289
Isn't a low pass filter a way to do this too? --rbt ... From: Phil Burk <philburk@...> To: James Forrest <honksandsirens@...> Cc: JSyn EGroup...
Robert Marsanyi
rnm@...
Dec 18, 2000 5:33 pm
290
... Yes! Good point. A StateVariableFilter with a cutoff of 1 to 30 Hz and a resonance of 0.5 would make a nice signal smoother. Or the Filter_1o1p could work...