Mathew Easow Jacob’s Blog–India

a enthusiast…developer…on technology,RIA,flex,web,startup….

Adobe® Flex® 3 SDK. It is updated 3.3.

Posted by easow83 on March 13, 2009

New version of Flex is available on download Flex 3.3

New features include

1.Sandboxed and multi-version applications (new in Flex 3.2)

2.Native support for Adobe® AIR™

3.Persistent framework caching

4.Advanced DataGrid component

5.OLAP DataGrid component

6.Enhanced Constraints layout mechanism

7.Flex Charting package enhancements

8.Flex Component Kit for Flash CS3

9.Flex Ajax Bridge library

Flex moves to open source – Adobe Flex is now open source with source code for the framework, compilers, debugger, and more available under the Mozilla Public License. Learn more at http://opensource.adobe.com/flex.

http://www.adobe.com/support/documentation/en/flex/3/releasenotes_flex3_sdk.html

Posted in Flex 3 | Leave a Comment »

Photoshop CS4 New Features: Interface

Posted by easow83 on October 25, 2008

See the demo

Posted in Adobe Discussions | Tagged: | Leave a Comment »

Getting ready for AIR 1.5 and Flex 3.2

Posted by easow83 on October 19, 2008

With flashplayer10 out in the wild, it’s only a matter of days before the release of both FlexBuilder 3.2 and AIR 1.5 -aka Cosmo (nightly builds are already available). Although we probably shouldn’t expect much besides the FP10 upgrade, it’s still pretty exciting news. I don’t know about you, but I still haven’t compiled any application for this player just yet. I didn’t want to bother tweaking my development environment, and just prefered to wait. Now, I must say I’m getting impatient… :) Here are some thoughts about what we can expect from these Read More

Posted in AIR, Flex 3 | Tagged: , | Leave a Comment »

Adobe Releases CS4, AIR 1.5 Soon to Come

Posted by easow83 on October 19, 2008

Posted in AIR, CS | Tagged: , | Leave a Comment »

Flash player 10 security

Posted by easow83 on October 18, 2008

Hmmmm!! I was reading the flash player 10 security that adobe releases last week.I am very happy with the new text engine they are comming up with,

previous text engine have lots of limitations(like was not able to render HTML conent,as other HTML style related stuffs which i faced during development).But this time i think some them they managed.It was a nice feature if they supports HTML fully.

The other features like RTMP(Real time messaging protocol)….i faced lots of problem with scalling of FMS(flash media server)..this time they fixed some thing like lossy delivery, improving performance of real time communications.

ai! in between anyone have an idea of “SPEEK AUDIO CODECS” …

one more feature i love is Drawing API…i love it..

Posted in Flash Security | Tagged: | Leave a Comment »

Flash player 10 security

Posted by easow83 on October 18, 2008

read more for new flsah player 10 security here

Posted in Flash Security | Tagged: | 1 Comment »

undrgable flex alert

Posted by easow83 on September 14, 2008

Here is the source for undgragable alert ….set  “isPopUp” property “true” to make it dgragable.

<?xml version=”1.0″ encoding=”utf-8″?>
<mx:Application
xmlns:mx=”http://www.adobe.com/2006/mxml
layout=”
vertical”
verticalAlign=”middle”
backgroundColor=”white”>
<mx:Script>
<![CDATA[
import mx.controls.Alert;
private var myAlert:Alert;
private function showAlert():void
{
title =
"Undraggable Alert"
;

myAlert = Alert.show("My undgragable alert!!",title);
myAlert.isPopUp = false;
myAlert.status = Capabilities.version;
}
]]>
</mx:Script>
<mx:Button id=”btn”
label=”Show Alert”
click=”showAlert()”
/>
</mx:Application>

 

 

 

 

 

 

 

 

 

Posted in Flex, Flex 2.0.1, Flex 3 | Leave a Comment »

Flex4 animation: try it out

Posted by easow83 on September 11, 2008

see this demo…some of the animation features thatguys are working on for the next version of Flex

http://graphics-geek.blogspot.com/2008/09/flexy-flexible-as3-animation-library.html

Posted in Flex | Leave a Comment »

Update system time dynamically..

Posted by easow83 on September 11, 2008

Here is the sample code were you can display the system time..its like a digital clock..usually the timer we can use to update the time ,running a an application similar to stop watch ,alarm and lot more ..

<mx:Application xmlns:mx=”http://www.adobe.com/2006/mxml” layout=”absolute” creationComplete=”init()”>
<mx:Script>
 <![CDATA[
 [Bindable]
 private var sec:String;
 
  private function init():void {
   var ti:Timer = new Timer(1000);
   ti.addEventListener(TimerEvent.TIMER,timerFun);
   ti.start();
  }
  private function timerFun(e:TimerEvent):void{
     var dt:Date = new Date();
   sec = dt.getHours() +’:'+dt.getMinutes()+’:'+dt.getSeconds();
   
  }
 ]]>
</mx:Script>
 <mx:HBox>
  <mx:Label id=”lbl” text=”{sec}”/>
 </mx:HBox>
</mx:Application>

Posted in Flex, Flex 2.0.1, Flex 3 | Leave a Comment »

Tips for Usability in a website

Posted by easow83 on September 11, 2008

By Jessica Hupp

So you’ve got a website, but do you know whether it’s usable or not? The answer to this question can make the difference between a successful site and one that’s just ignored. Go through this checklist to make sure your site is up to snuff.

  1. Do you answer your user’s questions?: Users visit a site because they want answers, so it’s vitally important that your site gives them what they are looking for.
  2. Is your navigation clear and simple?: Make sure that your navigation lets the user know where they have been and where they can go in a clear, consistent manner.
  3. Do you provide anchor text?:   ReadMore

Posted in GeneralDiscussion | Leave a Comment »