My First HTML5 Example

Posted: January 11, 2011 in HTML5
Tags: ,

My First HTML5 Example

<!DOCTYPE HTML>
<html>
<body>
<video width=”320″ height=”240″ controls=”controls”>
<source src=”http://www.longtailvideo.com/jw/upload/bunny.ogv&#8221; type=”video/ogg” />
Your browser does not support the video tag.
</video>
</body>
</html>

Free E-Book’s Download Links’s
http://lifebooks4all.blogspot.com

Tamil Novelist Sujatha’s Books (En Iniya Endhira,Kadavul Irukirara)
http://lifebooks4all.blogspot.com/2010/01/s.html

Robin Sharma – EBook’s
http://lifebooks4all.blogspot.com/2010/04/megaliving-robin-sharma-pdf-download.html
http://lifebooks4all.blogspot.com/2010/03/top-200-secrets-of-success-robin-sharma.html
http://lifebooks4all.blogspot.com/2010/01/monk-who-sold-his-ferrari-pdf-download.html
http://lifebooks4all.blogspot.com/2010/04/shine-in-world-robin-sharma-pdf.html

Print JSON Object Tree in firebug console with JavaScript

Posted: January 9, 2011 in Uncategorized
Tags: ,

Are you want debug JSON object?
Are you want Traverse all the Nodes of a JSON Object Tree with Simple Java script?

//Debug Josn Array
//Write Key and value in console log
function js_traverse(jsonObject) {
var type = typeof jsonObject;
if (type == “object”) {
for (var key in jsonObject) {
console.log(“key: “, key);
js_traverse(jsonObject[key]);
}
} else {
console.log(jsonObject);
}
}

http://www.adhikaalai.com

http://jackiesekar.blogspot.com

http://tamilmaanam.blogspot.com/

http://ayyanaarv.blogspot.com

http://www.tamil.sg/thiratti/

http://www.thiratti.com/

In the following likns we can download flash player Debugger  for all versions

http://kb.adobe.com/selfservice/viewContent.do?externalId=tn_14266

Archived Flash Players available for testing purposes

http://kb.adobe.com/selfservice/viewContent.do?externalId=tn_14266

Flex 3 SDK Downloads

The following download types for Flex SDK are available:

Free Adobe Flex SDK – An official Adobe product, with released versions found at http://www.adobe.com/go/flex3_sdk

Open Source Flex SDK 

http://opensource.adobe.com/wiki/display/flexsdk/Downloads

For users who want a package that contains only open source code, Adobe offer the Open Source Flex SDK.

Flex 3 Compiler Modules for J2EE Web Application, IIS and Apache

For direct download over proxy

FlexModule_j2ee.zip

Flex3_webtier_for_coldfusion.zip

3.1.0.2710

FlexModule_j2ee.zip
Flex3_webtier_for_coldfusion.zip

3.0.2.2190

FlexModule_j2ee.zip
Flex3_webtier_for_coldfusion.zip

3.0.0.477

FlexModule_apache.exe
FlexModule_apache.zip
FlexModule_iis.exe
FlexModule_j2ee.zip
FlexModule_manual.zip

Flex Tutorial Part II

Posted: June 6, 2008 in Flex
Tags: ,

Flex Builder 2

Flex Builder 2 is the official Adobe IDE for building and debugging Flex applications. Built on the popular Eclipse IDE, Flex Builder has built-in tools for writing, debugging, and building applications using Flex technologies such as MXML and ActionScript. Instead Flex Builder, you can opt to install the free Flex SDK, which includes the compiler and the Flex framework. You can then integrate the Flex framework with a different IDE, or you can use any text editor to edit the MXML and ActionScript files, and you can run the compiler from the command line.

Integrating with Data Services

Data services are an important aspect of most Flex applications. They are the way in which the Flex application can load and send data originating from a data tier such as a database

Flash Player supports any text data, XML, a binary messaging format called AMF, and persistent socket connections, allowing for real-time data pushed from the server to the client.

Integrating with Media Servers

Since Flex applications are deployed using Flash Player, they can leverage the media support for Flash video and audio. Although Flash Player can play back Flash video and MP3 audio as progressive downloads, you can benefit from true streaming media by way of a technology such as Flash Media Server.

Understanding How Flex Applications Work

Flex applications deployed on the Web work differently than HTML-based applications. Every Flex application deployed on the Web utilizes Flash Player as the deployment platform. All Flex applications require at least one MXML file or ActionScript class file, and most Flex applications utilize both MXML and ActionScript files.

A typical Flex application compiles to just one .swf file.You then deploy that one .swf to the server, and when requested, it plays back in Flash Player. That means that unlike HTML-based applications, the source code files remain on the development machine, and you do not deploy them to the production server. Asset files such as MP3s, CSS documents, and PNGs can be embedded within a .swf, or they can be loaded at runtime.

Flex

Flex is a collection of technologies that enables you to rapidly build applications deployed to Flash Player, a runtime environment for delivering sophisticated user interfaces and interactivity. Flex leverages existing, matured technologies and standards such as XML, web services, HTTP, Flash Player, and ActionScript.

Using the Flex framework you can build and compile to the .swf format. The compiled .swf file is an intermediate bytecode format that Flash Player can read. FlashPlayer 9 introduces a new virtual machine called AVM2. AVM2 brings the best of both worlds. Since .swf content is compiled to bytecode that the ActionScript virtual machine can understand, the .swf format is platformindependent.

The Flex framework is synonymous with the Flex class library and is a collection of ActionScript classes used by Flex applications. The Flex framework is written entirely in ActionScript classes, and defines controls, containers, and managers designed to simplify building rich Internet applications.

The categories of Flex Flex class library are

Form controls

