|
Pages: [1]
|
 |
|
Author
|
Topic: Help with image list (Read 859 times)
|
|
Amanita
|
I am exploring the ( icon-browser.r) script from rebol.org I cannot figure out how to make it point to a directory other than root... Does anyone know how to modify this script to point to my images folder in the same directory? Thanks for your time... Amanita
|
|
|
|
|
Logged
|
|
|
|
|
CarlRead
|
I've not run the script, but looking at it, I'd say changing the...
files: read %.
to...
files: read %images/.
will get you the right directory list.
And changing...
image: load-image f
to...
image: load-image join %images/ f
should get you the right images.
At a guess...
|
|
|
|
|
Logged
|
- Carl Read
|
|
|
|
Amanita
|
Woo hoo!
I had tried pointing at the directory with
read %images/.
However I was adding
(image: load-image %images/f ) Forgot the (join) :huh:
Thank you for your help!
Amanita
|
|
|
|
|
Logged
|
|
|
|
|
|
Pages: [1]
|
|
|
 |