int |
byte-offset [int]
|
Specifies a byte offset in a binary file, and outputs the data stored at that point in the file.
In left inlet: The byte contained at that offset in the file is sent out the left outlet. |
(inlet1) |
byte-offset [int]
|
In middle inlet: The 16-bit word contained at that byte offset in the file is sent out the left outlet as an unsigned (short) integer. |
(inlet2) |
byte-offset [int]
|
In right inlet: The 32-bit word contained at that byte offset within the file is sent out the left outlet as an unsigned (long) integer. |
fclose |
|
Closes the file being read, making filein no longer respond to int or list messages. |
spool |
filename [symbol]
|
Displays a standard file dialog to select a file, which will be accessed from disk whenever an int is received. If the word spool is followed by a filename found in Max's search path, that file will be automatically pointed to for future access. This method of accessing a file occupies less RAM, but does not output data immediately at interrupt level in response to an int message. |
read |
filename [symbol]
|
Displays a standard file dialog to select a file to be read into memory. If the word read is followed by a filename found in Max's search path, that file will be automatically read into memory. |