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

[REBOL] I am Master of Overcomplification.. Can this be simplified?

From: Izkata::Comcast::net at: 9-Jan-2005 13:17

Form1: ["Hours=" "(F1P1/text)" "&" "MP=" "(F1P2/text)" "&" "GP=" (F1P3/text) "&" "VocPromo=" "(F1P4/text)"] view layout [ F1P1: field "" F1P2: field "" F1P3: field "" F1P4: check-mark "" btn "Send" [LoadPage/post (Url) ( to-string compose load to-block rejoin Form1)] ] Note: I am working on creating a web browser. So far, Forms, Images, and Text work. This was created by the browser loading a test form, that's why I have the Form1 block before anything else and can't create it inside the send button. Any way to simplify ( to-string compose load to-block rejoin Form1) ? -Izzy boy