Archive for general

It’s all about trust.

Do you have friends? Of course you have. And you trust them, right? So here you can show how much people actually trust you.
http://www.you-trust.me/

And trust me – this is no email collecting stuff.

ArToolkit again

Well my Toolkit experiment is not really finished but I will stop It now. I will not have time to publish a stable version anytime soone. Furthermore there is already a good version out there.

Wordpress Flasmenue + tutorial

Things change. I’m currently setting up the project structure. Notice: This will not be a fully dynamic Navigation – You will have to fill the links by yourself. Why? Writing a navigation that covers every possible wordpress configuration takes to much time and would also look pretty lame :-)

Here are some specs:

Targetgroup:

  • Wordpress users with at least a bit coding experience

Features:

  • Dynamic navigation with XML data
  • Main and subpoints
  • Simple deeplinking
  • high performance
  • extendable structure

Workflow:

  • Eclipse / Fdt Build with Ant and SWC
  • Alternative Flash IDE version
  • Wordpress plugin for an easy XML editing

Details

  • “Making of” with basic AS3 tricks
  • Installation instructions with sample theme

I think it should be done pretty fast. Writing the whole making of and installtion instructions might take some time.

Nice shot.

I will never talk about politics here but this picture can be interpreted as my statment :-D
Don’t get it wrong I totally prefer the left guy

via

AS3 load swf and access clips on stage and the library

I googled and couldn’t find a piece of code that helped me. So I asked Martin and Fabian the real nerds :-). Well here it is thanks again:

package
{
  import flash.display.DisplayObject;
  import flash.display.Loader;
  import flash.display.Sprite;
  import flash.events.Event;
  import flash.net.URLRequest;	
 
   /**
    * @author alexander.milde
    */
   public class Main extends Sprite
   {
      private var loadedSwf : DisplayObject;
      private var _loader : Loader;
      private var _urlReq : URLRequest;
      private static const FILE_LOADED : String = "fileLoaded";
 
      private var testMc : Class;
 
      public function Main()
      {
	loadFile("swf1.swf");
	this.addEventListener(FILE_LOADED, loadDone);
      }
 
      private function loadDone(event : String) : void
      {
	addChild(loadedSwf);
	// mc auf stage in loadedSwf
	loadedSwf["mc1"].y = 200;
	// objekt von bib auf bühne des swfs werfen
	loadedSwf.stage.addChild(new testMc);
 
      }
 
      public function loadFile(url : String) : void
      {
	_urlReq = new URLRequest(url);
	_loader = new Loader();
	_loader.contentLoaderInfo.addEventListener(Event.INIT, loaded);
	_loader.load(_urlReq);
     }
 
      private function loaded(event : Event) : void
      {
	testMc = _loader.contentLoaderInfo.applicationDomain.getDefinition("mc2") as  Class;
 
	loadedSwf = _loader.content;
 
	dispatchEvent(new Event(FILE_LOADED));
      }
   }
}

Wordpress + flashmenue

Recently I revieved an email asking for a flashmenue i wrote a year ago. Seems like google will never forget :-) Having two more days until I’ve to do real work again mabye I’ll rewrite it . At least I plan it.

Vectors now in Papervision3D

VectorVision is an addon vor papervision3d. Haven’t tested it yet but the demo looks awesome. It has been done by http://www.barcinski-jeanjean.com. It bases on Five3D – an amazing vector 3d engine by Mathieu Badimon

via

physics is cool

Thanks to Jens Franke for that link. It’s so cool! A train is “flying” over a magnetic rail. This is accomplished by an ultracold liquid.

« Older Entries

Newer Entries »