i am developing app for meego.i have an issue i m sending a signal from qml on image clicked .as
Image {
id: redPawn4
x: 111
y: 522
source: "r.png"
MouseArea{
anchors.fill: parent
onClicked:
{
if(p1ballon4.opacity ==1 && currentColor == appWindow.redCastle){
var a = getData()
currentPlayer= firstPlayerName
p1ballon4.opacity=0
appWindow.eligiblePawnClicked(currentPlayer, a, 3,Math.ceil(sumOfScore/6))
}
}
}
}
i want to wait here for sending signal appWindow.elig...... how can i do
thankx

Reply With Quote

