|
|
|
Get Xtra Info
Added on 6/30/1999
|
Returns info on all Xtras installed
--To enumerate the list of available scripting xtras use:
on showAllXtras
repeat with n = 1 to the number of xtras
put the name of xtra n
end repeat
end
--to dump the available methods for all xtras:
on showAllMethods
repeat with n = 1 to the number of xtras
put interface(xtra n)
end repeat
end
|
|