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

[REBOL] Re: Make_user_manual.r ?

From: brett:codeconscious at: 24-Jan-2002 10:51

> Thanks for your thoughts. It got me thinking I could redefine Layout and
then
> insert some logging into action facets. > > That would work for any application which neither used make-face nor
replaced
> an action facet after layout. I know that's not all applications, but it > would be a start.
Can't help you with cloning Layout. But I thought about logging action facets: Try this: do-face: func [face value][ print "attempt action" do get in face 'action face either value [value] [face/data] ] do-face-alt: func [face value][ print "attempt alt action" do get in face 'alt-action face either value [value] [face/data] ] do load-thru http://www.rebol.com/view/tools/../demos/rebodex.r I have also extended the set-data function I made earlier. I've had some small successes with the Rebol demo effect-lab.r but hit a brick wall with Rebodex.r due the suppy function of the LIST style. Brett.