
Archimedes WinLogo version 1.27

Changes:

The main change you will find is the inclusion of the toolbar. 
This gives you easy access to the following areas (in order of
appearance on the toolbar):

* Save dialogue
* Print dialogue 
* Debug window 
* Shapes window, 
* Find text dialogue
* Turtles window
* Writing style window
* Graphics Axis window
* Copy key
* Move key
* Cut key

Two keyboard shortcuts have also been added:

* F3 for the save dialogue
* F4 for the Find text dialogue 

Two text selection short cuts have also been included:

* Double click to select a word 
* Triple click to select a line

Improvements have been made to the save dialogue and the 
Procedure tree dialogue, making them easier to use and improving their clarity.

There are also some changes on the WinLogo iconbar menu:

* A Reset option has been added. This restores the default windows and window sizes
* The toolbar can be set to display horizontally or vertically
* Currently active windows are now ticked on the menu

When you choose quit from this menu you are also now prompted to 
save your work.

Finally SWI commands have now been implemented via the SWI procedure. Note that 
all parameters passed to SWI must be 16 bit, and all those returned will also be 
16 bit. A point to note when using SWI within Logo is that the processor flags are 
NOT returned by the call.

An example of use might be

make "result swi 0 [68]    will print the letter D (ASCII 68) in a window.
show :result               will show the parameters returned by this swi - [68 0 0 0 0 0 0 0 0 0]

or again

make "result swi "OS_WriteC [69]      will print an E
show :result                          will return [69 0 0 0 0 0 0 0 0 0]

Other SWI commands are listed in the documentation that came with your computer, 
and are in the Programmers Reference Manuals.