Featured FLA
» Author: Bugra Ozden
» Title: Skatalog v9 - product catalog
» Description: Create your product catalog easly and publish on your website or Create your image gallery, documents list, portfolio. Fully XML Driven
» More by Bugra Ozden
Featured Site
» Posted in the Flash Kit Links section
» Title: Creative DW Image Show PRO
» Description: Creative DW Image Show PRO is a Dreamweaver extension which enables the user to create multimedia presentations. It combines the features of the popular Creative DW Image Show with the ability to add professional text effects to slides (similar to After Effects). The product is very customizable: the user can choose the duration of the transition effects, the slide motion start and end position, zoom and panning type for both images and texts.
Now, behind the search button, we need to make a script that has this in it:
on (release, keyPress "") {
if(count){
count=count;
}else{
count=0;
}
c = 5;
text.newoutput = "";
loadVariablesNum ("http://bender.phpdeveloper.org/flash/flash.php?input="+input, 0, "POST");
if(count){
for (a=0; a<5; a++) {
this = "blah"+a;
that = eval(this);
newa=a+1;
text.newoutput = text.newoutput+newa+" - "+that+"\n\n";
}
number = count;
}else{
gotoAndPlay (4);
}
}
This script will take that search term you put in and send it off to the PHP script waiting on the server. In this
case, the address is "http://bender.phpdeveloper.org/flash/flash.php", and the extra part (="+input) will append the
search term to the end of it and pass it to the script. The for{} loop on this side gets the info back from the script (all of the "blah" variables) and puts them in the window, then puts the number that it got back in the "Results Found:" window.