Did you miss the MAX 2009 keynotes for real or virtually?
Did you miss the keynotes live on stage at this years Adobe MAX 2009? Or were you sleeping while the show started, below you get the recorded version of both sessions.
Mondays Keynote
http://max.adobe.com/online/keynote_monday/
Tuesdays Keynote
http://max.adobe.com/online/keynote_tuesday/
Some of the sneak peeks also showed on youtube a while ago, so.. go search for them and be amazed about what could be coming up
Message Wall & Outsides @ Adobe MAX 2009
Outside Views @ Adobe MAX 2009
Twitter Wall @ Adobe MAX 2009
Community Summit 2009 – Video
MAX Widget
Darn, my Sidebar is too small to host the big max widget.
But it's cool nice little app, have fun reading some funny facts, and don't forget to tweet about it.
AS3 – textfield setSelection()
Have you tried to set selection on atextfield after a validation procedure? Have you noticed that it doesn't work quite right? Here's the quick solution for that:
Normally you would use the yourTextField.setSelection(startIndex, endIndex); method, but like I said before that doesn't really work very well.
You just need to set the focus to the textfield and then set the selection:
Example: (assuming you have a textfield called "tf")
.... tf.stage.focus = tf; tf.setSelection(0, tf.length); ...
And that's how you solve the textfield.setSelection() problem


