Forward- and back-button support in Silverlight

I noticed in the screencast below, that Silverlight seems to offer a great implicit way of supporting browser’s forward- and back-buttons. The basic idea is to modify the current url by adding or removing tags without forcing a page refresh. Example: In the video below, a basic Twitter client is being developed using Silverlight. The […]


My best practice for MVC with Adobe Flex3

I often read in Flex-tutorials and -books, that it’s difficult to completely implement a project using the concept of the MVC (Model-View-Controller) pattern. It is being said that the fact that MXML files inherit both, application logic (through ActionScript) and the declarative way of building graphic user-interfaces using MXML syntax, makes it almost impossible to […]

RIA-Forum Konferenz

Ich werde sehr wahrscheinlich an der Konferenz “RIA-Forum” am 23. April in Darmstadt teilnehmen. Inhaltlich geht es um verschiedene Themen aus dem RIA-Umfeld, verteilt auf vier Vorträge. Auf der Webseite der Konferenz gibt’s Details zum Zeitplan. Neben ein paar anderen Referenten, wird auch Florian Müller, bekannt für das Buch “Professionelle Rich Client Lösungen mit Flex […]

One reason for using Flash instead of HTML5

I think, I finally found an answer to the question, why one should use Flash instead of HTML5: Binary sockets Newer Flash Player versions allow developers to open binary socket connections, which is not possible using pure HTML5/JavaScript in the browser (HTML5 only supports websockets, which are different). Thus, for example, it would not be […]

Object inspector for JavaScript

Sometimes, one cannot inspect JavaScript-objects using an external debugger, like Firebug. For example, this can happen during development of Firefox addons: Open the JavaScript inspector of Firebug and you will only see the JavaScript errors on the currently displayed website, but not the ones from the addon. Thus, I modified the inspect()-function from Ariel Tapia […]