February 25, 200916 yr I'm using DoScript to trigger a script whenever a record is committed: i.e., whenever the user has finished editing a record and either moves to another record or creates a new record, a script should trigger. It's working fine, but the script I'm triggering manipulates the contents of the record that has been committed. However, using the code Let ( queueScript = mFMb_DoScript( "TriggeredScript" ) ; mFMb_DS_LastErrNum = 0 ) To trigger the script means that it's triggered after the record being edited is committed. This means that "TriggeredScript" runs with reference to the record that is being moved to. Any idea how I can change this so the script points at the correct record?
Create an account or sign in to comment