Flash :: Make A Search Box?
May 18, 2007I am trying to make a search box in flash however no matter what I do I cant manage to make it work.[URL]...
View 2 RepliesI am trying to make a search box in flash however no matter what I do I cant manage to make it work.[URL]...
View 2 RepliesI've made a Flash site and I want it to be optimized for search engine.What I need is, for every query on Google for this organization name I want respective Flash page to be displayed.
View 1 RepliesIs there a way to increase traffic for flash web site. Is there an action script to make your flash website "visible" for others. I heard that if I build a flash web site it will be difficult to get customers due to the fact that flash pages usually don't show up in the data bases. Is it right?
so anyhow is there a way to increase traffic or make my flash site "visible' in search engines. do you think building a splash page in html and then redirect them to flash is a good idea?
Flash cs4.
What I need to do is make a search function that will find items within the site it self.
Example...
if I have like 100 folder and all are numbered but I dont want to scroll I want to just type 86 and it should go there.
I want to make search box as in (url...) when any one click on the search then the default text goes away and the type text is seen there, besides this the background of the text field should change when the cursor is on it and get its default color when cursor is not there. [code]...
View 3 RepliesAlright, so within my final swf I need to have a function that searches, but not searches the internet (such as integrating a google or bing search). It will be searching though data that I have already collected. My data is in the form of CSV (comma separated values). I already load in the csv and all that jazz, no problem (using url loader). I put the data into an array. I can conduct the search in a few ways and I was wondering what everyone in the forum thought would be the best way. The data also gets attached as parameters to objects that I put on the stage, if that matters.It must return all things in the array that match the string typed in the search, and not just the first match it finds.
View 4 RepliesLong story short: I want to search a multidimensional array in AS3 for (in this example) the location of 6 strings - all of which are stored in another unrelared array. Long story long: Once I get the locations (in the multidimensional array) of each string, i then know where it's located, and can access other atributes of that object - so if i found the string "box3" is located in element [5] of my multidimensional array, i can now target: multiArray[5][3] to return the 4th item stored (keeping in mind we're starting from 0, so 3 is the 4th position).
I can get this to work once, but I'm trying to set up a for loop based on the length of my basic string storage array - this array holds (in this example) 6 instance name strings - each time my for loop loops, i need to run a search in my multdimensional array for the next consecutive instance name. Then, once I've located all of them (and store the results in a new temporary array) I can dig around in each location for the info I need.
[Code]...
I am again in trouble with my new project where i have to make a keyword search popup.There is a online study material from which i have to search keywords.Study materials are coming from XML file.So I placed a button for search option.when I'll press it there should be a popup window with keyword search fields ( as shown in image in attachment ).What I could do is, I can popup the window with given fields bt i dont know how to search for given keywords.
View 3 RepliesI'm planning to make an interactive map which have a search function. What I want is when user insert a place name in the search textfield then click the search button, when it found, the map images/mc slide then locate the place point, which is a button. How could I do this?
View 2 Replieshow, i repeat, how to make a search text feature like this:url...are they using Flash? i think so, but i'm totally clueless how.
View 6 RepliesIf you search for "happy" you get no results but if you search for "Happy" you get 1 result.Is there a way to make the search ignore capital letters? So if you search for "happy" you get the same result as if you search for "Happy".
View 4 RepliesI have made an web site and I put it on the ftp address on the web. The site is full flash. My question is how can I make it visible on google search, or yahoo? Is there a piece of code that I have to insert on the html file that wraps the flash swf?
View 3 Repliesmake a input text/search button on my site.
I have a bunch of pdf files in a specific location on my site (mysite.com/pdf).
I want to create a search field where the end user inputs text into a field and flash locates and opens the corresponding pdf file (mysite.com/pdf/myfile.pdf).
I've just tried senocular's xml tutorials. [URL] The search query seems case sensitive. How to make it accept upper and lower case characters. Actually i'm trying to make a search by myself by using the same code.
View 6 RepliesI am trying to create a search field in AS3 to search keywords in a dynamic text field of the same flash movie, where the text is loaded from an XML file.
View 1 RepliesI've started a project a while ago, so far it is almost done but there is something that I seem not to be able to do alone... I would like to add a search function which I don't know how to do.It will not be a normal search function so I am going to try to beak it down with an easy example:
Let's say I did a project that is embeded somewhere in a normal html page with a main menu from where you can get to different city maps (e.g. New York, Paris, Berlin). The maps are seperate swfs. On all those maps there are several buttons for historical sites (or whatever) with a mousover function and a link to a page with more information about that specific site (on html).the names of the buttons are always a letter and a number (New York: "N1","N2","N3"...; Paris: "P1","P2","P2"... instance name for P1 is p1_btn)
What I need now is a search field in the main menu where you can search for those buttons. Meaning if I type in "N2" and hit search it will take me to the New York swf and show me button "N2".
I know this might not make much sense like this but the actual version is quite different and more complicated context-wise. Therefore if possible I would like to leave it that way with the main menu, the linked swfs and the buttons.
I've got a catalog of events in XML that is read into my Flash swf. I'm trying to develop a search box that will search through the titles, descriptions, presenters, etc. and return a list of related events.
Does anybody know a prebuilt AS2 system that does this? Or a good tutorial on how to go about this? I have googled, but haven't found much.
Here is my approach so far. When I load in the XML I create an array of the frequency of all the words in the nodes that I'm interested in. I figured it would be useful to do this once instead of each time a search is performed. I store that word index in another array with an index that will take me back to the original node. I was trying to figure out if there was someway to put it all into one index, but then I'm not sure how I'd link back to the original nodes.
When performing a search I look through the array of word indexs and check for the word and return another array of which original nodes contain the word.
If the search term isn't represented I generate all the permutations of the word that have an edit distance of 1 -- i.e. that have a letter changed, added, or deleted in any position. So for example if the search is for "the" the list of 1-edit would be ahe, bhe, ... tae, tbe,... tha, thb...athe, bthe,...tahe,tbhe, ....... he, te, th. If any of those are found it returns the results and puts up a "Did you mean xxxxx?" type of notice.
So far all of this is working rather well.
I'm still working on figuring out what to do if the user puts two words into the search box.
Also haven't figured out what to do with plurals and other "stem" type situations.
I want to make this pretty simple and easy for people to get the results they want.
Its mostly the way google is set up that makes it so easy. I just happened to notice that the url for a google search is always the same except for the search variables at the end. http:[url]....So all I did was to add a textfield to get the variable to put on the end of the URL. (And a button to press)
on(press){
getURL("http://www.google.com/search?q=" + inputText);
}[code].....
P.S. I am going to put this into a thread too in case any one else is interested.
How do i search use the code to search?e.g. From Zoo, To City Hall.The zoo(hv already create the flash animate to city hall)but the problem is how to write a code to point to zoo(action script)!
View 2 RepliesI've got a flash movie that reads in an XML file and has an input text box. When you type something in the input box, I want to search through the XML and return the names of the elements that match whatever is currently in the input box, even if its only partially complete.The input box has an event listener of type Event.CHANGE on it and it runs the following function.
Code: Select allfunction searchWords(e:Event):void {[code].........
i would like to create a searchbox in my website, this could seach in my website or a search in google
View 1 Repliesmake a flash application using SWF Studio and Flash 8. I would like this app. to have search functionalities - whereby a user can search and get results linked to the particular section where the text is.
View 7 Repliesdeleted
View 8 Repliesjust uploaded my first flash website..and I'm having difficulty working out how to get google to 'see' it.
I've registered the site with google and have a very specific phrase in the <title> tag of the html code but the more I investigate, the more complicated it seems..Can anyone point me towards a step by step tutorial or something to get my site in the top 10 results?
I would like to create a search box that searches whatever I put on the stage. For example, I place 10 movie symbols on the stage, I then create an input search text field where I would type in one of the movie names in the box and hit search. If the name matches with the name of either of the symbols on the stage, it would then highlight that movie symbol.
View 1 RepliesI am passing a what will soon be my search variable into php from flash. The issue is when I need to search for something that needs to find a string value in quotes it fails.
Below is the like field variable declared in flash. LikeField = "Model_Profile.Gender = 'm' ";
This is how I am capturing my like field in php. $LikeField=mysql_real_escape_string($_POST['likefield']);
Below is my query "SELECT count(*) AS Total FROM Model_Profile, Models WHERE Model_Profile.Model_ID = Models.Model_ID AND Models.Active = 1 AND {$LikeField}" For some reason it just doesn't seem to like the single quotes on the m, but I need them there to execute. Tracing the flash variables passed it outputs this likefield=Model%5FProfile%2EGender%20%3D%20%27m%27
[Code]...
I am in need of creating a search button for my flash project. I have created a single .fla file and from that I publish a single executable file. Within this project are various amounts of information on diffferent frames. How can i create a search box on my maing frame that when inputted into it will search my project for the text entered?
View 2 RepliesI am trying to create a search bar within flash which will generate links to frames within my flash project based off of given text. I have found a flash project online which does almost exactly what I need, but it only allows for searching a single word rarther than a full term or sentence. It also gives no error message when no word match is found. I am not very good at actionscript or I would be able to midify myself.
stop();
var testText0:String = "this is some test text one";
var testText1:String = "this is some test text two";
[Code]....
I cannot find any download link for the search SDK described in this URL.[url]...
View 1 RepliesIs there is a way to optimize flash for search engines??
View 4 Replies