LocalConnection is a pain in the but, been using it on a Desktop application, and so many hurdles.
Error #2044: Unhandled StatusEvent:. level=error, code=
Solution: From Zack at the awesome crew creative. "The unhandled Status error on localConnection is coming from a failed "send()" when the client is not recieving. You need to add a listener for a StatusEvent. try catch won't do it because the error is asynchronous.)". Thanks Zack!
Error #2044: Unhandled ErrorEvent Security localConnection (search)
Solution: use lc.allowDomain("*") or lc.allowDomain("localhost") in testing. How to specify meaningful domains when running locally don't quite make sense to me yet.
ArgumentError: Error #2082: Connect failed because the object is already connected. (search)
Solution: use try catch around the lc.connect attempt.