Eyeon:Script/Reference/Applications/Fusion/Classes/Composition/GetConsoleHistory

From VFXPedia

< Eyeon:Script | Reference | Applications | Fusion | Classes | Composition
Revision as of 14:01, 9 December 2006 by Peter (Talk | contribs)
(diff) ← Older revision | Current revision (diff) | Newer revision → (diff)
Jump to: navigation, search

Contents

Composition : GetConsoleHistory

Arguments

GetConsoleHistory ( startLine, endLine )

  • startSeq (integer, optional)

The console sequence number that the script will start reading from.

  • endSeq (integer, optional)

The console sequence number that the script will stop reading at.

Returns

A table with the history of the console between two points. If endSeq is omitted, the script gets all history starting from the variable passed into startSeq. If both values are omitted, returns a general table about the history of the console (number of lines, etc.)

Remarks

This function is useful for getting all information displayed in the console between two points. Could be used to search for warnings or errors generated by previous scripts.

Requirements

  • eyeonScript 5.0
  • Fusion 5.0

Examples

dump(composition:GetConsoleHistory(1))


Tips for GetConsoleHistory (edit)

EyeonTips:Script/Reference/Applications/Fusion/Classes/Composition/GetConsoleHistory