User's Guide

callWithArray: message

Similarly, if the external function you are calling has more parameters that can be accomodated with the callWith:with:... message you will need to use the callWithArray: message.

OS/2 icon
Try the following script on OS/2:
(PlatformFunctions at: 'DosBeep')
    callWithArray: #(440 3000).

Windows icon
Try the following script on Windows NT and Windows 95:
(PlatformFunctions at: 'Beep')
    callWithArray: #(440 3000).

UNIX icon
Try the following script on UNIX systems:
| context |
context := CgDisplay default handle.
(PlatformFunctions at: 'XBell')
    callWithArray: #(context 50).


[ Top of Page | Previous Page | Next Page | Table of Contents | Index ]