swf version 9 decompiler is out

March 8, 2008 at 2:17 pm (news)

The Flash 9 player Swf decompiler is released from sothink
for now it supports on swf generated from cs3 and not the flex based swf may be because of the flex framework classes embede in it (just a guess)

http://www.sothink.com/product/flashdecompiler/index.htm

Permalink Leave a Comment

nokia launches SoulOfTheNight for N82

March 8, 2008 at 9:08 am (news)

Permalink Leave a Comment

know network status in Air ::

March 8, 2008 at 5:07 am (Air)

Check this a Usefull tip for Air apps connecting to web

import air.net.SocketMonitor;
import air.net.ServiceMonitor;
import flash.events.StatusEvent;
var socketMonitor:SocketMonitor;
function onInit():void
{
NativeApplication.nativeApplication.addEventListener(Event.NETWORK_CHANGE, onNetworkChange);
socketMonitor = new SocketMonitor(‘192.168.2.56′,80);
socketMonitor.addEventListener(StatusEvent.STATUS, socketStatusChange);
socketMonitor.start();
}
function onNetworkChange(e:Event):void {
trace(e+” Status change. Current status: ” );
}

function socketStatusChange(e:StatusEvent):void {
trace(“Status change. Current status: ” + socketMonitor.available);
}

Permalink Leave a Comment