Functions Index :: B :: Break

[<< up one level]

Module:

debug :: core

Definition:

Break(val "x01", val "x02", val "x03", val "x04", ... , val "x20")

Description:

Stops script execution and displays the values of the variables passed as arguments in the standard Avisynth dialog box separated by "|" characters, after the string "User break:"

Examples:

v1 = 3.24

v2 = "test string"

v3 = true

...

Break(v1, v2, v3) # script stops here

...

 

[<< top]