http://www.newton-inc.com/dev/techinfo/qa/qa.htm
protoTransportHeader
-based view?addedHeight
slot. The height of the transport header will be increased by this amount.viewSetupFormScript
method of your protoTransportHeader
view. This works around a bug with protoTransportHeader:
self.stepChildren := SetUnion( self._proto.stepChildren, self._proto._proto.stepChildren, true );
nil
for the sendPrefs
, outboxPrefs
, or inboxPrefs
slots in my transport preferences template, opening the slip throws -48204. What is going wrong?sendPrefs
, outboxPrefs
, or inboxPrefs
in your preferences dialog to set those slot to nil
. Due to a bug in the cooresponding views for those preference items, -48204 is thrown when an attempt is made to open the views. This will be fixed in a future ROM.protoAddressPicker
from remembering the last people picked?protoAddressPicker
has a slot called useMemory
that was left out of the documentation. If this slot is set to nil
, the memory mechanism will be disabled.RemoveTempItems
when items are selected, the ReceiveRequest
message sometimes has bogus request arguments (for instance, the cause
is set to 'remote
). Is this a known bug?RemoveTempItems
. The call to RemoveTempItems
does not clear out the cache of selected items correctly. This will be fixed in a future version of the Newton OS.'remote
, assume that the cause slot is actually 'user
and act accordingly. If you receive a request with its 'cause
slot set to 'remote
and your transport's communications channel is connected then perform the appropriate action for receiving remote items.ItemCompleted
. Why is this problem occuring?ItemCompleted
. To work around this, you should check to make sure the folder exists before calling ItemCompleted
. If it does not exist, then set the transport's 'outboxFiling
preference to nil
. Here is a code example:// This code assumes that the current receiver (self) is your transportif NOT GetFolderStr( :GetConfig( 'outboxFiling ) ) then :SetConfig( 'outboxFiling, nil );
inboxFiling
is nil
.AutoPutAway
method. Second, the transport configuration slot 'dontAutoPutAway
must be set to nil
(or not be present). This configuration slot is new to Newton 2.1 OS and must contain the value nil or the value 'never
. If nil
, items will be put away automatically provided the application defined by the item's appSymbol
slot has the AutoPutAway
method. If 'never
, items will not be automatically put away regardless of whether the application defined by the item's appSymbol
slot implements the AutoPutaway
method.