I had the same problem, but have gotthe workerPool working using a
Windows Mobile 6 emulator, i havent tried mobile 5.
I found that using the createWorker method seemed to cause the error
wp.createWorker(String(test_function) + ';test_function();');
function test_function() {
... code here
}
But instead of using a function on the same js page, i put the code on
a different js file and used createWorkerFromUrl instead of
createWorker.
wp.createWorkerFromUrl('test_function.js');
// test_function.js
... code here
This appears to work for me
On Oct 26, 8:26 pm, Steve Patrick <[email protected]>
wrote:
> Hi everybody,
> I have developed an offline applicatiion using Gears. My app uses a
> WorkerPool and works fine on my computer but I have runed it on 2
> Windows Mobile (5 and 6) and just doesn´t work. I have tryed
> Workerpool demo and it doesn´t work either. I saw some post about WM
> and WorkerPool, I think there have been some problems, but, are they
> solved?
> What mobile devices do I have to use to make WorkerPool works? Are
> Windows Mobile devices compatible with WorkerPool?
> Thanks