Adobe Donates Flex to Apache Friday, November 18, 2011

In a move that appears to be another step away from its Flash platform, Adobe has submitted the code for its Flash-based Flex framework to the Apache Software Foundation (ASF) to be managed as an independent project.  more here




Toggle between log and linear axis with Flex LineChart Wednesday, November 09, 2011
private var normal:Boolean = true;		
public function init():void{
logScale_btn.addEventListener(MouseEvent.CLICK, toggleLog);
}
public function toggleLog(e:Event):void{
     if(normal){
           var LA:LogAxis = new LogAxis();
           myChart.verticalAxis = LA;
           normal = false;
     }else{
           var NA:LinearAxis = new LinearAxis();
           myChart.verticalAxis = NA;
           normal=true;
     }
}

Port forwarding on a Linksys router Monday, May 12, 2003

I have a little Linksys BEFSR41 firewall/router that I use at home.. and have a few machines behind that. One of the neat features of the Linksys is that it can do port forwarding.  So if a request comes in on say port 80 you can forward that request on to a particular machine behind the firewall.  The limitation I’ve found on this is that it only forwards to one IP address. 

I have a little Linksys BEFSR41 firewall/router that I use at home.. and have a few machines behind that. One of the neat features of the Linksys is that it can do port forwarding.  So if a request comes in on say port 80 you can forward that request on to a particular machine behind the firewall.  The limitation I’ve found on this is that it only forwards to one IP address.  So if I’m running a Windows 2000 server and want to run a bunch of web sites off of that server I have to use the “Host Header” technique to determine which web site the server should serve up for each request (requests for all of the web sites come in on the same IP address). 

Now Win2k server can disntinguish which web server should handle each request three ways:  IP address, Host Header, or Port.  Since the Linksys will only forward one port to one IP address the only solution I’ve been able to find is to have the different domains for the different web servers mapped to unique ports.  So if you send a request to ABCDEF.com your request would be forwarded to 192.168.145.12:80 (port 80)but if you send a request to FEDCBA.com your request would be forwarded to 192.168.145.12:84 (port 84).

Obviously if you have access to your own DNS server you can handle this yourself.. but if you need a DNS service here’s one that is capable of converting that domain name you have around into an IP address AND a port number:
http://www.dynu.com/
http://www.no-ip.com/

The only catch.. you’ll be paying each year for the service.. 

Report from FlashForward 2003 SF Friday, March 28, 2003

I’m out at the Flash Forward 2003 film festival and conference and sat through the keynote address by Kevin Lynch yesterday morning.  He gave a sneak peek of a new product named Central they’ll be releasing “this summer”.

I’m out at the Flash Forward 2003 film festival and conference and sat through the keynote address by Kevin Lynch yesterday morning.  He gave a sneak peek of a new product named Central they’ll be releasing “this summer”.  Macromedia put out a press release on the web about it here and have a new section on their site about it here.

My reaction?  it’s a paradigm shift.  the applications he demonstrated included a financial forcasting app that could be used offline to view complex charts and data.  When the user reconnected to the Net the data was updated.  He also showed a “hot spot” locater being created by Intel that will give you specific locations of wi-fi points.  It can be used either offline, or if you are online the locations listed link to a map so you can see where the addresses are.  Lynch also announced that Macromedia has released a Flash 6 player for the PocketPC2002 and showed it playing back video in a Flash clip.. and the video looked good..  very cool.

Page 142 of 145 pages « First  <  140 141 142 143 144 >  Last »