PlanoTse Handbook for Job Search Automation/PlanoTseScript Expressions
Appearance
PlanoTseScript Expressions
[edit | edit source]- missing
- Set to true or false based on existence of a file as declared by the command 'expect'.
{ expect script 12345; if missing then exit; }
- newid
- item number of the newly created item
{ new script My Third Testbed; expect script newid; if missing then exit; }
- no
- Set to true or false based on the last answer to the yes-or-no question posed by the command 'yesno'.
{ yesno Do you want to do that?; if no then say The answer was NO; }
- realdata
- Set to true if currently using a real data root directory.
{ if realdata then exit; }
- si.bookmark
- bookmark of the currently selected item in the tree view of the main window; a bookmark a string that from left to right includes the item type, the item number, and the item title.
{ say The type, ID and title of the selected item are si.bookmark; }
- si.handle
- handle of the currently selected item in the tree view of the main window; a handle a string that from left to right includes the item type and the item number.
{ say The type and ID of the selected item are si.handle; }
- si.id
- item number of the currently selected item in the tree view of the main window
{ say ID of the selected item is si.id; }
- si.title
- title of the currently selected item in the tree view of the main window
{ say Title of the selected item is si.title; }
- testdata
- Set to true if currently using a test data root directory.
{ if testdata then exit; }
- yes
- Set to true or false based on the last answer to the yes-or-no question posed by the command 'yesno'.
{ yesno Do you want to do this?; if yes then say The answer was YES; }