Note to Self

Android’s “Note to Self” feature has become a life saver for me. I remember things when I’m walking to and from meetings, sitting on the train, or generally away from my desk. And rather than keep a notepad or moleskine and pen with me at all times, I’d begun to use the message voice action that’s packaged with Android.

The only cumbersome aspect of this feature is that it doesn’t let you specify the recipient of the note to self. After all, in Google’s world, your Google Account’s main email/gmail address is (and should be) your “self.”

“Maybe I can recreate the main email address tied to my HTC Evo,” I thought, “so that it’s a more specific ‘self'”. I tried to change it from don.citarella to don.citarella+mobile, but had no luck. Apparently, once you’ve associated a main address with an Android phone, the only way to remove/change it is to perform a factory reset.

So, while it’s not the cleanest/best solution, Gmail Filters do the trick.

Read more

Flash Filter Hotspot Interference

screenshot08

I wasted almost an entire day this week attempting to figure out why a link started pulsing when activated by a mouse. The link, a 0% alpha “hotspot” or “rollbox” (as it’s sometimes called) movieclip (mouse enabled) with a dynamic textbox (mouse disabled), was listening for onRollOver and onRollOut mouse events. OnRollOver, the link was expected to switch indexes to the front, grow to 3x the original size and then ColorTransform to an active color. The index switch was updated immediately, and the scaleX/scaleY and ColorTransform was a timed action handled by Tweener. With the exception of the re-indexing, these tweens were triggered onRollOut as well, though in reverse. There are obviously a million other ways to handle this, and numerous tweening engines that could be used instead of Tweener, but this was the method I’d used in the past and was most comfortable with.

Upon testing, I found that most of the menu items worked fine, but some “pulsed” or flickered between growing and shrinking, as well as changing color sharply. Moving the mouse over the words while the tween was occurring sometimes seemed to thwart the issue. And some links seemed unaffected by the bug. Also, I noticed that when the link hit the onComplete method of the tween (meaning, it had finished growing to 300% and colorTransforming to the active state), the pulsing stopped.

Read more