Archiv des Autors: M.Althoff
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
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
FlashDevelop: Compiling Multiple SWF In One Project
Normally, if you create a new AS3 project in Flashdevelop you got one single main.as file that is marked as ‘always compile’. Thats your entry point for your project. If you compile your project you only get one output.swf. 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