Boltek Lightning/2000 User Manual

Page 321

Advertising
background image

R E A L - T I M E L I G H T N I N G D E T E C T I O N

321

321

321

321


; Add the just-produced file to the upload
; queue.

#AddToUploadQueue( @L2KFolder + 'rtl_a.png' )

; Produce an image of the graph window. Make
; its size 800 by 160 and save it to a file in
; the Lightning/2000 folder named ‘graph.png’.

#ProduceScreenCapture(
'Graph',
@L2KFolder + 'graph.png',
800, 160 )

; Add the new file to the upload queue.

#AddToUploadQueue( @L2KFolder + 'graph.png' )

; Produce an image of the Analysis window at a
; size of 400 by 300 and save it to a file
; named ‘ana.png’ in the Lightning/2000
; folder.

#ProduceScreenCapture(
'Analysis',
@L2KFolder + 'ana.png',
400, 300 )

; Add the new file to the upload queue.

#AddToUploadQueue( @L2KFolder + 'ana.png' )

; Produce an image of the Threat Assessment
; window at a size of 400 by 300 in a file
; named ‘ta.png’ in the Lightning/2000
; folder.

#ProduceScreenCapture(
'Threat Assessment',
@L2KFolder + 'ta.png',
400, 300 )

; Add the newly produced file to the upload
; queue.

#AddToUploadQueue( @L2KFolder + 'ta.png' )

; Produce an image of the Rates window at
; 100% of its on-screen size and save it to a
; file named ‘rates.png’ in the Lightning/2000
; folder.

#ProduceScreenCapture(
'Rates',
@L2KFolder + 'rates.png',
100 )

Advertising