Hi, I am developing a mouse stillness test
I have a hittest area on my stage, named trace. This area is erased into 2. so that mouse could run between the 2 area with out touching them. however, I done something stupid to warn the user the mouse touched the Hit area:

//A dynamic textbox is there on the stage named results

Code:
onClipEvent(load)
  If(Trace.Hittest.True)
     setProperty("results", "Hit!")
  }eles{
     setProperty("results", "safe")
}
Anything gone wrong? the Hittest didn't work a single bit...
Regards,
Tongxn