Category: AS Burst
Little pieces of code and tips to burst your AS knowledge
iPhone applications built with Flash
If the mountain doesn’t come to you, then you must go to the mountain. A lot of people talking how Flash is dying but it is nice to see how at least Adobe is helping current Flash Developers to use Flash CS5 to create applications for iPhone, iTouch and iPad.
Use SVN with FDT
Quick way to set up a SVN Repositroy in FDT. Instructions Open the SVN Repository Exploring Perspective Add an new SVN Repository Return to the FDT Perspective Select the Project within the Flash Explorer that you wish to link to the new Repository Scroll down to Team and Select Share Project Choose SVN from the Share Project dialog […]
Boarding Pass Fail from Delta
Tyler Thompson had a very discomforting experience with the Delta Boarding passes and he went ahead and took the time to make different designs that on his point of view meets the requirements of the customers. Here you can see the first design Tyler did: And here you can see a Delta boarding pass similar […]
Retweeting private Tweets
So now that you are part of the “VIP” crowd and you are one of those special friends that is allowed to see your friend’s private tweets, let me ask you. Is it acceptable for you to ReTweet something that is has been marked as private? After all it was private to start with but […]
YourPay some common errors and solutions
When working with YourPay service there some small issues you might run into and so I can remember in the future I am listing them here. Fraud issue If hit the server several times for testing you might be tempted to hit it with the same amount but remember that even though for you they […]
Getting UPS Rates with PHP fixing small issue
There is an great class in Google Code written in PHP that works as a wrapper to the UPS API, I started using it about a year ago and never had issues with it since I was using it with Flash/AMFPHP/PHP, but now that I am working with a new shopping cart where I need […]
Actionscript dispatch event fails and solution.
The Problem: A event too close to the instantiation of an object is not being fired, I believe the speed of the code execution is too fast for the listener to be able to register for the event. Lets take a look at the following class to understand the issue. [as]package application.views { import flash.display.Sprite; […]
SVN PROPFIND 405 Method Not Allowed
Problem I was getting the following error after trying to update a SVN repository. [php]PROPFIND of ‘/’: 405 Method Not Allowed[/php] And had no idea what it meant. I read on the internet that could be from trying to checkout a file that is none existent. The interesting thing is that I was just doing […]
Learning PureMVC from HydraMVC
Intro This post is not specifically on how to learn everything about PureMVC with HydraMVC but mainly points out their notification workflow document that they have on their site and some other statements they make on their site. Keep in mind that HydraMVC is a complete rewrite from PureMVC, made specifically for the Flex framework. […]