[REBOL] Launcher
From: hijim:pronet at: 7-May-2003 21:25
Launcher
I wrote a little script based on Carl's my-launch. I put a copy of it in the Windows
Startup Folder. It pops up when I start the computer. /H is the path to a USB thumb-drive
where I keep all my Rebol scripts. This is great! Now I have immediate one-click access
to the Rebol programs I use every day. And they said it couldn't be done! Thanks, Carl.
Jim Clatfelter
REBOL [
Title: "Launcher"
File: %launche.r
Date: 7-May-2003
]
system/view/vid/vid-face/color: silver
view layout/offset [
across
button gold "Registe.r" [my-launch %/H/a-registe.r]
button green / 1.8 "Edito.r" [my-launch %/H/1-edito.r]
return
button blue / 1.4 "Labele.r" [my-launch %/H/a-labele.r]
button silver / 1.2 "Custome.r" [my-launch %/H/a-custome.r]
return
button silver / 1.2 "Bookkeepe.r" [my-launch %/H/a-bookkeepe.r]
button red "Quit" [unview/all]
]
500x40