Our thoughts in real time
« June 2008 | Main | March 2009 »
January 2009
January 26, 2009
Intercepting Hyperlinks in HTML Component of Adobe AIR
var str:String = 'Go to <a href="google.com" id="linkGoogle">google</a>';
html.data = str; // html is of type HTML...
...
var link:Object = html.htmlLoader.window.document.getElementById("linkGoogle");
if (link!=null)
link.addEventListener("click", clickHandler);
...
/**
* Called when the link is clicked.
*/
private function clickHandler(obj:Object):void {
var googleDialog:GoogleDialog = new GoogleDialog();
...
}
Posted at 11:00 AM in AIR/FLex | Permalink | Comments (0) | TrackBack (0)
January 08, 2009
RiotGames Taps Grio for its Adobe AIR and Enterprise Java Expertise
RiotGames, an independent developer and publisher of premium online video games, today selected Grio to help develop its first major title: League of Legends - Clash of Fates. Grio will provide custom software development using Adobe Air and server-side Java technologies.
Posted at 10:07 AM in News | Permalink | Comments (0) | TrackBack (0)