TOC PREV NEXT INDEX

$obj_proc

Synopsis

$obj_proc _[object]

Description

$obj_proc prints the id of the process in which the object executes.

Process id

AVS/Express assigns each process a process id. The id is a small integer (0, 1, 2, 3, etc.). Zero refers to the main process.

Examples


OM(SingleWindowApp) -> UIbutton button1;
OM(SingleWindowApp) -> $obj_proc button1
proc id of button1 is 0
OM(SingleWindowApp) -> USER.add_num add_num1;
OM(SingleWindowApp) -> $obj_proc add_num1
proc id of add_num1 is 1


TOC PREV NEXT INDEX