import Qt 4.6 Item { id: screen; width: 50 property string tested signal testMe(int param1, string param2) Connection { sender: screen; signal: "testMe(param1, param2)"; script: screen.tested = param2 + param1 } }