
(for those that want code)
Code: Select all
hThread = CreateThread( @FetchImage(), *offender )
If IsThread(hThread)
ThreadPriority(hThread,#pb_thread_below_normal)
EndIf
I have added "Delay(250)" at the very start of FetchImage() to be sure it's not exiting too fast.
I then added the "if IsThread()" bit -- and I"m still getting "not a thread"
Any ideas on why or how to rectify this?