Hi i would like to know if there is a way you can indicate a patch loading.\e.g i have many arrays that that load samples when i load the patch.
Is there a way i can know when all the loading is done..?
-
Question: Loading simulation
-
In windows you can use the -send "msg...." switch when loading. It will send the message when the patch is loaded. I think it exists in other os's as well. Otherwise, if you need something automatic to happen then you should read this... http://puredata.info/docs/guiplugins/GuiPluginsAPI about binding to virtual events.
-
@whale-av hi i am not aware of the send message.... do i create a message object....?
-
It's one of the switches here...... http://en.flossmanuals.net/pure-data/getting-started/advanced-configuration/ and it sends the message that you put in quotes to the terminal.
If you put -send<space!!>"hello" then it will print hello to the terminal (pd window in windows) when the patch has finished loading. Actually, it will print "hello: no such object" so it could be that you could use it more usefully, as the terminal is obviously trying to interpret/action the message received. -
Oh i understand now,. thanks for the help