You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Recording does not seem to work (it uses listening).
But when debugging it can be seen easily when trying to change the value on the device explorer.
I checked and :
void JamomaAddress::observeValue(bool enable)
{
TTAttributePtr attribute;
mObject.instance()->findAttribute("value", &attribute);
if (enable)
{
attribute->registerObserverForNotifications(mObjectValueCallback);
//////// ** the code passes here ** ////////
}
else
{
attribute->unregisterObserverForNotifications(mObjectValueCallback);
}
// for Mirror object : enable listening
if (mObject.name() == kTTSym_Mirror)
{
TTMirrorPtr(mObject.instance())->enableListening(*attribute, enable);
//////// ** the code passes here ** ////////
}
}
but when I do address->pushValue(...) the callbacks are not called, even if :
When loading this score:
https://gist.github.com/bltzr/ce30146e79bd59663066b57df7df5490
Recording does not seem to work (it uses listening).
But when debugging it can be seen easily when trying to change the value on the device explorer.
I checked and :
but when I do
address->pushValue(...)
the callbacks are not called, even if :The text was updated successfully, but these errors were encountered: