home *** CD-ROM | disk | FTP | other *** search
Text File | 1994-02-28 | 365 b | 10 lines | [TEXT/ttxt] |
- // Open the resource file that contains the sound, and assign the
- // file ID to a temporary variable rf
- // NOTE: specify the full pathname from your hard drive down...
- rf := OpenResFileX(home & "resources");
-
- // Read in the 11KHz sampled sound
- boingSound := GetSound11("Boing") ;
-
- // close up any resource files that were opened (VERY important)
- CloseResFileX(rf);