How to save all the projects

stéphane ducasse ducasse at iam.unibe.ch
Sat Jun 12 16:14:15 UTC 2004


Hi

I'm trying to save all the projects that are loaded in my image.
So I tried to avoid to save the current one but it does not work.
Apparently I need to wait and then

Project allProjects do: [:each |
					Project current == each
						ifFalse: [ each saveAs]]]

So I tried also

projectsNotToSave := self projectsNotToSave.
	Project allProjects do: [:each |
							Project current == each
								ifFalse: [ each enter; saveAs]]

But I just go to the first one.

Does anybody has an idea, code? I'm starting to read the code of 
threadNavigator but I
would appreciate if one of you know to share this information with me ;)

Stef




More information about the Squeak-dev mailing list