| GView |
Properties (Get & Set):
|
| GMouse |
Properties (Get):
|
| GKey |
Properties (Get):
|
| Thing Object::Mail, Object::Contact and Object::Calendar all inherit from 'Thing'. |
The properties available are documented in
the Scribe DOM.
Methods that apply to any 'Thing':
|
| SMsg(Text) | Displays a windows message box. |
| SGetFilterMail() | Returns the Object::Mail currently being filtered. Not applicable to Forms Scripting. |
| SCreateThing(Type, Folder) | Creates a Scribe object of 'Type' in the folder 'Folder'.
Available types are:
|
| SGetDom(DomField) | Gets a DOM field. Used in filtering only. |
| SRunFilterActions() | Runs the actions on the current filter. Once you have tested the input mail in your filter, call this to execute the actions setup on the filter. Otherwise you can call various API functions on the mail itself to acheive the same results, but seeing as there is already a reasonable UI on the filter action list why not use it. |
| OnLoad(GView Form) Form - GView containing all the fields in the lr8 resource id '1'. | Called when the form is on the screen. |
| OnUnload(GView Form) Form - GView containing all the fields in the lr8 resource id '1'. | Called before the form is removed from the screen. |
| OnMouseClick(GView Ctrl, GMouse Mouse) | Called when the user clicks on a control. |
| OnMouseEnter(GView Ctrl, GMouse Mouse) | Called when the mouse enters the area of the screen occupied by a control. |
| OnMouseExit(GView Ctrl, GMouse Mouse) | Called when the mouse exits the area of the screen occupied by a control. |
| OnMouseWheel(GView Ctrl, Float Lines) Ctrl - GView object. Lines - A float describing the lines scrolled. | Called when the user scrolls with the mouse wheel. |
| OnFocus(GView Ctrl, Bool In) Ctrl - GView object. In - An int, true if the focus is being aquired. | Called when the control gains and loses focus. |
| OnPosChange(GView Ctrl) | Called when a control changes position. |
| OnNotify(GView Ctrl, Int Flags) | Called when a control notifies it's parent of something. Usually this is called when a controls value has changed or a control has been activated. |