CompactMVC is a free and easy to use compact (Multicore) Flash/Flex/Air Framework for building Applications based on MVC Design Pattern. Supports to communicate among all core actors of a module based application.

Archiv für die Kategorie „General“

Tastaturlayout für "Apple Mac Book Pro", Boot Camp und Windows

Dienstag, 4. Januar 2011

Für Programmierer, die wie ich auf einem Apple Mac Book Pro Entwickeln, haben es nicht leicht, mit dem Standard BootCamp Keyboard Layout.

Zeichen wie “|” findet man vergeblich und das “\” findet man auch schlecht.

Ich habe mir mal die Mühe gemacht und mittels “Microsoft’s “Keyboard Layout Creator” ein Tastaturlayout zusammengestellt, das für Programmierer leicht zu bedienen ist: 

mbookpro.zip

Die Installationsanweisung findet ihr hier.

< Key > < Tastaturlayout NEU > < Tastaturlayout BootCamp >
{ Ctrl-Alt 8 Ctrl-Alt 7
} Ctrl-Alt 9 Ctrl-Alt 0
[ Ctrl-Alt 5 Ctrl-Alt 8
] Ctrl-Alt 6 Ctrl-Alt 9
\ Ctrl-Alt ß Ctrl-Alt ß
| Ctrl-Alt 7 nicht vorhanden
~ Ctrl-Alt N Ctrl-Alt +
@ Ctrl-Alt L Ctrl-Alt Q
Ctrl-Alt E Ctrl-Alt E
µ Ctrl-Alt M Ctrl-Alt M
Del fn Backspace fn Backspace

Viel Spaß damit.

Humblebundle / Indie-Game-Bundle (Pay what you want!)

Freitag, 17. Dezember 2010

Great Bundle of Indie-Games. Pay what you want.
My personal Favorite is “Machinarium” (Flash Based Game) !

http://www.humblebundle.com/

Flash Builder 4: Wrong Debug Player!

Mittwoch, 24. November 2010

Solution: Just launch the standalone Flash-Player once manually like “C:\Programme\Adobe\Adobe Flash Builder 4\player\win\FlashPlayer.exe”. The OS (Windows only) will remember the version which you launched at last time. That’s it!

Flex Builder 3: Where is the download Link?

Montag, 2. August 2010

The download links are still available for your OS:

Windows:

http://download.macromedia.com/pub/flex/flex_builder/FB3_win.exe

Mac OSX:

http://download.macromedia.com/pub/flex/flex_builder/FB3_mac.dmg

Flash/Flex/Air: How to remove/reset tint using TweenMax or TweenLite?

Dienstag, 27. Juli 2010

TweenMax.to(mySymbol, 0, {tint:null});
TweenLite.to(mySymbol, 0, {tint:null});

Adobe Air2 Native Application: Auto update for executable (exe)

Dienstag, 29. Juni 2010

The Adobe Air 1.5 UpdateFramework still not work with Air2 Native Applications, but you can use it to compare the App-Version and offer download the new installer.exe. We have to stop the Updater to hide the default update Dialog, because it wants to download the *.air file (not usable for us). We need only compare the version itself that we got by setting the “isNewerVersionFunction”-property, and within stoping the UpdateProcess and offer downloading the new Installer.exe:

private function checkForUpdate():void
{
	      // Server-side XML file describing update
	      appUpdater.updateURL = ApplicationController.UPDATE_URL;
	      // We won't ask permission to check for an update
	      appUpdater.isCheckForUpdateVisible = false;
	      //versions detection
	      appUpdater.isNewerVersionFunction = compareVersion;
	       // Once initialized, run onUpdate
	      appUpdater.addEventListener(UpdateEvent.INITIALIZED, updateInitializedHandler);
	      // If something goes wrong, run onError
	      appUpdater.addEventListener(ErrorEvent.ERROR, updateErrorHandler);
	      // Initialize the update framework
	       appUpdater.initialize();
}
private function compareVersion(currentVersion:String, updateVersion:String):Boolean
{
           //stop showing default updater dialogbox
	   appUpdater.cancelUpdate();
	  //compare versions
	if(currentVersion != updateVersion)
	{
		// set an information text for the user
		var dialogCopy:String = "An new version " +updateVersion + " is available. Click to download.";

                 // or directly
		 navigateToURL(new URLRequest("http://urltomyinstallerfile.exe"));
	}

	return false;
}

Flex/Flash: Interesting contribution to WeakReference

Mittwoch, 23. Juni 2010

Interesting contribution to WeakReference:

http://www.intriguemedia.net/2007/09/24/when-to-use-weak-references/

Flex AS3 Optimizing

Sonntag, 6. Juni 2010

First: Don’t embed fonts directly into .swc Files. This makes Flexbuilder very very slow!

http://www.insideria.com/2009/04/51-actionscript-30-and-flex-op.html

MacBook Pro: German keyboard layout at boot camp replaced missing characters

Freitag, 9. April 2010

http://www.schirmacher.de

Flash/Flex/Air: Using Vectors in ActionScript 3 and Flash Player 10

Mittwoch, 31. März 2010

Found at:

http://www.mikechambers.com/blog/2008/08/19/using-vectors-in-actionscript-3-and-flash-player-10/