|
|||
|
Hi,
SWFKit doesn't support threads, but you can use the processMsg method to aviod blocking. For example, the Code:
while (1)
{
trace("something");
}
Code:
while (1)
{
if (!processMsg()) break;
trace("something");
}
The false return of the method indicates that the close button of the app has been clicked. |
![]() |
Was this information helpful? Yes No
| Thread Tools | |
| Display Modes | |
|
|