I use revBrowser in a stack and it works fine.
I noticed that a message is sent when I click on a link in the browser window:
         browserBeforeNavigate 10:00:35 PM (11005)
What does the number in parentheses mean? Process ID?

I trap this message in a card handler so I can update a status field
   on browserBeforeNavigate
      put "Page Loading" into field "Status"
      --pass browserBeforeNavigate --?
   end browserBeforeNavigate

I also trap the browserDocumentComplete message
   on browserDocumentComplete
      put "Page Loaded" into field "Status"
      --pass browserDocumentComplete --?
   end browserDocumentComplete

Should I pass these browser messages? Does it hurt if I don't?
Any other thoughts would be welcome, too.
Thanks,
Bob

_______________________________________________
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution

Reply via email to