On Mon, Jan 19, 2009 at 12:45 PM, Generic Email <[email protected]> wrote: > I have a stack with a fld "test" > this code fails on startup > > on preopenStack > put URL "http://screen-share.com/" into eml > put "test" into field "test" > end preopenStack > > This code succeeds on startup > > on preopenStack > --put URL "http://screen-share.com/" into eml > put "test" into field "test" > end preopenStack > > Can someone explain why this is failing? It is very frustrating.
Hi Bert, This works for me, except that your script had no way of detecting whether the URL command had worked, so I changed the 2nd line to: put eml into field "test" However, if this is for a standalone, it may be trying to do it's thing before the URL library has loaded, so it might be better to put it in an openStack handler instead. Cheers, Sarah P.S. And thanks for sharing your name :-) _______________________________________________ use-revolution mailing list [email protected] Please visit this url to subscribe, unsubscribe and manage your subscription preferences: http://lists.runrev.com/mailman/listinfo/use-revolution
