Hello,
I have an old study that worked fine, but
with the new version of esignal, it is not working. The following efs is an example that shows what is not working:
function preMain()
{
setComputeOnClose();
}
function main()
{
if( getCurrentBarIndex() > -1 )
{
Alert.playSound("phone.wav");
debugPrintln("bar = -1" );
}
}
The line "bar = -1" is printed, but no sound is played, when the "setComputeOnClose" is used.
Unfortunately, I have to use the setComputeOnClose() in the full study.
Please help me to solve this problem,
Thanks
Nissan
I have an old study that worked fine, but
with the new version of esignal, it is not working. The following efs is an example that shows what is not working:
function preMain()
{
setComputeOnClose();
}
function main()
{
if( getCurrentBarIndex() > -1 )
{
Alert.playSound("phone.wav");
debugPrintln("bar = -1" );
}
}
The line "bar = -1" is printed, but no sound is played, when the "setComputeOnClose" is used.
Unfortunately, I have to use the setComputeOnClose() in the full study.
Please help me to solve this problem,
Thanks
Nissan
Comment