"Griff" <
[hidden email]> wrote in message
news:
[hidden email]...
> If I wanted to "export" my environment configuration settings so that I
> could "back them up" or share them between two computers, how might I
> go about doing so?
>
You thought the last bit was awesome...
file := 'C:\myColourSettings.stb'.
"write them out:"
stream := FileStream write: file mode: #create check: false text: false.
SmalltalkSystem current workspaceClass textStyles binaryStoreOn: stream.
stream close.
"read them in"
styles := Object binaryReadFrom: (FileStream read: file text: false).
SmalltalkSystem current workspaceClass textStyles: styles.