[REBOL] Re: Anchor? - A newbie question
From: smeagol:chemi:muni:cz at: 16-Oct-2002 10:46
Hi all Rebolers,
what I meant was following: I am actually trying
to transform my web to reb pages and I have there
several choice buttons.
main: layout [
backdrop 128.128.128
across
choice "TOPIC 1" "---------" "Topic 1 A" "Topic 1 B"
"Topic 1 C" "---------" "Back"
[do %t1.r]
choice "TOPIC 2" "---------" "Topic 2 A" "Topic 2 B"
"Topic 2 C" "---------" "Back"
[do %t2.r]
choice "TOPIC 3" "---------" "Topic 3 A" "Topic 3 B"
"Topic 3 C" "Topic 3 D" "Back"
[do %t3.r]
choice "TOPIC 4" "---------" "Topic 4 A" "Topic 4 B"
"Topic 4 C" "---------" "Back"
[do %t4.r]
choice "TOPIC 5" "---------" "Topic 5 A" "Topic 5 B"
"Topic 5 C" "---------" "Back"
[do %t5.r]
choice "TOPIC 6" "---------" "Topic 6 A" "Topic 6 B"
"Topic 6 C" "---------" "Back"
[do %t6.r]
return
.
.
.
.
I do not want to call for every subtopic a separate file
but rather to have all "A" subtopic in one file and jump to
a specific part only if this is possible.
Or is there any better and more straightforward solution?
Regards Smeagol