Form controls are standard controls such as buttons, text inputs, text areas, lists, radio buttons, checkboxes, and combo boxes. In addition to the standard form controls familiar to most HTML developers, the Flex class library also includes controls such as a rich text editor, a color selector, a date selector, and more.

Menu controls

Flex provides a set of menu controls such as pop-up menus and menu bars.

Media components

One of the hallmarks of Flex applications is rich media support. The Flex class library provides a set of components for working with media such as images, audio, and video.

Layout containers

Flex applications enable highly configurable screen layout. The layout containers to place contents within a screen and determine how they willchange over time or when the user changes the dimensions of Flash Player. With a diverse set of container components you can create sophisticated layouts using grids, forms, boxes, canvases, and more. The elements can place with absolute or relative coordinates so that they can adjust correctly to different dimensions within Flash Player.

Data components and data binding

Flex applications are generally distributed applications that make remote procedure calls to data services residing on servers. The data components consist of connectors that simplify the procedure calls, data models to hold the data that is returned, and data binding functionality to automatically associate form control data with data models.

Formatters and validators

Data that is returned from remote procedure calls often needs to be formatted before getting displayed to the user.

The Flex class library includes a robust set of formatting features (format a date in a variety of string representations, format a number with specific precision, format a number as a phone number string, etc.) to accomplish that task.

Likewise, when sending data to a data service from user input, you’ll frequently need to validate the data beforehand to ensure it is in the correct form. The Flex class library includes a set of validators for just that purpose.

Cursor management

Unlike traditional web applications, Flex applications are stateful, and they don’t have to do a complete screen refresh each time data is sent or requested from a data service. However, since remote procedure calls often incur network and system latency, it’s important to notify the user when the client is waiting on a response from the data service. Cursor management enables Flex applications to change the cursor appearance in order to notify the user of such changes.

State management

A Flex application will frequently require many state changes. For example, standard operations such as registering for a new account or making a purchase usually require several screens. The Flex class library provides classes for managing those changes in state. State management works not only at the macro level for screen changes, but also at the micro level for state changes within individual components.

Flex provides the ability to easily apply transitions so that state changes are animated.

Effects

Flex applications aren’t limited by the constraints of traditional web applications. Since Flex applications run within Flash Player, they can utilize the animation features of Flash. As such, the Flex class library enables an assortment of effects such as fades, zooms, blurs, and glows.

History management

As states change within a Flex application, the history management features of the Flex class library enable you to navigate from state to state using the back and forward buttons of the web browser.

Drag and drop management

The Flex class library simplifies adding drag and drop functionality to components with built-in drag and drop functionality on select components and a manager class that allows you to quickly add drag and drop behaviors to components.

Tool tips

Use this feature of the Flex class library to add tool tips to elements as the user moves the mouse over them.

Style management

The Flex class library enables a great deal of control over how nearly every aspect of a Flex application is styled. You can apply style changes such as color and font settings to most controls and containers directly to the objects or via CSS.

SIP

SIP (Session Initiation Protocol) is the most popular Voice over IP (VoIP) standard. SIP enables two or more people to make phone calls to each other using the Internet to carry the call.

By using the Internet, you gain some distinct advantages over traditional telephone calls or PSTN (Public Switched Telephone Network):

  • Call quality: SIP calls on broadband are digital quality calls across the street or across the globe.
  • Cost: SIP to SIP calls are always free and calls to old PSTN phones are very inexpensive with no taxes or monthly fees.
  • Features: Because SIP calls are part of the Internet you get great features like free voicemail to email and phone numbers from many places in the world no matter where you live.

There are lot of sip phone is available in the internet, but all are application software which we want to install in system. This make lot of trouble ex: port problem as like that.

Using Flex, Java and Red5 Server we can develop Web Sip Application. The main advantage of these phone is no need to install at client side. Simply we can browse application and we can register and make call.

Steps to setup these Application.

1) Install Red5 Server

You can Download from these site RED5 Download Link

2) Download sip.zip file from following link and unzip it, move the sip folder to webapps (where u installed Red5 Server path)

SIP Application for Standalone Red5 Server is http://red5.4ng.net/sip.zip.

You will need to replace version 0.7 red5.jar with the latest from SVN or this http://red5.4ng.net/red5.jar

Check the Red5 server( Start service of Red5 Server if it is not start)

Run red5phone application with http://localhost:5080/sip

These Diagram show working flow of sip phone with web browser.

Sip Phone Using Flex and Java

Orgin from

Click here to known more about SIP

To Get SIP Service Click here – MPINGI

AÁ¿ TÍ LPePŸ… CÁ¿ sTŸ ÍPÖŸ’
p.‘.GÍ.C. TÖP “†RL†‡¥ WÈÂLÖ‹† T¼½V TÖP•


p.‘.GÍ.C. TÖP “†RL†‡¥ SzLŸ WÈÂLÖ‹† T¼½V TÖP• CP• ÙT¼¿·[‰.

p.‘.GÍ.C. TÖP• U†‡V ÚU¥ŒÛX L¥« TÖP† ‡yPUÖ] p.‘.GÍ.C. TÖP† ‡yP†‡Á T·¸eiP TÖP “†RL†‡¥ SzLŸ WÈÂLÖ‹† T¼½V TÖP Th‡ CP•ÙT¼¿·[‰. `ÙRÖPŸ“ ÙLÖ·º• ‡\Û] L¼¿e ÙLÖ·ºR¥’ GÁ\ “†RL†‡¥ CTÖP• LÖQT|f\‰. C‹R “†RL†ÛR BeÍÚTÖŸ| ïÂYŸpyz ‘WÍ ÙY¸›y|·[‰.

Click To know more about Super Start Rajani

For Photos view following links

http://www.rajinifans.com/

Superstar Rajinikanth

http://www.rajinifans.com/moving_stills/