Script for AppleWorks to Show Tools

Hello All

I would like to open in Appleworks a draw
document, and then to open inside the Menu
“Window” the “Show Tools”, any idea :idea: how
this can be done with applescript ? Thanks to all.

thx

linus

:rolleyes:

Here you go:

tell application “AppleWorks 6”
launch
activate
make document at front with properties {name:“New Document”, document kind:text document}
select menu item “Show Tools” of menu “Window”
end tell

I’m assuming you meant a new document.

Replace ‘text document’ with ‘drawing document’.

gl,