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

[REBOL] Re: Make_user_manual.r ?

From: mario:cassani:icl at: 23-Jan-2002 17:14

Hallo Sunanda,
> And it'd be even nicer to capture the initial raw click-stream > ("action-stream"?) while running the application by hand. > I've no idea how > that could be done (modify the basic VID behaviour of action > and alt-alction > facets as Maartin suggested?). That'd be almost all that was > needed for > demo-runner.r
Uhm can't help as Brett did but reading the above an Idea came to me: redefining VID in user.r, calling an external dialect, can be the solution: 8<-------------------------------------------------------- REBOL [ Title: "VID Redefined" ] capture_VID_anyfunc: func [] [ ] original_VID_anyfunc: :VID_anyfunc VID_anyfunc: :capture_VID_anyfunc 8<-------------------------------------------------------- REBOL/view starts, load user.r that calls VID-Recorder.r, the interpreter switches to the script using the wrapper and no changes are required to the script! Looks like is less than 2cents... Nihao Mario