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
MessageSendRecordernewwatchPackageNamed:#Morphic;
setMessageSend: [m fullBounds];
setBefore: {} after: {[:record:rcvr | record halt extent: b extent]};
recordAllObjects;
browse
is not going to work as one might expect at the moment. MSR is lacking some protocol such as #addBefore: aBlock and #addAfter: aBlock. This would also be more convenient if you do not want to set both blocks at once.
The text was updated successfully, but these errors were encountered:
Sorry for the bad description. #setBefore:after: removes any previously added blocks. The given example overrides all existing blocks in #setRecordAllObjects. I am seeking for a protocol that allows me to sequentially add new blocks to the recorder without removing existing ones.
Something like this:
is not going to work as one might expect at the moment. MSR is lacking some protocol such as
#addBefore: aBlock
and#addAfter: aBlock
. This would also be more convenient if you do not want to set both blocks at once.The text was updated successfully, but these errors were encountered: