]> gitweb.factorcode.org Git - factor.git/blob - basis/cocoa/apple-script/apple-script-docs.factor
820f08014618dd6bdad0a03ec9bebce53e8efba6
[factor.git] / basis / cocoa / apple-script / apple-script-docs.factor
1 USING: help.markup help.syntax strings ;
2
3 IN: cocoa.apple-script
4
5 HELP: run-apple-script
6 { $values { "str" string } }
7 { $description "Runs the provided uncompiled AppleScript code." }
8 { $notes "Currently, return values are unsupported." } ;
9
10 HELP: APPLESCRIPT:
11 { $syntax "APPLESCRIPT: word [[ ...applescript string... ]] " }
12 { $values { "word" "a new word to define" } { "...applescript string..." "AppleScript source text" } }
13 { $description "Defines a word that when called will run the provided uncompiled AppleScript. The word has stack effect " { $snippet "( -- )" } " due to return values being currently unsupported." } ;