Archiv der Kategorie: HowTo
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
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
Making Fonts Ready For Embedding In Flash AS3
This article describes how you can utilize the Adobe Font Development Kit to rename fonts that Flash does not recognizes because of whitespace in the font name. If you want to embed a font in AS3 you have to use … 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