'From Squeak3.1alpha of 5 February 2001 [latest update: #4270] on 21 August 2001 at 11:16:52 pm'! "Change Set: FlashJPEGDecodeFix Date: 21 August 2001 Author: Bob Arning change aStream to stream so that (FlashMorphReader on: (HTTPSocket httpGet: 'http://www.audi.co.uk/flash/intro1.swf' accept:'application/x-shockwave-flash')) processFile startPlaying openInWorld. will run. "! !FlashJPEGDecoder methodsFor: 'decoding' stamp: 'RAA 8/21/2001 23:15'! decodeJPEGTables: aStream " fixing the #atEnd allows the following to work: (FlashMorphReader on: (HTTPSocket httpGet: 'http://www.audi.co.uk/flash/intro1.swf' accept:'application/x-shockwave-flash')) processFile startPlaying openInWorld. " self setStream: aStream. eoiSeen _ false. self parseFirstMarker. [eoiSeen or: [stream atEnd]] whileFalse:[self parseNextMarker]. ! !