Jump to content

LotusScript: Difference between revisions

From EDM2
Ak120 (talk | contribs)
Ak120 (talk | contribs)
mNo edit summary
Line 1: Line 1:
An embedded object-oriented [[Basic]] like scripting language used by [[Lotus Development Corporation]] (Later [[IBM]]) as the default scripting language on all of their software products. The language has in particular a large number of objects available for use with Lotus Notes, Lotus Word Pro and [[Lotus 1-2-3]], but it is also used on other [[Lotus SmartSuite]] products and software that commonly interface with Lotus Notes such as Domino Server and Domino Designer.
'''LotusScript''' is an embedded object-oriented [[Basic]]-like language.
 
It was used by [[Lotus Development Corporation]] (later [[IBM]]) as the default scripting language for their software products. The language has in particular a large number of objects available for use with Lotus Notes, Lotus Word Pro and [[Lotus 1-2-3]], but it is also used on other [[Lotus SmartSuite]] products and software that commonly interfaces with Lotus Notes such as Domino Server and Domino Designer.


The core language itself has great similarities to [[Visual Basic]] and [[VisualAge for Basic]] and may even be considered a variation of those, but the object model and the available objects have been adapted for fit the application domain rather than general programming tasks.
The core language itself has great similarities to [[Visual Basic]] and [[VisualAge for Basic]] and may even be considered a variation of those, but the object model and the available objects have been adapted for fit the application domain rather than general programming tasks.


==Releases==
*Release 1 in Improv
*Release 1 in Improv
*Release 2 in Lotus Forms and Notes ViP
*Release 2 in Lotus Forms and Notes ViP
*3.0 - Freelance Graphics
*3.1 - 1-2-3, Approach, Word Pro


==Development Environment==
;Editor support
;Editor support
* [[jEdit]] - Java based editor - LotusScript syntax highlighting available as a separate download
* [[jEdit]] - Java based editor - LotusScript syntax highlighting available as a separate download
Line 11: Line 17:
==Publications==
==Publications==
* Rob Beyer, Roland Houle, Robert Perron: ''60 Minute Guide to LotusScript 3 Programming for Notes 4'' - IDG 1996, ISBN 1-56884-779-3
* Rob Beyer, Roland Houle, Robert Perron: ''60 Minute Guide to LotusScript 3 Programming for Notes 4'' - IDG 1996, ISBN 1-56884-779-3
* Anthony Patton: ''Practical LotusScript'' 1999 - ISBN 1884777767
* Anthony Patton: ''Practical LotusScript'' - Manning 1999, ISBN 1-884777-76-7
* Normunds Kalnberzins: [http://www.ls2capi.com LotusScript to Lotus C API Programming Guide] - 2003, ISBN 9984-19-492-2
* Normunds Kalnberzins: [http://www.ls2capi.com LotusScript to Lotus C API Programming Guide] - 2003, ISBN 9984-19-492-2
* [http://www.redbooks.ibm.com/redbooks/SG244856.html LotusScript for Visual Basic Programmers] - IBM Redbook
* [http://www.redbooks.ibm.com/redbooks/SG244856.html LotusScript for Visual Basic Programmers] - IBM Redbook
Line 19: Line 25:


==Links==
==Links==
;Introductions
* [http://www-01.ibm.com/support/knowledgecenter/api/content/SSVRGU_9.0.0/com.ibm.designer.domino.main.doc/H_DUMMY_TOPIC_HEAD.html?locale=en LotusScript] - IBM - has a good introduction to the language.
;Tips and code snippets
;Tips and code snippets
* [http://www.breakingpar.com/bkp/home.nsf/Category?OpenNavigator&87256B280015193F872571F0000895B0 A collection of LotusScript Tips] - Again primarily intended for Notes but portions should usable for Smartsuite development.
* [http://www.breakingpar.com/bkp/home.nsf/Category?OpenNavigator&87256B280015193F872571F0000895B0 A collection of LotusScript Tips] - Again primarily intended for Notes but portions should usable for Smartsuite development.

Revision as of 03:35, 18 December 2018

LotusScript is an embedded object-oriented Basic-like language.

It was used by Lotus Development Corporation (later IBM) as the default scripting language for their software products. The language has in particular a large number of objects available for use with Lotus Notes, Lotus Word Pro and Lotus 1-2-3, but it is also used on other Lotus SmartSuite products and software that commonly interfaces with Lotus Notes such as Domino Server and Domino Designer.

The core language itself has great similarities to Visual Basic and VisualAge for Basic and may even be considered a variation of those, but the object model and the available objects have been adapted for fit the application domain rather than general programming tasks.

Releases

  • Release 1 in Improv
  • Release 2 in Lotus Forms and Notes ViP
  • 3.0 - Freelance Graphics
  • 3.1 - 1-2-3, Approach, Word Pro

Development Environment

Editor support
  • jEdit - Java based editor - LotusScript syntax highlighting available as a separate download

Publications

  • Rob Beyer, Roland Houle, Robert Perron: 60 Minute Guide to LotusScript 3 Programming for Notes 4 - IDG 1996, ISBN 1-56884-779-3
  • Anthony Patton: Practical LotusScript - Manning 1999, ISBN 1-884777-76-7
  • Normunds Kalnberzins: LotusScript to Lotus C API Programming Guide - 2003, ISBN 9984-19-492-2
  • LotusScript for Visual Basic Programmers - IBM Redbook
  • LotusScript Language Guide Version 7 - Note this is for a newer version of LotusScript than is supplied with most OS/2 products, but is still a useful reference.
  • Julian Robichaux: The unfinished LotusScript Book - As it is unfinished it is not really usable as a tutorial but useful as a huge source of tips.
  • Paul Ray: A Developer’s Guide to Programming the Notes C API from LotusScript - THE VIEW Jul/Aug 2001

Links

Tips and code snippets
Code