defaults write com.flyingmeat.Acorn nsTextDrawing 1It hasn't been fully tested yet, but it does fix some issues with the current text path.
-- AppleScript:
tell application "Acorn"
open "MyImage.acorn"
tell document 1
deselect
select oval rect {100, 100, 400, 600}
end tell
end tell
// JSTalk:
var acorn = JSTalk.application("Acorn");
var doc = acorn.open("MyImage.acorn");
doc.deselect();
doc.selectOval(NSMakeRect(100, 100, 400, 400));