Archiv der Kategorie: Programming
Short note: Setup Flashdevelop For Developing Air Apps on Android
If you have downloaded the project template for Flashdevelop: http://blubl.geoathome.at/wp-content/uploads/2010/10/091-ActionScript-3-Android-AIR-AS3-Projector.zip … put it in the flashdevelop/projects folder. Now you can select Android/Air app in the “new project”-screen. The template contains a good readme.txt for what you need to do. Additionally … Weiterlesen
Why Robotlegs
I want to point out some reason why Robotlegs makes sense. For someone who does not know Robotlegs: It’s an Actionscript 3 framework that builds upon the Model-View-Control (MVC) code design pattern. In short: You can use it to seperate … Weiterlesen
AS3: Smoothing loaded Pictures
There are a lot of blog posts on the topic of smoothing pictures in Flash after loading. The process goes like this: private function onPicLoaded(e:Event):void { var pic:Bitmap = Bitmap(e.currentTarget.content); pic.scaleX = pic.scaleY = 0.2; pic.smoothing = true; } But … Weiterlesen
Concrete5: Problems Importing Database Backup
If you try to import a sql database dump file from any Concrete5 installation to another one you can get some problems. Here is a checklist(will be updated if necessary) what can happen: if you made a dump file from … Weiterlesen
Setting Up The Zend Framework Locally (Windows7)
Download the most recent version at the zend framework download page unzip the package to any location you want (e.g. c:\frameworks) if you have xampp installed you already have a version of zend framework available under \xampp\php\PEAR\Zend. Best would be … Weiterlesen