You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
32 lines
474 B
Plaintext
32 lines
474 B
Plaintext
(
|
|
// should all return the same path:
|
|
(FluidFilesPath()++"Nicol-LoopE-M.wav").postln;
|
|
FluidFilesPath("Nicol-LoopE-M.wav").postln;
|
|
FluidFilesPath("/Nicol-LoopE-M.wav").postln;
|
|
)
|
|
|
|
(
|
|
s.waitForBoot{
|
|
Routine{
|
|
var path = FluidFilesPath()++"Nicol-LoopE-M.wav";
|
|
var buf = Buffer.read(s,path);
|
|
|
|
s.sync;
|
|
|
|
buf.play;
|
|
}.play;
|
|
}
|
|
)
|
|
|
|
(
|
|
s.waitForBoot{
|
|
Routine{
|
|
var path = FluidFilesPath("Nicol-LoopE-M.wav");
|
|
var buf = Buffer.read(s,path);
|
|
|
|
s.sync;
|
|
|
|
buf.play;
|
|
}.play;
|
|
}
|
|
) |