Mailing List Archive: 49091 messages
  • Home
  • Script library
  • AltME Archive
  • Mailing list
  • Articles Index
  • Site search
 

[REBOL] Re: Problem with load-image

From: jhagman:infa:abo:fi at: 9-Apr-2001 13:34

Quoting Carl Sassenrath ([carl--rebol--com]):
> Actually, add this to your code for now: > > load-image: func [url] [load-thru/binary url]
Thanks, this is a lot cleaner approach compared to saving temporary files. And as there must be quite a many of Amiga afficinandos here I'll send also the little script I was working on here. As you must know, the slides from the Amiga Inc. speach at St.Louis are available at http://www.aug99.com/museum/amiga/amigashow2001.html . For me the interface [Thumbnails and popup-windows] was a horror so I made a little script with REBOL to make reading the slides a little more pleasant. Here goes: REBOL [] load-image: func [url] [load-thru/binary url] base-url: http://www.aug99.com/museum/amiga/bilder/img for i 1 32 1 [ img: load-image rejoin [base-url i ".jpg"] view layout [image img [unview] [quit]] ] It is not much but hopefully someone enjoys it. -- Jussi Hagman CS in Åbo Akademi University Studentbyn 4 D 33 [juhagman--abo--fi] 20540 Åbo [jhagman--infa--abo--fi] Finland