Flex AdvancedForm component
This component provides advance functionality on flex forms which are under and redo. You can undo and redo by clicking ctrl+z and ctrl+u respectively.
To download the component click here.
To view a sample click here.
This component provides advance functionality on flex forms which are under and redo. You can undo and redo by clicking ctrl+z and ctrl+u respectively.
To download the component click here.
To view a sample click here.
This is one of the best components I have ever seen for flex. The book component act as container. Therefore, you can add stuffs inside book pages which can be flipped to view the content of every page.
I found this website as a link while browsing one of the websites on my favourites. It provides ready made flash components for flash developers which, of course, it’s not free!
Sarge at his blog Pixelfumes Flash Blog published his ActionScript’s class which blurs images by coding. You can see an example here or download the source code here.
For whoever care, 2 days ago was Flex 2 anniversary! It has been 1 year since Flex 2 was released on 28th June 2006.
OnFlex realeases a new video interviews Tinic Uro, a flash player engineering working with flash player team. Click here to watch the video.
Flashdevelop is an IDE to write AS2 and AS3 codes. It is a complete open source development environment. For more information click here and to download it click here.
I have been working on some projects lately for my classes and others for money. One of the project I was doing is a web based program for senior students project on Petruleom Engineering department. The goal of the program is to find how long the oil will last in Kuwait. In addition, the program should find the maximum production and the year of maximum production.
So far it seems easy, but the hard part is coming.. drawing the chart!. Okay, that sounds easy for me at the begining, but after thinking for awhile I realize that will consume time. I start by looking for an open source of a chart program. Searching for over 12hours for charting program on JAVA or ActionScript. All I can find are the ones you have to pay ALOT of money just to make one. Therefore, I decided to make the charting program from scratch.
Adobe Flash’s Actionscript 2 was the language I decided to use for the program. The reason is because I’m going to make the program a web based program which loads on a webpage and works there. Java was my second option because first I’m more experienced on ActionScript than Java, and second because I didn’t have much time to waste on a language I’m less experienced in since final exam was close.
The first kind of graph/chart needed is “scattered xy” with a linear regression line. Arrghh, looking for linear regression equation really exhausted me because I was using the wrong term when searching for it for many hours. I’ll take about it in details in coming posts.
The second kind of the chart is scattered xy with nonlinear regression curve. But I won’t figure out this curve’s equation, I’ll just use the given data to draw the curve. Its almost the same as the first graph idea in coding, just needed to include few more stuffs.
I was surfering the web as normally I do, checking updates on technology and computer related news and blogs and I come across a title “Microsoft to battle Adobe Flash with ‘Silverlight’” .. and I was like ‘what the heck!’. I went to google and searched for Silverlight to gain some informations about it.
It seems that Microsoft is now going for Rich Internet Application and compete with Adobe Flash. That’s a big step for microsoft towards the greed of controling the computer world which is natural since its a corporation and wants more money. I think that’s what will make Adobe and Microsoft compete on developing better Flash and better Silverlight application.
won before
 use Tel:
 easy
I have written this article before like 4 years ago in arabic and I won 2nd place on a compitition of best articles on the forum of http://www.ce4arab.com . the article was about making a phone call using flash on your pocket pc.
The idea was simple, you can make a phone call through internet explorer using Tel: NUMBER. For example, you want to call 33344422, simply you type on the internet explorer of your pocket pc “Tel: 33344422” and it will make the call. Well, I don’t know the command which will hang up the phone, but you can just press cancel when you placing a call. Anyone good enough in ActionScript will be able to do that without any trouble.
 To implement that on flash, first you have to make 10 buttons for number. Each time you click a button you add that number as a string to your variable, lets call that variable callNumber. For example when you click button five you add the character value 5 to your variable callNumber.
on (release) {
_root.callNumber = callNumber + “5”;
}
You do that to all the number buttons. However, be sure to deal with the variable as string not as number which will do addition operation. We cannot use callNumber without defining the variable “callNumber”, we want to make it a timeline variable. To make it a timeline variable, go to the current frame and declare a variable with type String:
var callNumber:String = “”;
We gave it the initial value empty.
On the call button you add the string “Tel: ” and callNumber to your getURL command. Therefore, the call button actionscript will be as the following:
on (release)
{
getURL(“Tel: ” + callNumber);
{
Simple isn’t it? I guess it is, or atleast so far.
We can add a digital LCD to the flash movie, so you can see what you are dialing like real pocket pc phone program. We add a dynamic text field to the stage and give it the var name “callNumber”. Its so simple and easy even for flash newbies.
The way to do it is simple and easy, but the idea that “Tel: number” on PPC internet explorer was unknown by most of you I’m guess. I can’t remember where I learned about the “Tel” command of the internet explorer.