Flex is more popular and more tutorials and components, i show you some tutorials i found
Getting through Popup Blockers with window.open() in Flex
var newwindow = '';
function popitup(url) {
if (!newwindow.closed && newwindow.location) {
newwindow.close();
newwindow=window.open(url,'name'+Math.random(),'height=600,width=800');
}
else {
newwindow=window.open(url,'name','height=600,width=800');
if (!newwindow.opener) newwindow.opener = self;
}
return false;
}
Read tutorial: Link
Simple Poll System Using Flex, PHP and MySql
Here is a simple polling system I’ve been working on, integrating Flex 2, Flex charting, PHP and MySql
The main concept behind this are:
1) create a mysql database with tables for your poll.
2) write a .php file that connects to, and updates your tables.
3) make an HTTPservice request to your php file to Post data to.
4) use your HTTPService as the dataProvider for your data display components.
Demo: Link
Read tutorial: Link
Some Flex basic tutorials
- Flex 3 Basics – Data Grids with XML: How to get that content into the web application is up to you. We’ve already covered XML basics with labels and buttons, but today we’ll be looking at another way to display content loaded into Flex from an external file.
- XML Basics with Flex 3: This tutorial will teach how to load an external XML file into Flex and then filter the results into labels.
- Flex 3 Basics – Introduction to Data Binding : Chances are you’ll be working with some sort of data in Flex. With data bindings, a developer can link data automatically between sources and targets
- How to Make Charts with Flex 3: In this tutorial we’ll take test scores from XML files and make a dynamic bar graph out of the results in no time at all. You’ll have impressed yourself by the end.
- ActionScript 3 vs Flex 3: Buttons: Be familiar with both methods of coding and you’ll be making some of the best rich internet apps yet. This post outlines the basics of creating button with both ActionScript 3 and MXML in Flex.
Flex Developer’s Toolbox : Free Components, Themes and Tutorials
Huge tutorials about flex, include Flex components, Flex Skins & Themes, Online Flex Apps, Flex Frameworks and Flex Tutorials.

Read tutorial: Link
Random Post:
Similar Post:
Story by admin
Tags: ActionScript, actionscript 3, background, Buttons, charts, Components, cs3, design, external xml, Graphics, Tutorials


