Re: How to use urlProgress

2013-06-20 Thread Devin Asay
Sent from my iPhone On Jun 20, 2013, at 3:45 PM, "J. Landman Gay" wrote: >> Am I doing something wrong? I'm on OS X 10.7.x and LC 6.0.2. > > It looks like the urlProgress message is only for mobile. Oh snap. I knew it had to be something simple and obvious. Thanks Andrew and Jacque. Devin _

Re: How to use urlProgress

2013-06-20 Thread J. Landman Gay
On 6/20/13 1:08 PM, Devin Asay wrote: Hi folks, Maybe I'm missing something. I want to get progress information from a rather large download from an HTTP server. This is what I'm doing: command downloadFile set the cursor to watch put "http://server.com/data/myfile.gz"; into tRemote_

Re: How to use urlProgress

2013-06-20 Thread Andrew Kluthe
Also, the simple answer to your question above is that you need to set the libUrlStatusCallback to the handler you are using as a callback libURLSetStatusCallback "urlProgress" On Thu, Jun 20, 2013 at 3:36 PM, Andrew Kluthe wrote: > Meant to include this link: http://www.andregarzia.com/posts/

Re: How to use urlProgress

2013-06-20 Thread Andrew Kluthe
Meant to include this link: http://www.andregarzia.com/posts/en/pubsub/ On Thu, Jun 20, 2013 at 3:36 PM, Andrew Kluthe wrote: > I would try to use the following instead of put url into url. This let's > you do it in a non-blocking way as well as let you process the data in a > callback. > > loa

Re: How to use urlProgress

2013-06-20 Thread Andrew Kluthe
I would try to use the following instead of put url into url. This let's you do it in a non-blocking way as well as let you process the data in a callback. load URL myURL with message "downloadComplete" I really like the example Andre used on his site when describing his pubSub library. His exam