home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Aminet 10
/
aminetcdnumber101996.iso
/
Aminet
/
text
/
edit
/
FrexxEdA.lha
/
FrexxEd
/
fpl
/
ScrollAll.FPL
< prev
next >
Wrap
Text File
|
1995-07-19
|
448b
|
16 lines
export int ScrollAll(int direction)
{
int inputid=GetEntryID(); // Current entry
int view_count=ReadInfo("views");
while (view_count--) {
CurrentBuffer(NextView()); // Make next view the current buffer
ScrollDown(direction); // Scroll
Status(); // Update the status line
}
CurrentBuffer(inputid); // Restore the initial entry
}
AssignKey("ScrollAll(-1);", "Shift '0x3E'");
AssignKey("ScrollAll(1);", "Shift '0x1E'");