I saw in the daily tutorials that there is something called "without waiting" that is used for animation so that things continue to process while Livecode is performing a process.
I want to confirm that this would work with a query. I want to do a remote query and load some images, but I don't want someone to have to wait. So, I'd like to do the query but have everything else continue - and then use the results of the query and display the images at a later time.
I have tried
put "mywebsite.cfm?phase=plan&cx=longviewdemo" into turl
put url(turl) into tthis without waiting
Will this work?
Thanks
without waiting
Moderators: FourthWorld, heatherlaine, Klaus, kevinmiller
Re: without waiting
I don't know if this will work in your specific case but
load is non-blocking so the handler will continue.
Simon
Code: Select all
load URL "http://mysite.com"
Simon
I used to be a newbie but then I learned how to spell teh correctly and now I'm a noob!
Re: without waiting
Hi Carolyn,
"without waiting/messages" only works with "move", so "load" is the way to go in your case!
Best
Klaus
"without waiting/messages" only works with "move", so "load" is the way to go in your case!
Best
Klaus