Ripped from the LUA code:
Code:-------------------------------------------------------------------------------- -- NetRemote.SendLabel -- Set a button label value -- Input -- label: The name of the button to setfor k=1,getn(dvd) do -- value: The sting to send to the label -- Returns -- err: The last error received -------------------------------------------------------------------------------- function Public.SendLabel(label,value) -------------------------------------------------------------------------------- -- NetRemote.SendImage -- Set a button's image -- Input -- label: The name of the button to set -- file: The full path of the image file to send -- Returns: -- err: The last error received -------------------------------------------------------------------------------- function Public.SendImage(label,file) -------------------------------------------------------------------------------- -- NetRemote.JumpHome -- Jump to a "home" panel -- Input -- panel (optional): The name a home panel to jump to -- Returns: -- err: The last error received -------------------------------------------------------------------------------- function Public.JumpHome(panel) -------------------------------------------------------------------------------- -- NetRemote.JumpDevice -- Jump to a "device" panel -- Input -- device (optional): The name a device to jump to -- panel (optional): The name a device's to jump to -- Returns: -- err: The last error received -------------------------------------------------------------------------------- function Public.JumpDevice(panel,device) -------------------------------------------------------------------------------- -- NetRemote.JumpDevice -- Jump to a "macro" panel -- Input -- device (optional): The name a device to jump to -- panel (optional): The name a device's to jump to -- Returns: -- err: The last error received -------------------------------------------------------------------------------- function Public.JumpMacro(panel,device) -------------------------------------------------------------------------------- -- NetRemote.BatchStart -- Begin a batch of messages. Batched actions are not -- performed until the end of the batch. This helps with screen redraws. -- Input -- none -- Returns: -- err: The last error received -------------------------------------------------------------------------------- function Public.BatchStart() -------------------------------------------------------------------------------- -- NetRemote.BatchComplete -- End the batch of messages. -- Input -- none -- Returns: -- err: The last error received -------------------------------------------------------------------------------- function Public.BatchComplete() --------------------------------------------------------------------------------


Reply With Quote