Saving Workspace content to file in Squeak 3.9a

Previous Topic Next Topic
 
classic Classic list List threaded Threaded
4 messages Options
Reply | Threaded
Open this post in threaded view
|

Saving Workspace content to file in Squeak 3.9a

Joseph Frippiat
How do I save the workspace contents to a file in Squeak 3.9a?   This
option disappeared :'(  .

Thanks,

Joseph


Reply | Threaded
Open this post in threaded view
|

Re: Saving Workspace content to file in Squeak 3.9a

stéphane ducasse-2
Make sure that you use the standard tool set.
By executing

ToolSet default: nil

and selecting standard tools set.

Stef

On 18 janv. 06, at 09:50, Joseph Frippiat wrote:

> How do I save the workspace contents to a file in Squeak 3.9a?    
> This option disappeared :'(  .
>
> Thanks,
>
> Joseph
>
>


Reply | Threaded
Open this post in threaded view
|

Re: Saving Workspace content to file in Squeak 3.9a

Marcus Denker
In reply to this post by Joseph Frippiat

On 18.01.2006, at 09:50, Joseph Frippiat wrote:

> How do I save the workspace contents to a file in Squeak 3.9a?    
> This option disappeared :'(  .
>

The problem is that it does not open a workspace, but a stringholder  
window.

StandartToolSet class

openWorkspace
        StringHolder new openAsMorphLabel: 'Workspace'


replace that by


openWorkspace
        Workspace open

Reply | Threaded
Open this post in threaded view
|

Re: Saving Workspace content to file in Squeak 3.9a

David T. Lewis
In reply to this post by Joseph Frippiat
On Wed, Jan 18, 2006 at 09:50:54AM +0100, Joseph Frippiat wrote:
> How do I save the workspace contents to a file in Squeak 3.9a?   This
> option disappeared :'(  .

I think this may be something to do with incompletely implemented
PlusTools, or maybe it's just a bug. In any case, if you do
"Workspace open" you'll get a Workspace that works properly.

Dave