[Prev: Built-in Functions] [Home] [Next: debug()]
connect( signallingObject, signal, receivingObject, slot )
This function is used to create signals and slots connections between objects. Usually these connections are created visually using QSA Workbench, but the connect() function is provided for making such connections dynamically in code.
See the simplescript example program's example-script for an example.
connect( sender, signal, functionRef )
This function is used to create signals and slots connections between objects. Usually these connections are created visually using QSA Workbench, but the connect() function is provided for making such connections dynamically in code. functionRef can be a global function or a mamber of the class.