-
Recent Posts
- Sencha – models and stores only showing one item
- Sending mail with PHP, PEAR & Godaddy
- Stop the mobile ActionBar from transitioning
- Sencha touch – IDE??
- Debugging facebook apps locally (web based ones)
- StateGroups – finally found a use for them
- Searching a string – do you need to start with a period?
- Good day in the office – 1000′s of mobile apps built in a few hours!
- App story – on BBC site. Catch it live at MAX 2011
- iOS – Mobile dev, make sure you flush when you’re done.
Archives
Blogroll
Category Archives: actionscript
Debugging facebook apps locally (web based ones)
If you’re wanting to develop a facebook app then there is loads of helpful stuff out there to get you going. Specifically I’d start here if you’re interested http://www.adobe.com/devnet/facebook.html. But what they don’t tell you is how to debug your app without you … Continue reading
StateGroups – finally found a use for them
State groups? Ever looked at them and though they look really useful but then can’t find a good use for them! Well last year (yes its taken a while to finish of this post – hopefully its worth it), while … Continue reading
Searching a string – do you need to start with a period?
Today I had to write some code to search for text that matched various file extensions, this should have been a no brainer of a task. But like some things that sound stupidly simple it caught me out. If you … Continue reading
Updating bindings when you only change a property inside an Object
Its quite a common thing with Flex and actionscript projects to create an Object and inside that object it will have many properties. Something in your view will be bound to the object so that the view changes with the … Continue reading
Cross domain policy – Not to be used for release!
Sometimes I like to put something up on my blog that’s more as of a bookmark for myself as I know I’ll want to look it up at some point. So what I’ve got here is a slack, open cross … Continue reading
Simple tip #5 Create function to call any function with unknown args
The other day I wanted to create a function in a class that would take a Function as a parameter and an Array of arguments. Much like callLater() does, but not doing the whole queuing thing until the next frame. … Continue reading