| By Ian Bogost | Article Rating: |
|
| October 17, 2005 07:15 AM EDT | Reads: |
34,337 |
4. Add the ActionScript functions that handle these events. The code in Listing 3 does some interface work like enabling and disabling components while the search is in progress. Most importantly it iterates through the results returned from Google, formats them using HTML, and displays them in the txtResults TextArea instance (make sure you set txtResults' HTML parameter to true in the Component Inspector to display the HTML properly). If you want to change the data or formatting, consult the Web Services panel to see the output parameter schema returned from the doGoogleSearch operation.
You're ready to publish your application. Publishing is the equivalent of building or compiling in Visual Studio and other IDEs. Select File > Publish or just press Control-Enter to publish using the default settings.
on (click) {
var onGoogleSearch = function()
{
// Show the barber pole and disable search
_root.application.frmSearch.frmLoading.visible = true;
this._parent.txtResults.text = "";
this._parent.lblSearchTime.text = "";
this.enabled = false;
this._parent.txtQuery.enabled = false;
}
var onGoogleSearchResult = function()
{
var res = this._parent.GoogleSearch.results.resultElements; // shorthand
for (var i = 0; i < res.length; i++)
{
var s = "";
s += "<a href=\"" + res[i].URL + "\"><font
size=\"+1\"color=\"#0000FF\"><u>" + res[i].title +
"</u></font></a><br>";
s += res[i].snippet + "<br>";
if (res[i].summary != "") { s += "<font
color=\"#999999\">Description:</font>" + res[i].summary + "<br>"; }
s += "<a href=\"" + res[i].URL + "\"><font color=\"#009900\"><u>" +
res[i].URL + </u></font></a> - " + res[i].cachedSize;
s += "<br><br>";
this._parent.txtResults.text += s;
}
// Hide the barber pole and reenable the search
_root.application.frmSearch.frmLoading.visible = false;
this.enabled = true;
this._parent.txtQuery.enabled = true;
}
// Trigger Data Source Behavior
// Macromedia 2003
this._parent.GoogleSearch.addEventListener("send", onGoogleSearch);
this._parent.GoogleSearch.addEventListener("result", onGoogleSearchResult);
this._parent.GoogleSearch.trigger();
}
Now try out some Google searches!
Benefits of Flash
Let's review the benefits of Flash MX Professional as a visual programming environment:
Macromedia Flash MX Professional is not a replacement for a Windows application IDE like Delphi or Visual Studio. However, visual programmers who want to author rich applications for deployment online, on handhelds, or on devices will discover familiar scenery in this new version of Flash.
References
Google API: www.google.com/apis/
To examine the entire project, download the FLA source file:
Published October 17, 2005 Reads 34,337
Copyright © 2005 SYS-CON Media, Inc. — All Rights Reserved.
Syndicated stories and blog feeds, all rights reserved by the author.
More Stories By Ian Bogost
Ian Bogost is an academic videogame researcher, game designer, and educational publisher. Ian is Assistant Professor of Literature Communication and Culture at Georgia Institute of Technology, where he teaches and researches in undergraduate and graduate programs in digital media. He is also the founder of two companies, Persuasive Games, a game studio that designs, builds, and distributes electronic games for persuasion, instruction, and activism and Open Texture, a publisher of cross-media education and enrichment materials for families. He has over a decade of experience in digital media production for film, music, games, advertising, and eBusiness.
![]() |
darcymonash 08/19/09 12:46:00 AM EDT | |||
A good description on how to perform work and create new things in Flash. Its on the initial stages that I have come across such good expertise on it by going through your article. Its just like the starting of me learning How to draw Yoda and then perfect it. |
||||
![]() |
NicJob 10/17/05 07:29:18 AM EDT | |||
I agree that hierarchical forms take a bit of getting used to for Windows forms designers but you are right that the benefit is striking. |
||||
![]() |
SYS-CON Australia News Desk 10/15/05 08:04:27 PM EDT | |||
Visual Programming in Macromedia Flash and SOAP Web Services. If you are a visual programmer working in environments like Visual Basic, Delphi, REAL basic, or PowerBuilder, you may hesitate to take advantage of the benefits of Flash because of concerns about learning a new, unfamiliar environment. To show how easily you can transfer your existing knowledge to Flash MX Professional, in this article I will explain how you can create a simple web search application that queries the Google web API using SOAP web services: |
||||
![]() |
MXDJ News Desk 10/15/05 05:30:42 PM EDT | |||
MXDJ Special - Visual Programming in Macromedia Flash. If you are a visual programmer working in environments like Visual Basic, Delphi, REAL basic, or PowerBuilder, you may hesitate to take advantage of the benefits of Flash because of concerns about learning a new, unfamiliar environment. To show how easily you can transfer your existing knowledge to Flash MX Professional, in this article I will explain how you can create a simple web search application that queries the Google web API using SOAP web services: |
||||
- Ulitzer.com Named Exclusive "New Media" Sponsor of Cloud Computing Conference & Expo
- Adobe’s Aiming ColdFusion at Multiple Clouds
- Cloud Computing Journal: Adobe to Deliver ColdFusion in the Cloud
- Adobe Unveils LiveCycle Enterprise Suite 2 for Deployment in the Cloud
- Adobe Flex Developer Earns $100K in New York City
- Adobe May Cooperate with Apple to Transplant Flash Player to iPhone
- Ph.D. in Twitter Anyone?
- Eolas Sues the Internet
- Adobe LiveCycle Enterprise Suite 2 for Cloud Computing
- Adobe Betas Target RIAs and Cloud Computing
- Special Report on the Emerging Cloud Computing Trend
- Adobe Cans Another 9% of its Workforce
- My Thoughts on Ulitzer
- Ulitzer.com Named Exclusive "New Media" Sponsor of Cloud Computing Conference & Expo
- Ulitzer Live! New Media Conference & Expo
- Adobe’s Aiming ColdFusion at Multiple Clouds
- Eval JavaScript in a Global Context
- Fig Leaf Software to Exhibit at Government IT Conference & Expo
- Cloud Executives Feature on Cloud Computing Expo Power Panel
- Software Flexibility in the Cloud - Part 4 of 5
- Cloud Computing Journal: Adobe to Deliver ColdFusion in the Cloud
- Is Microsoft as Free as Open Source?
- Adobe Reader Sued
- Adobe Unveils LiveCycle Enterprise Suite 2 for Deployment in the Cloud
- Where Are RIA Technologies Headed in 2008?
- Cover Story: How to Increase the Frame Rates of Your Flash Movies
- AJAX World RIA Conference & Expo Kicks Off in New York City
- Your First Adobe Flex Application with a ColdFusion Backend
- Adobe Flex 2: Advanced DataGrid
- i-Technology Blog: Death-Knell For "Rich Media? Hardly!
- Adobe/Macromedia - Microsoft, Look Out!
- How To Create a Photo Slide Show ...
- Adobe Flex Interface Customization - Themes, Styles, Skins
- Personal Branding Checklist
- Has the Technology Bounceback Begun?
- "Real-World Flex" by Adobe's Christophe Coenraets




































