Advertisement
Guest User

Mariner Software Paperless AppleScript Dictionary

a guest
Nov 17th, 2019
147
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.33 KB | None | 0 0
  1. Standard Suite Common classes and commands for most applications. application n [see also Paperless Suite] : An application's top level scripting object.
  2. PROPERTIES
  3. name (text, r/o) : The name of the application.
  4. frontmost (boolean, r/o) : Is this the frontmost (active) application?
  5.  
  6. make v : Make a new object.
  7. make
  8. new type : The class of the new object.
  9. [with properties record] : The initial values for properties of the object. → specifier : to the new object
  10. open v : Open a library.
  11. open list of file : The file(s) to be opened.
  12. close v : Close a library.
  13. close specifier : the library(ies) to close.
  14. quit v : Quit an application. quit
  15. Paperless Suite The Paperless suite application n [inh. application; see also Standard Suite] : Paperless's top level scripting
  16. object. ELEMENTS
  17. contains librarys.
  18. RESPONDS TO open.
  19.  
  20. library n : A library. ELEMENTS
  21. contains receipts, documents; contained by application.
  22. PROPERTIES
  23. path (text) : The library's path. name (text) : The library's name.
  24.  
  25. RESPONDS TO close.
  26.  
  27. library item n : Abstract class to define a receipt or document
  28. receipt n [inh. library item] : A receipt. ELEMENTS
  29. contained by .
  30. PROPERTIES
  31. merchant (text) : The merchant's name.
  32. amount (text) : amount of the receipt (as a string); can include currency symbol tax (text) : tax or VAT of the receipt (as a string); can include currency symbol payment method (text) : method of payment
  33. category (text) : category of receipt
  34. notes (text) : notes for the receipt
  35. date (date) : date of the receipt
  36. custom 1 (text) : custom data 1
  37. custom 2 (text) : custom data 2
  38. custom 3 (text) : custom data 3
  39. file (file) : file reference for the receipt
  40. RESPONDS TO add.
  41.  
  42. document n [inh. library item] : A document. ELEMENTS
  43. contained by .
  44. PROPERTIES
  45. title (text) : The document's title.
  46. sub category (text) : sub category category (text) : category of document notes (text) : notes for the document date (date) : date of the document custom 1 (text) : custom data 1
  47. custom 2 (text) : custom data 2
  48. custom 3 (text) : custom data 3
  49. custom 4 (text) : custom data 4
  50. custom 5 (text) : custom data 5
  51. custom 6 (text) : custom data 6
  52. file (file) : file reference for the document
  53. RESPONDS TO add.
  54.  
  55. add v : Adds a receipt or document.
  56. add library item : A receipt or document. [prompting boolean] : brings up user interface
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement