Hie everyone,
For the moment when I want to run a LotusScript agent on selected document, I am using this trick:
- Run an @Formula agent with:
@Environment( variable ; value )
@Command( [ToolsRunMacro] ; LotusScriptAgent )
NB. LotusScript agent code:
valueV = notesSession.GetEnvironmentValue( name$ [, system ] )
OR
value$ = notesSession.GetEnvironmentString( name$ [, system ] )
Isn’t there a nicest way to retrieve values on each selected documents directly within the LotusScript agent ?
TIA for any feedback !