Hi, in a project I'm working to I've built a simple subpatch with all counters and event management. Everything was working well. Suddenly, don't know why or what happened, if I try to open to edit the subpatch object this is not anymore possible, no canvas opens and I don't know khow to recover what inside. Strange (for me...) thing is that the main program still works, as if the time mng subpatch were still present.
Could someone please help? At least to recover the project inside this subpatch.
I'm using PD vanilla 0.53.2 under Windows OS.
Thanks
-
subpatch disappeared
-
Does the sub-patch appear blank in Windows' task-bar? Did you change OS / hardware / displays or screen resolution?
Than this could possibly be the issue:
https://forum.pdpatchrepo.info/topic/13863/some-patches-won-t-open-was-why-vanilla-fails-at-reading-some-purr-data-patches/2 -
Thanks for your answer.
"Does the sub-patch appear blank in Windows' task-bar?" => YES
"Did you change OS / hardware / displays or screen resolution?" => NO
Other subpatches in the same main work fine.
Only differences I found is that, in working subpatches Properties, I have:
Dimensions XY = 0, 0
In the not working one instead:
Dimensions XY = 85, 60
I haven't set these values (I believe...), and by BTW they are not changable in Properties box. I do not know where to write the info suggested in the link you posted -
@bobpell If you open the patch with a simple text editor....... one that does no formatting..... you will see a couple of lines that contain the name of the sub-patch.
You can ignore the #X restore line.#N canvas 907 466 450 300 mysubpatch 0;
((all the objects and connections in the sub-patch here))
#X restore 80 565 pd mysubpatch;The numbers will all be different, and mypatch will be the name that you gave your sub-patch.
The 907 466 in my example above is where the sub-patch will open on the screen, and the 450 300 is its size.
The 80 565 is where it appears in the mother patch window when it is closed.It could be....... most likely as it is still working..... that it has gone outside your screen area.
Edit the #N canvas line to #N canvas 0 0 xsize ysize (leave xsize and ysize as they are) and save the file.
It should then open on the screen in Pd.
You can then move it to where you want and save the patch.
David. -
"Edit the #N canvas line to #N canvas 0 0 xsize ysize" => It works!!
Subpatch reappeared. I wonder why it moved, but we got the result...
Grazie mille!